WorkRecord.php 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. <?php
  2. /*
  3. * @Descripttion:
  4. * @version: 1.0.0
  5. * @Author: likang
  6. * @Date: 2022-07-12 10:11:04
  7. * @LastEditors: likang
  8. * @LastEditTime: 2022-07-12 10:39:34
  9. */
  10. namespace catchAdmin\worklocation\controller;
  11. use catcher\base\CatchRequest as Request;
  12. use catcher\CatchResponse;
  13. use catcher\base\CatchController;
  14. use catchAdmin\worklocation\model\WorkRecord as workRecordModel;
  15. class WorkRecord extends CatchController
  16. {
  17. protected $workRecordModel;
  18. public function __construct(WorkRecordModel $workRecordModel)
  19. {
  20. $this->workRecordModel = $workRecordModel;
  21. }
  22. /**
  23. * 列表
  24. * @time 2022年07月12日 10:11
  25. * @param Request $request
  26. */
  27. public function index(Request $request): \think\Response
  28. {
  29. return CatchResponse::paginate($this->workRecordModel->getList());
  30. }
  31. /**
  32. * 保存信息
  33. * @time 2022年07月12日 10:11
  34. * @param Request $request
  35. */
  36. public function save(Request $request): \think\Response
  37. {
  38. return CatchResponse::success($this->workRecordModel->storeBy($request->post()));
  39. }
  40. /**
  41. * 读取
  42. * @time 2022年07月12日 10:11
  43. * @param $id
  44. */
  45. public function read($id): \think\Response
  46. {
  47. return CatchResponse::success($this->workRecordModel->findBy($id));
  48. }
  49. /**
  50. * 更新
  51. * @time 2022年07月12日 10:11
  52. * @param Request $request
  53. * @param $id
  54. */
  55. public function update(Request $request, $id): \think\Response
  56. {
  57. return CatchResponse::success($this->workRecordModel->updateBy($id, $request->post()));
  58. }
  59. /**
  60. * 删除
  61. * @time 2022年07月12日 10:11
  62. * @param $id
  63. */
  64. public function delete($id): \think\Response
  65. {
  66. return CatchResponse::success($this->workRecordModel->deleteBy($id));
  67. }
  68. /**
  69. * @Descripttion: 统计
  70. * @name: likang
  71. * @param {Request} $request
  72. * @return {*}
  73. */
  74. public function getTotal(Request $request)
  75. {
  76. $device_model_list = Db::name('device_mold')->where('device_type', 4)->select();
  77. $array = [];
  78. // fan_id 风机 id 风机编号
  79. foreach ($device_model_list as $item) {
  80. $worklist = [];
  81. $where = [];
  82. $ids = Db::name('fan')->where('fan_model', $item["id"])->column('id');
  83. $where[] = ['fan_id', 'in', implode(",", $ids)];
  84. //创建时间 扭矩
  85. //排序 从小到大
  86. $list = $this->workLocationModel->where($where)->order('created_at', 'asc')->select();
  87. foreach ($list as $it) {
  88. $worklist[] = [$it['created_at'] => $it['torque']];
  89. }
  90. $array[] = ["name" => $item['name'], 'data' => $worklist];
  91. }
  92. return CatchResponse::success($array, 10000);
  93. }
  94. }