Task.php 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <?php
  2. namespace app\admin\model;
  3. use think\Model;
  4. class Task extends Model
  5. {
  6. // 表名
  7. protected $name = 'task';
  8. // 自动写入时间戳字段
  9. protected $autoWriteTimestamp = 'int';
  10. // 定义时间戳字段名
  11. protected $createTime = 'createtime';
  12. protected $updateTime = 'updatetime';
  13. protected $deleteTime = false;
  14. // 追加属性
  15. protected $append = [
  16. 'type_id_text',
  17. 'url_type_text',
  18. 'is_show_text'
  19. ];
  20. public function getTypeIdList()
  21. {
  22. return ['1' => __('Type_id 1'), '2' => __('Type_id 2')];
  23. }
  24. public function getUrlTypeList()
  25. {
  26. return ['1' => __('Url_type 1'), '2' => __('Url_type 2')];
  27. }
  28. public function getIsShowList()
  29. {
  30. return ['1' => __('Is_show 1'), '0' => __('Is_show 0')];
  31. }
  32. public function getTypeIdTextAttr($value, $data)
  33. {
  34. $value = $value ? $value : (isset($data['type_id']) ? $data['type_id'] : '');
  35. $list = $this->getTypeIdList();
  36. return isset($list[$value]) ? $list[$value] : '';
  37. }
  38. public function getUrlTypeTextAttr($value, $data)
  39. {
  40. $value = $value ? $value : (isset($data['url_type']) ? $data['url_type'] : '');
  41. $list = $this->getUrlTypeList();
  42. return isset($list[$value]) ? $list[$value] : '';
  43. }
  44. public function getIsShowTextAttr($value, $data)
  45. {
  46. $value = $value ? $value : (isset($data['is_show']) ? $data['is_show'] : '');
  47. $list = $this->getIsShowList();
  48. return isset($list[$value]) ? $list[$value] : '';
  49. }
  50. }