28 lines
645 B
PHP
28 lines
645 B
PHP
![]() |
<?php
|
||
|
|
||
|
namespace app\common\model;
|
||
|
|
||
|
use app\BaseModel;
|
||
|
use plugin\admin\app\controller\Base;
|
||
|
use support\Model;
|
||
|
|
||
|
/**
|
||
|
* wa_teacher 教师
|
||
|
* @property integer $id (主键)
|
||
|
* @property string $account 账号
|
||
|
* @property string $password 密码
|
||
|
* @property string $slat 密码盐
|
||
|
* @property string $teacher_name 教师姓名
|
||
|
* @property integer $age 年龄
|
||
|
* @property string $openid Openid
|
||
|
* @property string $time_zone_name 时区名称
|
||
|
* @property string $time_zone 时差
|
||
|
* @property mixed $created_at 创建时间
|
||
|
* @property string $updated_at 更新时间
|
||
|
* @property string $deleted_at
|
||
|
*/
|
||
|
class Teacher extends BaseModel
|
||
|
{
|
||
|
|
||
|
}
|