SmsSendLog.php 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <?php
  2. namespace catchAdmin\sms\controller;
  3. use catcher\base\CatchRequest as Request;
  4. use catcher\CatchResponse;
  5. use catcher\base\CatchController;
  6. use catchAdmin\sms\model\SmsSendLog as smsSendLogModel;
  7. use catchAdmin\system\model\SysDictData;
  8. class SmsSendLog extends CatchController
  9. {
  10. protected $smsSendLogModel;
  11. public function __construct(smsSendLogModel $smsSendLogModel)
  12. {
  13. $this->smsSendLogModel = $smsSendLogModel;
  14. }
  15. /**
  16. * 列表
  17. * @time 2021年02月03日 11:33
  18. * @param Request $request
  19. */
  20. public function index(Request $request) : \think\Response
  21. {
  22. return CatchResponse::paginate($this->smsSendLogModel->getList());
  23. }
  24. /**
  25. * 保存信息
  26. * @time 2021年02月03日 11:33
  27. * @param Request $request
  28. */
  29. public function save(Request $request) : \think\Response
  30. {
  31. return CatchResponse::success($this->smsSendLogModel->storeBy($request->post()));
  32. }
  33. /**
  34. * 读取
  35. * @time 2021年02月03日 11:33
  36. * @param $id
  37. */
  38. public function read($id) : \think\Response
  39. {
  40. return CatchResponse::success($this->smsSendLogModel->findBy($id));
  41. }
  42. /**
  43. * 更新
  44. * @time 2021年02月03日 11:33
  45. * @param Request $request
  46. * @param $id
  47. */
  48. public function update(Request $request, $id) : \think\Response
  49. {
  50. return CatchResponse::success($this->smsSendLogModel->updateBy($id, $request->post()));
  51. }
  52. /**
  53. * 删除
  54. * @time 2021年02月03日 11:33
  55. * @param $id
  56. */
  57. public function delete($id) : \think\Response
  58. {
  59. return CatchResponse::success($this->smsSendLogModel->deleteBy($id));
  60. }
  61. /**
  62. * 推送类型统计
  63. * @time 2021年02月03日 11:33
  64. */
  65. public function AlarmSendCount() : \think\Response
  66. {
  67. $typeArr=(new SysDictData())->getTypesByCode('AlarmSendType');
  68. $type_list=array();
  69. foreach($typeArr as $val){
  70. $newKey=$val['value'];
  71. $where=[
  72. ['type','=',$val['value']],
  73. ['sent_result','<>',0]
  74. ];
  75. $count=$this->smsSendLogModel->where($where)->count();
  76. $type_list[$newKey]=$count;
  77. //当日
  78. $dayNewKey='day_'.$val['value'];
  79. $where[]=['sent_time','>',strtotime(date('Y-m-d'))];
  80. $count_day=$this->smsSendLogModel->where($where)->count();
  81. $type_list[$dayNewKey]=$count_day;
  82. }
  83. return CatchResponse::success($type_list);
  84. }
  85. }