Uidsale.php 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. <?php
  2. namespace app\admin\model;
  3. use think\Model;
  4. class Uidsale extends Model
  5. {
  6. // 表名
  7. protected $name = 'uidsale';
  8. // 自动写入时间戳字段
  9. protected $autoWriteTimestamp = false;
  10. // 定义时间戳字段名
  11. protected $createTime = false;
  12. protected $updateTime = false;
  13. protected $deleteTime = false;
  14. // 追加属性
  15. protected $append = [
  16. 'is_show_text',
  17. 'status_text',
  18. 'saletime_text'
  19. ];
  20. public function getIsShowList()
  21. {
  22. return ['1' => __('Is_show 1'), '0' => __('Is_show 0')];
  23. }
  24. public function getStatusList()
  25. {
  26. return ['1' => __('Status 1'), '0' => __('Status 0')];
  27. }
  28. public function getIsShowTextAttr($value, $data)
  29. {
  30. $value = $value ? $value : (isset($data['is_show']) ? $data['is_show'] : '');
  31. $list = $this->getIsShowList();
  32. return isset($list[$value]) ? $list[$value] : '';
  33. }
  34. public function getStatusTextAttr($value, $data)
  35. {
  36. $value = $value ? $value : (isset($data['status']) ? $data['status'] : '');
  37. $list = $this->getStatusList();
  38. return isset($list[$value]) ? $list[$value] : '';
  39. }
  40. public function getSaletimeTextAttr($value, $data)
  41. {
  42. $value = $value ? $value : (isset($data['saletime']) ? $data['saletime'] : '');
  43. return is_numeric($value) ? date("Y-m-d H:i:s", $value) : $value;
  44. }
  45. protected function setSaletimeAttr($value)
  46. {
  47. return $value === '' ? null : ($value && !is_numeric($value) ? strtotime($value) : $value);
  48. }
  49. public function uidsaletype()
  50. {
  51. return $this->belongsTo('Uidsaletype', 'type_id', 'id', [], 'LEFT')->setEagerlyType(0);
  52. }
  53. public function user()
  54. {
  55. return $this->belongsTo('User', 'user_id', 'id', [], 'LEFT')->setEagerlyType(0);
  56. }
  57. }