Ads.php 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <?php
  2. namespace app\admin\model;
  3. use think\Model;
  4. class Ads extends Model
  5. {
  6. // 表名
  7. protected $name = 'ads';
  8. // 自动写入时间戳字段
  9. protected $autoWriteTimestamp = false;
  10. // 定义时间戳字段名
  11. protected $createTime = false;
  12. protected $updateTime = false;
  13. protected $deleteTime = false;
  14. // 追加属性
  15. protected $append = [
  16. 'status_text'
  17. ];
  18. public function getStatusList()
  19. {
  20. return ['0' => __('Status 0'), '1' => __('Status 1')];
  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. /**
  29. * 获取轮播
  30. * @param $cid
  31. * @return bool|\PDOStatement|string|\think\Collection
  32. * @throws \think\db\exception\DataNotFoundException
  33. * @throws \think\db\exception\ModelNotFoundException
  34. * @throws \think\exception\DbException
  35. */
  36. public static function getbanner($cid,$limit=5)
  37. {
  38. return self::where('cid',$cid)->where('category_id',27)->where('status',1)->limit($limit)->order('sort desc,id asc')->select()->toArray();
  39. }
  40. }