Fan.php 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. <?php
  2. namespace catchAdmin\wind\controller;
  3. use catcher\base\CatchRequest as Request;
  4. use catcher\CatchResponse;
  5. use catcher\base\CatchController;
  6. use catchAdmin\wind\model\Fan as fanModel;
  7. use catcher\base\CatchRequest;
  8. use think\facade\Db;
  9. class Fan extends CatchController
  10. {
  11. protected $fanModel;
  12. public function __construct(FanModel $fanModel)
  13. {
  14. $this->fanModel = $fanModel;
  15. }
  16. /**
  17. * 列表
  18. * @time 2022年04月28日 19:53
  19. * @param Request $request
  20. */
  21. public function index(Request $request) : \think\Response
  22. {
  23. return CatchResponse::paginate($this->fanModel->getList());
  24. }
  25. /**
  26. *根据风场的id获取风机的列表
  27. *
  28. * @param Request $request
  29. * @return void
  30. */
  31. public function getList(Request $request)
  32. {
  33. return CatchResponse::success($this->fanModel->getFanList());
  34. }
  35. /**
  36. * 保存信息
  37. * @time 2022年04月28日 19:53
  38. * @param Request $request
  39. */
  40. public function save(Request $request) : \think\Response
  41. {
  42. $data = $request->post();
  43. $save_data=array(
  44. 'wind_id'=>$data['wind_id'],
  45. 'fan_model'=>$data['fan_model'],
  46. 'info'=>$data['info'],
  47. 'creator_id' => $data['creator_id'],
  48. 'created_at' => time(),
  49. );
  50. $add_fans=array();
  51. if($data['mul_number']){
  52. $numArr=explode(',',$data['mul_number']);
  53. foreach($numArr as $value) {
  54. $save_data['number']=$value;
  55. array_push($add_fans, $save_data);
  56. }
  57. }
  58. $rule_data=$data['rule_data'];
  59. if($rule_data['number_length'] && $rule_data['start_number']){
  60. $start=$rule_data['start_number'];
  61. $length=$rule_data['start_number']+$rule_data['number_length'];
  62. for($i=$start; $i<$length;$i++){
  63. if($rule_data['zero_fill']){
  64. $number=str_pad($i,$rule_data['zero_length'],'0',STR_PAD_LEFT );
  65. }else{
  66. $number=$i;
  67. }
  68. $save_data['number']=$rule_data['number_first'].$number.$rule_data['number_last'];
  69. array_push($add_fans, $save_data);
  70. }
  71. }
  72. $count1 = $this->fanModel->limit(100)->insertAll($add_fans);
  73. return CatchResponse::success('添加成功,共' . $count1 . '条');
  74. // return CatchResponse::success($this->fanModel->storeBy($data));
  75. }
  76. /**
  77. * 读取
  78. * @time 2022年04月28日 19:53
  79. * @param $id
  80. */
  81. public function read($id) : \think\Response
  82. {
  83. return CatchResponse::success($this->fanModel->findBy($id));
  84. }
  85. /**
  86. * 更新
  87. * @time 2022年04月28日 19:53
  88. * @param Request $request
  89. * @param $id
  90. */
  91. public function update(Request $request, $id) : \think\Response
  92. { $data = $request->post();
  93. return CatchResponse::success($this->fanModel->updateBy($id, $data));
  94. }
  95. /**
  96. * 删除
  97. * @time 2022年04月28日 19:53
  98. * @param $id
  99. */
  100. public function delete($id) : \think\Response
  101. {
  102. return CatchResponse::success($this->fanModel->deleteBy($id,true));
  103. }
  104. }