Banner.php 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <?php
  2. namespace app\api\model;
  3. use think\Model;
  4. class Banner extends BaseModel
  5. {
  6. // 表名
  7. protected $name = 'banner';
  8. // 自动写入时间戳字段
  9. protected $autoWriteTimestamp = 'integer';
  10. // 定义时间戳字段名
  11. protected $createTime = 'createtime';
  12. protected $updateTime = 'updatetime';
  13. protected $deleteTime = false;
  14. // 追加属性
  15. protected $append = [
  16. 'status_text'
  17. ];
  18. public function getStatusList()
  19. {
  20. return ['hidden' => __('Hidden'), 'normal' => __('Normal')];
  21. }
  22. public function getStatusTextAttr($value, $data)
  23. {
  24. $value = $value ? $value : (isset($data['status']) ? $data['status'] : '');
  25. $list = $this->getStatusList();
  26. return isset($list[$value]) ? $list[$value] : '';
  27. }
  28. public function fetchBanner($module_type, $size = 5)
  29. {
  30. return $this->where([
  31. "module_type" => $module_type,
  32. "status" => \E_BASE_STATUS::Normal,
  33. ])
  34. ->order("sort", "desc")
  35. ->limit($size)
  36. ->select();
  37. }
  38. }