ProBasicPowerstationPointController.java 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. package com.gyee.backconfig.controller;
  2. import com.baomidou.mybatisplus.core.metadata.IPage;
  3. import com.gyee.backconfig.config.R;
  4. import com.gyee.backconfig.model.auto.ProBasicPowerstationPoint;
  5. import com.gyee.backconfig.service.auto.IProBasicPowerstationPointService;
  6. import com.gyee.common.model.StringUtils;
  7. import io.swagger.annotations.Api;
  8. import io.swagger.annotations.ApiOperation;
  9. import org.springframework.web.bind.annotation.*;
  10. import javax.annotation.Resource;
  11. import java.util.List;
  12. /**
  13. * <p>
  14. * 场站测点 前端控制器
  15. * </p>
  16. *
  17. * @author wang
  18. * @since 2022-10-15
  19. */
  20. @RestController
  21. @RequestMapping("//pro-basic-wppoint")
  22. @Api(value = "场站测点配置" ,tags = "场站测点配置")
  23. public class ProBasicPowerstationPointController {
  24. @Resource
  25. private IProBasicPowerstationPointService proBasicWppointService;
  26. /**
  27. * 查询
  28. *
  29. * @param id
  30. * @param nemCode
  31. * @param name
  32. * @param model
  33. * @param uniformCode
  34. * @param pageNum
  35. * @param pageSize
  36. * @return
  37. */
  38. @GetMapping(value = "/list")
  39. @ApiOperation(value = "场站测点-列表", notes = "场站测点-列表")
  40. public R findList(@RequestParam(value = "id", required = false) String id,
  41. @RequestParam(value = "nemCode", required = false) String nemCode,
  42. @RequestParam(value = "name", required = false) String name,
  43. @RequestParam(value = "model", required = false) String model,
  44. @RequestParam(value = "uniformCode", required = false) String uniformCode,
  45. @RequestParam(value = "pageNum", required = true) String pageNum,
  46. @RequestParam(value = "pageSize", required = true) String pageSize) {
  47. IPage<ProBasicPowerstationPoint> list = proBasicWppointService.list(id, nemCode, name, model, uniformCode, pageNum, pageSize);
  48. if (null != list) {
  49. return R.ok().data(list);
  50. } else {
  51. return R.error().data("查询失败!");
  52. }
  53. }
  54. /**
  55. * 根据id查询
  56. *
  57. * @param id
  58. * @return
  59. */
  60. @GetMapping(value = "/{id}")
  61. @ApiOperation(value = "场站测点-更具主键查询", notes = "场站测点-更具主键查询")
  62. public R findOne(@PathVariable("id") String id) {
  63. ProBasicPowerstationPoint pointnew = proBasicWppointService.getOne(id);
  64. if (StringUtils.isNotNull(pointnew)) {
  65. return R.ok().data(pointnew);
  66. } else {
  67. return R.error().data("查询失败!");
  68. }
  69. }
  70. /**
  71. * 插入(批量)
  72. *
  73. * @param pointnew
  74. * @return
  75. */
  76. @PostMapping(value = "/add")
  77. @ApiOperation(value = "场站测点-新增(修改)", notes = "场站测点-新增(修改)")
  78. public R addAll(@RequestBody ProBasicPowerstationPoint pointnew) {
  79. boolean b = proBasicWppointService.addOrUpdate(pointnew);
  80. if (b) {
  81. return R.ok().data(b);
  82. } else {
  83. return R.error().data("保存失败!");
  84. }
  85. }
  86. /**
  87. * 批量删除
  88. *
  89. * @param ids
  90. * @return
  91. */
  92. @DeleteMapping(value = "/{ids}")
  93. @ApiOperation(value = "场站测点-批量删除", notes = "场站测点-批量删除")
  94. public R deleteAll(@PathVariable("ids") String ids) {
  95. boolean b = proBasicWppointService.removeByIds(ids);
  96. if (b) {
  97. return R.ok().data(b);
  98. } else {
  99. return R.error().data("删除失败!");
  100. }
  101. }
  102. /**
  103. * 批量修改
  104. *
  105. * @param list
  106. * @return
  107. */
  108. @PutMapping(value = "/editPointnew")
  109. @ApiOperation(value = "场站测点-批量修改", notes = "场站测点-批量修改")
  110. public R update(@RequestBody List<ProBasicPowerstationPoint> list) {
  111. boolean b = proBasicWppointService.updateBatchById(list);
  112. if (b) {
  113. return R.ok().data(b);
  114. } else {
  115. return R.error().data("更新失败!");
  116. }
  117. }
  118. }