ControlAlarm.php 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. <?php
  2. namespace catchAdmin\alarm\controller;
  3. use catcher\base\CatchRequest as Request;
  4. use catcher\CatchResponse;
  5. use catcher\base\CatchController;
  6. use catchAdmin\alarm\model\ControlAlarm as controlAlarmModel;
  7. use think\facade\Db;
  8. class ControlAlarm extends CatchController
  9. {
  10. protected $controlAlarmModel;
  11. public function __construct(controlAlarmModel $controlAlarmModel)
  12. {
  13. $this->controlAlarmModel = $controlAlarmModel;
  14. }
  15. /**
  16. * 列表
  17. * @time 2022年10月27日 15:33
  18. * @param Request $request
  19. */
  20. public function index(Request $request) : \think\Response
  21. {
  22. return CatchResponse::paginate($this->controlAlarmModel->getList());
  23. }
  24. /**
  25. * 保存信息
  26. * @time 2022年10月27日 15:33
  27. * @param Request $request
  28. */
  29. public function save(Request $request) : \think\Response
  30. {
  31. return CatchResponse::success($this->controlAlarmModel->storeBy($request->post()));
  32. }
  33. /**
  34. * 读取
  35. * @time 2022年10月27日 15:33
  36. * @param $id
  37. */
  38. public function read($id) : \think\Response
  39. {
  40. return CatchResponse::success($this->controlAlarmModel->findBy($id));
  41. }
  42. /**
  43. * 更新
  44. * @time 2022年10月27日 15:33
  45. * @param Request $request
  46. * @param $id
  47. */
  48. public function update(Request $request, $id) : \think\Response
  49. {
  50. return CatchResponse::success($this->controlAlarmModel->updateBy($id, $request->post()));
  51. }
  52. /**
  53. * 删除
  54. * @time 2022年10月27日 15:33
  55. * @param $id
  56. */
  57. public function delete($id) : \think\Response
  58. {
  59. return CatchResponse::success($this->controlAlarmModel->deleteBy($id));
  60. }
  61. /**
  62. * 获取今日告警列
  63. * @param Request $request
  64. */
  65. public function getTodayAlarmlist(Request $request){
  66. $start_time = date('Y-m-d 00:00:00',time()-7*24*3600);
  67. $end_time = date('Y-m-d 23:59:59',time());
  68. $xAxisData=[];
  69. $yAxisData=[];
  70. $list=$this->controlAlarmModel
  71. ->catchSearch()
  72. ->append(['state_text'])
  73. ->whereBetweenTime('created_at', $start_time,$end_time)
  74. ->order('created_at', 'desc')
  75. ->select();
  76. // $list=[
  77. // ['created_at'=>'2023-11-13 08:15:40','plate_no'=>'江北003931','address'=>'HS0577科创北路与布政东路交叉口'],
  78. // ['created_at'=>'2023-11-13 09:25:10','plate_no'=>'江北019216','address'=>'HS0086联丰中路如家酒店门口-FX1'],
  79. // ['created_at'=>'2023-11-13 09:32:13','plate_no'=>'江北028692','address'=>'JB287中官西路广汽丰田对面1'],
  80. // ['created_at'=>'2023-11-13 10:15:34','plate_no'=>'江北023166','address'=>'BL031学院路-学院南路东南-FX1'],
  81. // ['created_at'=>'2023-11-13 11:13:25','plate_no'=>'江北003931','address'=>'HZW兴慈三路——七塘公路'],
  82. // ['created_at'=>'2023-11-13 12:20:06','plate_no'=>'江北025106','address'=>'江北新增12月份JB38姚江花园门口1'],
  83. // ['created_at'=>'2023-11-13 12:21:20','plate_no'=>'江北003931','address'=>'JB新增点002长兴东路与洪都路2'],
  84. // ['created_at'=>'2023-11-13 13:15:12','plate_no'=>'江北003931','address'=>'FH27桥西岸路与岳林路1-FXQ'],
  85. // ];
  86. // return $rows;
  87. return CatchResponse::success($list);
  88. }
  89. /**
  90. * 报警点统计
  91. * @param Request $request
  92. */
  93. public function totalAlarmAddress(Request $request){
  94. $start_time = date('Y-m-d 00:00:00',time()-7*24*3600);
  95. $end_time = date('Y-m-d 23:59:59',time());
  96. $xAxisData=[];
  97. $yAxisData=[];
  98. $list=$this->controlAlarmModel
  99. ->field('address,count(*) as num')
  100. ->group('address')
  101. ->whereBetweenTime('created_at', $start_time,$end_time)
  102. ->order('num desc')
  103. ->select();
  104. foreach($list as $val){
  105. $xAxisData[]=$val['address'];
  106. $yAxisData[]=$val['num'];
  107. }
  108. // $xAxisData=['HS0577科创北路与布政东路交叉口','HS0086联丰中路如家酒店门口','JB287中官西路广汽丰田对面1','BL031学院路-学院南路东南-FX1','HZW兴慈三路——七塘公路','江北新增12月份JB38姚江花园门口1','JB新增点002长兴东路与洪都路2'];
  109. // $yAxisData=['70','65','47','40','35','20','9'];
  110. // return $rows;
  111. return CatchResponse::success(['xAxisData'=>$xAxisData,'yAxisData'=>$yAxisData]);
  112. }
  113. }