123456789101112131415161718192021222324 |
- <?php
- namespace app\model;
- use think\Model;
- class ThemeModel extends Model
- {
- protected $table = 'fc_theme';
- protected $pk = 'id';
- //模块类型,1轮播,2产品宣传,3产品展示,4产品优势
- public static $type_banner = 1;
- public static $type_propaganda = 2;
- public static $type_exhibition = 3;
- public static $type_advantage = 4;
- //跳转类型,1无跳转,2内部跳转,3外部跳转
- public static $jump_type_no = 1;
- public static $jump_type_inside = 2;
- public static $jump_type_external = 3;
- }
|