From a5954c136b784c9d9b16d2be9af212b03ec47992 Mon Sep 17 00:00:00 2001 From: walkor Date: Tue, 6 Dec 2022 14:41:28 +0800 Subject: [PATCH] save --- src/plugin/admin/app/model/AdminRule.php | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/plugin/admin/app/model/AdminRule.php b/src/plugin/admin/app/model/AdminRule.php index 589ae04..c8645b4 100644 --- a/src/plugin/admin/app/model/AdminRule.php +++ b/src/plugin/admin/app/model/AdminRule.php @@ -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'; + + }