37 lines
849 B
PHP
37 lines
849 B
PHP
<?php
|
|
|
|
namespace app\model;
|
|
|
|
use support\Model;
|
|
|
|
/**
|
|
* @property integer $id 主键(主键)
|
|
* @property string $created_at 创建时间
|
|
* @property string $updated_at 更新时间
|
|
* @property string $cardid 身份证号码
|
|
* @property integer $phone 手机号码
|
|
* @property string $nickname 昵称
|
|
* @property integer $timecoin 时间币
|
|
* @property integer $gender 性别1男性0女性
|
|
* @property integer $status 1是启用0是禁止
|
|
* @property string $birthday 出生日期
|
|
* @property string $avatar 头像url地址
|
|
* @property string $password 密码
|
|
*/
|
|
class Users extends Model
|
|
{
|
|
/**
|
|
* The table associated with the model.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $table = 'users';
|
|
|
|
/**
|
|
* The primary key associated with the table.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $primaryKey = 'id';
|
|
}
|