123456789101112131415161718192021222324252627282930 |
- <?php
- namespace app\model;
- use think\Model;
- class AdminMenuModel extends Model
- {
- protected $table = 'fc_admin_menu';
- protected $pk = 'id';
- //是否显示
- public static $show = 1;//显示
- public static $hide = 0;//隐藏
- //是否私有
- public static $is_private = 1;//私有
- public static $not_private = 0;//不是私有
- //状态
- public static $status_normal = 1;//启用
- public static $status_disable = 0;//禁用
- //菜单类型
- public static $type_1 = 1;//菜单
- public static $type_2 = 2;//页面
- }
|