23 lines
433 B
PHP
23 lines
433 B
PHP
<?php
|
|
|
|
namespace app\common\model;
|
|
|
|
use app\BaseModel;
|
|
use support\Model;
|
|
|
|
/**
|
|
* wa_subject 学科
|
|
* @property integer $id (主键)
|
|
* @property string $subject_name 课程名称
|
|
* @property string $english_name 英文名称
|
|
* @property integer $sort 排序
|
|
* @property mixed $created_at 创建时间
|
|
* @property string $updated_at 更新时间
|
|
* @property string $deleted_at
|
|
*/
|
|
class Subject extends BaseModel
|
|
{
|
|
|
|
|
|
}
|