ElectricityController.java 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. package com.gyee.runeconomy.controller.Electricity;
  2. import com.gyee.runeconomy.dto.AjaxResult;
  3. import com.gyee.runeconomy.init.CacheContext;
  4. import com.gyee.runeconomy.model.auto.ProBasicPowerstation;
  5. import com.gyee.runeconomy.service.Comprehensive.ComprehensiveelectricityService;
  6. import com.gyee.runeconomy.service.Electricity.Electricityservice;
  7. import com.gyee.runeconomy.service.StudyElectricity.StudyElectricityService;
  8. import com.gyee.runeconomy.util.StringUtils;
  9. import io.swagger.annotations.Api;
  10. import io.swagger.annotations.ApiImplicitParam;
  11. import io.swagger.annotations.ApiImplicitParams;
  12. import io.swagger.annotations.ApiOperation;
  13. import org.springframework.stereotype.Controller;
  14. import org.springframework.web.bind.annotation.GetMapping;
  15. import org.springframework.web.bind.annotation.RequestMapping;
  16. import org.springframework.web.bind.annotation.ResponseBody;
  17. import javax.annotation.Resource;
  18. import java.util.LinkedHashMap;
  19. import java.util.List;
  20. import java.util.Map;
  21. import java.util.stream.Collectors;
  22. @Controller
  23. @RequestMapping("/electricity")
  24. @Api(value = "电量统计", tags = "电量统计")
  25. public class ElectricityController {
  26. @Resource
  27. private Electricityservice electricityservice;
  28. @Resource
  29. private StudyElectricityService studyelectricity;
  30. @Resource
  31. private ComprehensiveelectricityService comprehensiveelectricityService;
  32. @GetMapping("/statistics")
  33. @ResponseBody
  34. @ApiOperation(value = "功率预测分析", notes = "功率预测分析")
  35. @ApiImplicitParams({
  36. @ApiImplicitParam(name = "wpId", value = "场站编号", required = true, dataType = "string", paramType = "query"),
  37. @ApiImplicitParam(name = "timetype", value = "场站编号", required = true, dataType = "string", paramType = "query"),
  38. @ApiImplicitParam(name = "year", value = "场站编号", required = true, dataType = "string", paramType = "query")
  39. })
  40. public AjaxResult forecast(String wpId, String timetype, String year) throws Exception {
  41. Map<String, Object> resultList = new LinkedHashMap<>();
  42. if (StringUtils.notEmp(wpId)) {
  43. resultList = electricityservice.planvalue(wpId, timetype, year);
  44. }
  45. if (null != resultList) {
  46. return AjaxResult.successData(200, resultList);
  47. } else {
  48. return AjaxResult.error(500, "操作失败");
  49. }
  50. }
  51. @GetMapping("/coulometric")
  52. @ResponseBody
  53. @ApiOperation(value = "光伏电量分析", notes = "光伏电量分析")
  54. @ApiImplicitParams({
  55. @ApiImplicitParam(name = "wpId", value = "场站编号", required = true, dataType = "string", paramType = "query"),
  56. @ApiImplicitParam(name = "year", value = "场站编号", required = true, dataType = "string", paramType = "query")
  57. })
  58. public AjaxResult coulometricgf(String wpId, String year) throws Exception {
  59. Map<String, Object> resultList = new LinkedHashMap<>();
  60. if (StringUtils.notEmp(wpId)) {
  61. resultList = electricityservice.coulometric(wpId, year);
  62. }
  63. if (null != resultList) {
  64. return AjaxResult.successData(200, resultList);
  65. } else {
  66. return AjaxResult.error(500, "操作失败");
  67. }
  68. }
  69. @GetMapping("/study")
  70. @ResponseBody
  71. @ApiOperation(value = "可研电量分析", notes = "可研电量分析")
  72. @ApiImplicitParams({
  73. @ApiImplicitParam(name = "wpId", value = "场站编号", required = true, dataType = "string", paramType = "query")
  74. })
  75. public AjaxResult studygf(String wpId) throws Exception {
  76. Map<String, Object> resultList = new LinkedHashMap<>();
  77. if (StringUtils.notEmp(wpId)) {
  78. resultList = studyelectricity.studyelectricity(wpId);
  79. }
  80. if (null != resultList) {
  81. return AjaxResult.successData(200, resultList);
  82. } else {
  83. return AjaxResult.error(500, "操作失败");
  84. }
  85. }
  86. @GetMapping("/Comprehensive2")
  87. @ResponseBody
  88. @ApiOperation(value = "综合厂用电量", notes = "综合厂用电量")
  89. @ApiImplicitParams({
  90. @ApiImplicitParam(name = "wpId", value = "场站编号", required = true, dataType = "string", paramType = "query"),
  91. @ApiImplicitParam(name = "year", value = "场站编号", required = true, dataType = "string", paramType = "query")
  92. })
  93. public AjaxResult cydlfx2(String wpId, String year) throws Exception {
  94. Map<String, Object> resultList = new LinkedHashMap<>();
  95. if (StringUtils.notEmp(wpId)) {
  96. resultList = comprehensiveelectricityService.Comprehensive2(wpId, year);
  97. }
  98. if (null != resultList) {
  99. return AjaxResult.successData(200, resultList);
  100. } else {
  101. return AjaxResult.error(500, "操作失败");
  102. }
  103. }
  104. @GetMapping("/Comprehensive")
  105. @ResponseBody
  106. @ApiOperation(value = "综合厂用电量", notes = "综合厂用电量")
  107. @ApiImplicitParams({
  108. @ApiImplicitParam(name = "wpId", value = "场站编号", required = true, dataType = "string", paramType = "query"),
  109. @ApiImplicitParam(name = "year", value = "场站编号", required = true, dataType = "string", paramType = "query")
  110. })
  111. public AjaxResult cydlfx(String wpId, String year) throws Exception {
  112. Map<String, Object> resultList = new LinkedHashMap<>();
  113. if (StringUtils.notEmp(wpId)) {
  114. resultList = comprehensiveelectricityService.Comprehensive(wpId, year);
  115. }
  116. if (null != resultList) {
  117. return AjaxResult.successData(200, resultList);
  118. } else {
  119. return AjaxResult.error(500, "操作失败");
  120. }
  121. }
  122. @GetMapping("/czlist")
  123. @ResponseBody
  124. @ApiOperation(value = "场站列表", notes = "场站列表")
  125. @ApiImplicitParams({
  126. @ApiImplicitParam(name = "wpId", value = "场站编号", required = false, dataType = "string", paramType = "query")
  127. })
  128. public AjaxResult czlb(String wpId) throws Exception {
  129. List<ProBasicPowerstation> list = null;
  130. if (wpId != null && wpId.isEmpty()) {
  131. String[] split = wpId.split(",");
  132. list = CacheContext.wpls.stream().filter(w -> wpId.equals(w.getId())).collect(Collectors.toList());
  133. } else {
  134. list = CacheContext.wpls;
  135. }
  136. if (null != list) {
  137. return AjaxResult.successData(200, list);
  138. } else {
  139. return AjaxResult.error(500, "操作失败");
  140. }
  141. }
  142. }