18 lines
310 B
PHP
18 lines
310 B
PHP
|
<?php
|
||
|
namespace app\cms\model;
|
||
|
|
||
|
use think\Model as ThinkModel;
|
||
|
|
||
|
/**
|
||
|
* 菜单模型
|
||
|
* @package app\cms\model
|
||
|
*/
|
||
|
class Menu extends ThinkModel
|
||
|
{
|
||
|
// 设置当前模型对应的完整数据表名称
|
||
|
protected $name = 'cms_menu';
|
||
|
|
||
|
// 自动写入时间戳
|
||
|
protected $autoWriteTimestamp = true;
|
||
|
}
|