ControlManage.php 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. <?php
  2. namespace catchAdmin\alarm\model;
  3. use catcher\base\CatchModel as Model;
  4. use catchAdmin\permissions\model\DataRangScopeTrait;
  5. use catchAdmin\system\model\SysDictData;
  6. class ControlManage extends Model
  7. {
  8. use DataRangScopeTrait;
  9. // 表名
  10. public $name = 'control_manage';
  11. // 数据库字段映射
  12. public $field = array(
  13. 'id',
  14. // 布控类型
  15. 'name',
  16. 'type',
  17. 'state',
  18. // 布控开始时间
  19. 'start_time',
  20. // 布控结束时间
  21. 'end_time',
  22. // 布控对象
  23. 'control_obj',
  24. // 区域类型
  25. 'area_type',
  26. 'bw_type',
  27. 'bw_ids',
  28. 'revoke_time',
  29. 'revoke_res',
  30. 'phone',
  31. 'remark',
  32. // 创建人ID
  33. 'creator_id',
  34. // 创建时间
  35. 'created_at',
  36. // 更新时间
  37. 'updated_at',
  38. // 软删除
  39. 'deleted_at',
  40. );
  41. /**
  42. * 列表
  43. */
  44. public function getList()
  45. {
  46. $res=$this->dataRange()
  47. ->catchSearch()
  48. ->append(['type_text','rfid_type_text','state_text','timeRange','stations'])
  49. ->order($this->aliasField('id'), 'desc')
  50. ->paginate();
  51. return $res;
  52. }
  53. //根据姓名搜索
  54. public function searchNameAttr($query, $value, $data)
  55. {
  56. return $query->where('name', 'like', '%' . $value . '%');
  57. }
  58. public function getTimeRangeAttr($value){
  59. $start_time = $this->getData('start_time');
  60. $end_time = $this->getData('end_time');
  61. return [date('Y-m-d H:i:s',$start_time),date('Y-m-d H:i:s',$end_time)];
  62. }
  63. public function getStateTextAttr($value){
  64. $state = $this->getData('state');
  65. return (new SysDictData())->getValueByCode('ControlStateEnum', $state) ?: '';
  66. }
  67. public function getStationsAttr($value){
  68. $obj = $this->getData('control_obj');
  69. return $obj;
  70. }
  71. public function getTypeTextAttr($value){
  72. $type = $this->getData('type');
  73. if($type=='1'){
  74. return '车辆布控';
  75. }elseif($type=='2'){
  76. return '区域布控';
  77. }else{
  78. return '未知';
  79. }
  80. }
  81. public function getStartTimeAttr($value){
  82. return $value?date('Y-m-d H:i:s',$value):'';
  83. }
  84. public function getEndTimeAttr($value){
  85. return $value?date('Y-m-d H:i:s',$value):'';
  86. }
  87. }