ProBasicPowerstationController.java 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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.ProBasicPowerstation;
  6. import com.gyee.backconfig.service.auto.IProBasicPowerstationService;
  7. import io.swagger.annotations.Api;
  8. import io.swagger.annotations.ApiOperation;
  9. import io.swagger.annotations.ApiParam;
  10. import org.springframework.beans.factory.annotation.Autowired;
  11. import org.springframework.web.bind.annotation.*;
  12. import javax.annotation.Resource;
  13. import java.util.Arrays;
  14. /**
  15. * <p>
  16. * 场站表 前端控制器
  17. * </p>
  18. *
  19. * @author wang
  20. * @since 2022-10-15
  21. */
  22. @RestController
  23. @RequestMapping("//pro-basic-powerstation")
  24. @Api(value = "场站配置" ,tags = "场站配置")
  25. public class ProBasicPowerstationController {
  26. @Resource
  27. private IProBasicPowerstationService proBasicWindpowerstationService;
  28. @Autowired
  29. private CacheContext cacheContext;
  30. /**
  31. * 查询
  32. *
  33. * @param id
  34. * @param name
  35. * @param code
  36. * @param companyId
  37. * @param pageNum
  38. * @param pageSize
  39. * @return
  40. */
  41. @GetMapping(value = "/List")
  42. @ApiOperation(value = "场站-列表", notes = "场站-列表")
  43. public R findList(@RequestParam(value = "id", required = false) String id,
  44. @RequestParam(value = "name", required = false) String name,
  45. @RequestParam(value = "code", required = false) String code,
  46. @RequestParam(value = "companyId", required = false) String companyId,
  47. @RequestParam(value = "groupId", required = false) String groupId,
  48. @RequestParam(value = "regionId", required = false) String regionId,
  49. @RequestParam(value = "pageNum", required = true) String pageNum,
  50. @RequestParam(value = "pageSize", required = true) String pageSize) {
  51. IPage<ProBasicPowerstation> list = proBasicWindpowerstationService.getList(id, name, code, groupId,companyId,regionId, pageNum, pageSize);
  52. if (null != list) {
  53. return R.ok().data(list);
  54. } else {
  55. return R.error().data("查询失败!");
  56. }
  57. }
  58. /**
  59. * 插入(批量)
  60. *
  61. * @param proBasicWindpowerstation
  62. * @return
  63. */
  64. @PostMapping(value = "/add")
  65. @ApiOperation(value = "场站-新增or修改", notes = "场站-新增or修改")
  66. public R addAll(@RequestBody ProBasicPowerstation proBasicWindpowerstation) {
  67. boolean b = proBasicWindpowerstationService.saveOrUpdate(proBasicWindpowerstation);
  68. if (b) {
  69. cacheContext.initPowerstationList();
  70. return R.ok().data(b);
  71. } else {
  72. return R.error().data("保存失败!");
  73. }
  74. }
  75. /**
  76. * 批量删除
  77. *
  78. * @param ids
  79. * @return
  80. */
  81. @DeleteMapping(value = "/{ids}")
  82. @ApiOperation(value = "场站-删除", notes = "场站-删除")
  83. public R deleteAll(@PathVariable("ids") String ids) {
  84. String[] strings = ids.split(",");
  85. boolean b = proBasicWindpowerstationService.removeByIds(Arrays.asList(strings));
  86. if (b) {
  87. cacheContext.initPowerstationList();
  88. return R.ok().data(b);
  89. } else {
  90. return R.error().data("删除失败!");
  91. }
  92. }
  93. }