ProBasicEquipmentController.java 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. package com.gyee.backconfig.controller;
  2. import com.baomidou.mybatisplus.core.metadata.IPage;
  3. import com.gyee.backconfig.config.CacheContext;
  4. import com.gyee.backconfig.config.R;
  5. import com.gyee.backconfig.model.auto.ProBasicEquipment;
  6. import com.gyee.backconfig.service.auto.IProBasicEquipmentService;
  7. import io.swagger.annotations.Api;
  8. import io.swagger.annotations.ApiOperation;
  9. import org.springframework.beans.factory.annotation.Autowired;
  10. import org.springframework.web.bind.annotation.*;
  11. import javax.annotation.Resource;
  12. import java.util.Arrays;
  13. /**
  14. * <p>
  15. * 风机 前端控制器
  16. * </p>
  17. *
  18. * @author wang
  19. * @since 2022-10-15
  20. */
  21. @RestController
  22. @RequestMapping("//pro-basic-windturbine")
  23. @Api(value = "风机配置" ,tags = "风机配置")
  24. public class ProBasicEquipmentController {
  25. @Resource
  26. private IProBasicEquipmentService proBasicWindturbineService;
  27. @Autowired
  28. private CacheContext cacheContext;
  29. /**
  30. * 查询
  31. * @param id
  32. * @param nemCode
  33. * @param companyId
  34. * @param regionId
  35. * @param windpowerstationId
  36. * @param projectId
  37. * @param lineId
  38. * @param substationId
  39. * @param pageNum
  40. * @param pageSize
  41. * @return
  42. */
  43. @GetMapping(value = "/list")
  44. @ApiOperation(value = "发电设备-列表", notes = "发电设备-列表")
  45. public R findList(@RequestParam(value = "id", required = false) String id,
  46. @RequestParam(value = "nemCode", required = false) String nemCode,
  47. @RequestParam(value = "companyId", required = false) String companyId,
  48. @RequestParam(value = "regionId", required = false) String regionId,
  49. @RequestParam(value = "windpowerstationId", required = false) String windpowerstationId,
  50. @RequestParam(value = "projectId", required = false) String projectId,
  51. @RequestParam(value = "lineId", required = false) String lineId,
  52. @RequestParam(value = "substationId", required = false) String substationId,
  53. @RequestParam(value = "pageNum", required = true) String pageNum,
  54. @RequestParam(value = "pageSize", required = true) String pageSize) {
  55. IPage<ProBasicEquipment> list = proBasicWindturbineService.list(id, nemCode, companyId,regionId,windpowerstationId, projectId, lineId,substationId, pageNum, pageSize);
  56. if (null != list) {
  57. return R.ok().data(list);
  58. } else {
  59. return R.error().data("查询失败!");
  60. }
  61. }
  62. /**
  63. * 添加
  64. *
  65. * @param proBasicWindpowerstation
  66. * @return
  67. */
  68. @PostMapping(value = "/add")
  69. @ApiOperation(value = "风机-新增or修改", notes = "风机-新增or修改")
  70. public R addAll(@RequestBody ProBasicEquipment proBasicWindpowerstation) {
  71. boolean b = proBasicWindturbineService.saveOrUpdate(proBasicWindpowerstation);
  72. if (b) {
  73. cacheContext.initEquipmentList();
  74. return R.ok().data(b);
  75. } else {
  76. return R.error().data("保存失败!");
  77. }
  78. }
  79. /**
  80. * 删除
  81. *
  82. * @param ids
  83. * @return
  84. */
  85. @DeleteMapping(value = "/{ids}")
  86. @ApiOperation(value = "风机-删除", notes = "风机-删除")
  87. public R deleteAll(@PathVariable("ids") String ids) {
  88. String[] strings = ids.split(",");
  89. boolean b = proBasicWindturbineService.removeByIds(Arrays.asList(strings));
  90. if (b) {
  91. cacheContext.initEquipmentList();
  92. return R.ok().data(b);
  93. } else {
  94. return R.error().data("删除失败!");
  95. }
  96. }
  97. }