ThemeModel.php 549 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace app\model;
  3. use think\Model;
  4. class ThemeModel extends Model
  5. {
  6. protected $table = 'fc_theme';
  7. protected $pk = 'id';
  8. //模块类型,1轮播,2产品宣传,3产品展示,4产品优势
  9. public static $type_banner = 1;
  10. public static $type_propaganda = 2;
  11. public static $type_exhibition = 3;
  12. public static $type_advantage = 4;
  13. //跳转类型,1无跳转,2内部跳转,3外部跳转
  14. public static $jump_type_no = 1;
  15. public static $jump_type_inside = 2;
  16. public static $jump_type_external = 3;
  17. }