28 lines
620 B
PHP
28 lines
620 B
PHP
![]() |
<?php
|
||
|
|
||
|
namespace app\common\model;
|
||
|
|
||
|
use app\BaseModel;
|
||
|
use support\Model;
|
||
|
|
||
|
/**
|
||
|
* wa_student_parent 家长
|
||
|
* @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 StudentParent extends BaseModel
|
||
|
{
|
||
|
|
||
|
|
||
|
}
|