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;
- }
|