This commit is contained in:
walkor 2022-12-06 14:41:28 +08:00
parent d14351fe2a
commit a5954c136b

View File

@ -2,16 +2,19 @@
namespace plugin\admin\app\model;
use plugin\admin\app\model\Base;
/**
* @property integer $id 主键(主键)
* @property string $title 标题
* @property string $key key全局唯一
* @property integer $pid 上级id
* @property string $icon 图标
* @property string $key 标识
* @property integer $pid 上级菜单
* @property string $created_at 创建时间
* @property string $updated_at 更新时间
* @property string $href url
* @property integer $type 类型
* @property integer $weight 排序
*/
class AdminRule extends Base
{
@ -30,4 +33,6 @@ class AdminRule extends Base
protected $primaryKey = 'id';
}