Users.php 435 字节
<?php

namespace app\common\model;

use think\Db;
use think\Model;

/**
 * 会员模型
 */
class Users extends Model
{

    // 表名,不含前缀
    protected $name = 'users';
    // 开启自动写入时间戳字段
    protected $autoWriteTimestamp = 'int';
    // 定义时间戳字段名
    protected $createTime = 'createtime';
    protected $updateTime = 'updatetime';
    // 追加属性
    protected $append = [
    ];

}