40 lines
835 B
PHP
40 lines
835 B
PHP
<?php
|
|
|
|
namespace plugin\admin\app\model;
|
|
|
|
use plugin\admin\app\model\Base;
|
|
|
|
/**
|
|
* @property integer $id (主键)
|
|
* @property string $parent_name 学生姓名
|
|
* @property string $account 账号
|
|
* @property string $salt 密码盐
|
|
* @property string $password 密码
|
|
* @property string $nickname 昵称
|
|
* @property string $avatar 头像
|
|
* @property string $mobile 手机号
|
|
* @property string $birthday 生日
|
|
* @property mixed $created_at 创建时间
|
|
* @property string $updated_at 更新时间
|
|
* @property string $deleted_at
|
|
*/
|
|
class Parent extends Base
|
|
{
|
|
/**
|
|
* The table associated with the model.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $table = 'wa_parent';
|
|
|
|
/**
|
|
* The primary key associated with the table.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $primaryKey = 'id';
|
|
|
|
|
|
|
|
}
|