23 lines
469 B
PHP
23 lines
469 B
PHP
<?php
|
|
|
|
namespace app\common\model;
|
|
|
|
use app\BaseModel;
|
|
use support\Model;
|
|
|
|
/**
|
|
* wa_teacher_free_time 教师空闲时间
|
|
* @property integer $id (主键)
|
|
* @property integer $teacher_id 教师
|
|
* @property string $date 日期
|
|
* @property string $time 时间
|
|
* @property string $hour 课时
|
|
* @property mixed $created_at 创建时间
|
|
* @property string $updated_at 更新时间
|
|
* @property string $deleted_at
|
|
*/
|
|
class TeacherFreeTime extends BaseModel
|
|
{
|
|
|
|
}
|