ProEconAlarmPlanController.java 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245
  1. package com.gyee.alarm.controller;
  2. import com.baomidou.mybatisplus.core.metadata.IPage;
  3. import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
  4. import com.gyee.alarm.model.auto.ProEconAlarmPlan;
  5. import com.gyee.alarm.model.auto.ProEconAlarmPlan;
  6. import com.gyee.alarm.model.vo.AjaxResult;
  7. import com.gyee.alarm.model.vo.AjaxStatus;
  8. import com.gyee.alarm.model.vo.AlarmCustomType;
  9. import com.gyee.alarm.service.auto.IProEconAlarmPlanService;
  10. import com.gyee.alarm.util.ExcelUtils;
  11. import com.gyee.alarm.util.StringUtils;
  12. import com.gyee.common.util.DateUtils;
  13. import io.swagger.annotations.ApiImplicitParam;
  14. import io.swagger.annotations.ApiImplicitParams;
  15. import io.swagger.annotations.ApiOperation;
  16. import org.springframework.web.bind.annotation.*;
  17. import org.springframework.web.multipart.MultipartFile;
  18. import javax.annotation.Resource;
  19. import javax.servlet.http.HttpServletRequest;
  20. import javax.servlet.http.HttpServletResponse;
  21. import java.io.IOException;
  22. import java.util.Arrays;
  23. import java.util.Calendar;
  24. import java.util.Date;
  25. import java.util.List;
  26. /**
  27. * <p>
  28. * 前端控制器
  29. * </p>
  30. *
  31. * @author shilin
  32. * @since 2024-10-28
  33. */
  34. @RestController
  35. @RequestMapping("//alarmplan")
  36. public class ProEconAlarmPlanController {
  37. @Resource
  38. private IProEconAlarmPlanService proEconAlarmPlanService;
  39. //@UserLoginToken
  40. @PostMapping(value = "/save")
  41. @ResponseBody
  42. @ApiOperation(value = "进行修改和保存", notes = "进行修改和保存")
  43. public AjaxResult saveAndUpdateAlertrule(HttpServletRequest request, @RequestBody ProEconAlarmPlan alarmRule) throws Exception {
  44. if (StringUtils.notEmp(alarmRule)) {
  45. int result = proEconAlarmPlanService.saveAndUpdateAlertrule(alarmRule);
  46. return AjaxResult.successData(AjaxStatus.success.code, result);
  47. } else {
  48. return AjaxResult.successData(AjaxStatus.loginexpire.code, "error");
  49. }
  50. }
  51. @DeleteMapping(value = "/delete")
  52. @ApiOperation(value = "删除", notes = "删除")
  53. @ApiImplicitParams({
  54. @ApiImplicitParam(name = "id", value = "自定义报警主键", required = true, dataType = "string", paramType = "query")})
  55. public AjaxResult deleteAlertrule(String id) {
  56. boolean i =false;
  57. if(StringUtils.notEmp(id))
  58. {
  59. List<String> idls= Arrays.asList(id.split(",")); ;
  60. i = proEconAlarmPlanService.deleteAlertrule(idls);
  61. }
  62. if (StringUtils.notEmp(i)) {
  63. return AjaxResult.successData(AjaxStatus.success.code, i);
  64. } else {
  65. return AjaxResult.successData(AjaxStatus.error.code, "error");
  66. }
  67. }
  68. //@UserLoginToken
  69. @GetMapping(value = "/page")
  70. @ApiOperation(value = "分页查询", notes = "分页查询")
  71. @ApiImplicitParams({
  72. @ApiImplicitParam(name = "pageNum", value = "页号", required = true, dataType = "Integer", paramType = "query"),
  73. @ApiImplicitParam(name = "pageSize", value = "每页显示多少行", required = true, dataType = "Integer", paramType = "query"),
  74. @ApiImplicitParam(name = "pageSize", value = "每页显示多少行", required = true, dataType = "Integer", paramType = "query"),
  75. @ApiImplicitParam(name = "types", value = "名称", required = false, dataType = "string", paramType = "query"),
  76. @ApiImplicitParam(name = "name", value = "名称", required = false, dataType = "string", paramType = "query")
  77. })
  78. public AjaxResult queryByPage(HttpServletRequest request,
  79. @RequestParam(value = "pageNum") Integer pageNum,
  80. @RequestParam(value = "pageSize") Integer pageSize,
  81. @RequestParam(value = "types", required = false) String types,
  82. @RequestParam(value = "name", required = false) String name
  83. ) {
  84. Page<ProEconAlarmPlan> page = new Page(pageNum, pageSize);
  85. IPage<ProEconAlarmPlan> pageResult = proEconAlarmPlanService.pageQueryAll(page, name,types);
  86. if (StringUtils.notEmp(pageResult)) {
  87. return AjaxResult.successData(AjaxStatus.success.code, pageResult);
  88. } else {
  89. return AjaxResult.successData(AjaxStatus.error.code, "error");
  90. }
  91. }
  92. //@UserLoginToken
  93. @PostMapping(value = "/save-batch")
  94. @ResponseBody
  95. @ApiOperation(value = "批量保存", notes = "分页查询")
  96. public AjaxResult saveAlertruleBatch(HttpServletRequest request, @RequestBody List<ProEconAlarmPlan> lst) throws Exception {
  97. boolean allCheck = true;
  98. for (ProEconAlarmPlan alertrule : lst) {
  99. String msg = "";
  100. boolean result = true;
  101. if (StringUtils.isBlank(alertrule.getName())) {
  102. msg = "名称不能为空";
  103. result = false;
  104. } else if (StringUtils.isBlank(alertrule.getSpareParts())) {
  105. msg = "备件不能为空";
  106. result = false;
  107. } else if (StringUtils.isBlank(alertrule.getTroubleMethod())) {
  108. msg = "排查步骤不能为空";
  109. result = false;
  110. } else if (StringUtils.empty(alertrule.getProcessMethod())) {
  111. msg = "检修方案不能为空";
  112. result = false;
  113. } else if (StringUtils.isBlank(alertrule.getTools())) {
  114. msg = "所需工具不能为空";
  115. result = false;
  116. }
  117. if (result != true) {
  118. allCheck = false;
  119. if (!result) {
  120. return AjaxResult.successData(AjaxStatus.error.code, msg);
  121. }
  122. }
  123. }
  124. if (allCheck) {
  125. for (ProEconAlarmPlan alertRule : lst) {
  126. int result = proEconAlarmPlanService.saveAndUpdateAlertrule(alertRule);
  127. if (result <= 0) {
  128. return AjaxResult.successData(AjaxStatus.error.code, alertRule.getName() + ":" + "操作数据库失败");
  129. }
  130. }
  131. return AjaxResult.successData(AjaxStatus.success.code, "ok");
  132. } else {
  133. return AjaxResult.successData(AjaxStatus.error.code, "error");
  134. }
  135. }
  136. @GetMapping("/importtemplate")
  137. @ApiOperation(value = "获得导入模板")
  138. public void importTemplate(HttpServletResponse response) throws IOException {
  139. // 手动创建导出 demo
  140. List<ProEconAlarmPlan> list = Arrays.asList(
  141. ProEconAlarmPlan.builder().id("1").types("类型1").troubleMethod("排查步骤1")
  142. .processMethod("检修方案").tools("所需工具1").spareParts("备品备件1").name("名字1")
  143. .build(),
  144. ProEconAlarmPlan.builder().id("2").types("类型2").troubleMethod("排查步骤2")
  145. .processMethod("检修方案2").tools("所需工具2").spareParts("备品备件2").name("名字2")
  146. .build()
  147. );
  148. // 输出
  149. ExcelUtils.write(response, "导入模板.xls", "导入模板", ProEconAlarmPlan.class, list);
  150. }
  151. @PostMapping("/import")
  152. @ApiOperation(value = "导入", notes = "导入")
  153. public AjaxResult importExcel(@RequestParam("file") MultipartFile file) throws Exception {
  154. List<ProEconAlarmPlan> list = ExcelUtils.read(file, ProEconAlarmPlan.class);
  155. if (com.gyee.common.model.StringUtils.notEmp(list) && !list.isEmpty()) {
  156. boolean allCheck = true;
  157. for (ProEconAlarmPlan alertrule : list) {
  158. String msg = "";
  159. boolean result = true;
  160. if (StringUtils.isBlank(alertrule.getTypes())) {
  161. msg = "类型不能为空";
  162. result = false;
  163. } else if (StringUtils.isBlank(alertrule.getTroubleMethod())) {
  164. msg = "排查方法不能为空";
  165. result = false;
  166. } else if (StringUtils.isBlank(alertrule.getProcessMethod())) {
  167. msg = "处理方法不能为空";
  168. result = false;
  169. } else if (StringUtils.empty(alertrule.getTools())) {
  170. msg = "处理工具不能为空";
  171. result = false;
  172. }
  173. if (result != true) {
  174. allCheck = false;
  175. if (!result) {
  176. return AjaxResult.successData(AjaxStatus.error.code, msg);
  177. }
  178. }
  179. if (allCheck) {
  180. proEconAlarmPlanService.saveAndUpdateAlertrule(alertrule);
  181. }
  182. }
  183. }
  184. if (com.gyee.common.model.StringUtils.isNotNull(list)) {
  185. return AjaxResult.successData(AjaxStatus.success.code, list);
  186. } else {
  187. return AjaxResult.successData(AjaxStatus.error.code, "error");
  188. }
  189. }
  190. }