EconomyHomePageController.java 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. package com.gyee.runeconomy.controller.homepage;
  2. import com.gyee.runeconomy.dto.R;
  3. import com.gyee.runeconomy.dto.ResultMsg;
  4. import com.gyee.runeconomy.dto.response.ProEconPointCodeDTO;
  5. import com.gyee.runeconomy.service.homepage.EconomyPointHomePageService;
  6. import io.swagger.annotations.ApiOperation;
  7. import lombok.extern.log4j.Log4j2;
  8. import org.springframework.beans.factory.annotation.Autowired;
  9. import org.springframework.web.bind.annotation.GetMapping;
  10. import org.springframework.web.bind.annotation.RequestMapping;
  11. import org.springframework.web.bind.annotation.RequestParam;
  12. import org.springframework.web.bind.annotation.RestController;
  13. import java.util.List;
  14. import java.util.Map;
  15. /**
  16. * <p>
  17. * 省公司表 前端控制器
  18. * </p>
  19. *
  20. * @author wang
  21. * @since 2022-11-22
  22. */
  23. @Log4j2
  24. @RestController
  25. @RequestMapping("//economy")
  26. public class EconomyHomePageController {
  27. @Autowired
  28. private EconomyPointHomePageService economyPointHomePageService;
  29. /**
  30. * 经济运行首页指标
  31. *
  32. * @param regionId
  33. * @param companyId
  34. * @param staType
  35. * @param dateType
  36. * @return
  37. */
  38. @GetMapping(value = "/home-page")
  39. @ApiOperation(value = "经济运行-首页", notes = "经济运行-首页")
  40. public R getEconomyPointHomePageInfo(@RequestParam(value = "regionId", required = false) String regionId,
  41. @RequestParam(value = "companyId", required = false) String companyId,
  42. @RequestParam(value = "foreignKeyId", required = true) String foreignKeyId,
  43. @RequestParam(value = "staType", required = true) String staType,
  44. @RequestParam(value = "dateType", required = true) String dateType,
  45. @RequestParam(value = "pointCode", required = false) String pointCode
  46. ) throws Exception {
  47. Map<String, Object> map = economyPointHomePageService.getEconomyPointHomePageInfo(foreignKeyId, regionId, companyId, staType, dateType, pointCode);
  48. if (null != map) {
  49. return R.data(ResultMsg.ok(map));
  50. } else {
  51. return R.error(ResultMsg.error());
  52. }
  53. }
  54. /**
  55. * 经济运行首页指标
  56. */
  57. @GetMapping(value = "/home-page2")
  58. @ApiOperation(value = "经济运行-首页", notes = "经济运行-首页")
  59. public R getEconomyPointHomePageInfo2(@RequestParam(value = "regionId", required = false) String regionId,
  60. @RequestParam(value = "companyId", required = false) String companyId,
  61. @RequestParam(value = "foreignKeyId") String foreignKeyId,
  62. @RequestParam(value = "staType") String staType,
  63. @RequestParam(value = "dateType") String dateType,
  64. @RequestParam(value = "pointCode", required = false) String pointCode
  65. ) throws Exception {
  66. Map<String, Object> map = economyPointHomePageService.getEconomyPointHomePageInfo2(foreignKeyId, regionId, companyId, staType, dateType, pointCode);
  67. if (null != map) {
  68. return R.data(ResultMsg.ok(map));
  69. } else {
  70. return R.error(ResultMsg.error());
  71. }
  72. }
  73. /**
  74. * 首页指标排行
  75. *
  76. * @param foreignKeyId
  77. * @param dateType
  78. * @param pointCode
  79. * @return
  80. * @throws Exception
  81. */
  82. @GetMapping(value = "/point-ranking")
  83. @ApiOperation(value = "经济运行-首页指标排行", notes = "经济运行-首页指标排行")
  84. public R getEconomyPointRanking(
  85. @RequestParam(value = "foreignKeyId", required = true) String foreignKeyId,
  86. @RequestParam(value = "dateType", required = true) String dateType,
  87. @RequestParam(value = "staType", required = true) String staType,
  88. @RequestParam(value = "pointCode", required = true) String pointCode,
  89. @RequestParam(value = "popup", required = false) boolean popup
  90. ) {
  91. List<ProEconPointCodeDTO> dtos = null;
  92. try {
  93. dtos = economyPointHomePageService.getEconomyPointRanking(foreignKeyId, dateType, pointCode, popup, staType);
  94. } catch (Exception e) {
  95. log.error("请求异常", e);
  96. return R.error(ResultMsg.error());
  97. }
  98. return R.data(ResultMsg.ok(dtos));
  99. }
  100. /**
  101. * 首页 发电量
  102. */
  103. // @GetMapping(value = "/generating-capacity")
  104. // @ApiOperation(value = "首页-发电量", notes = "首页-发电量")
  105. // public ResultMsg getHomeGeneratingCapacity(@RequestParam(value = "companyId", required = false) String companyId) throws Exception {
  106. //
  107. // Map<String, Object> map = economyPointHomePageService.getGeneratingCapacity2(companyId);
  108. // if (null != map) {
  109. // return ResultMsg.ok(map);
  110. // } else {
  111. // return ResultMsg.error();
  112. // }
  113. // }
  114. /**
  115. * 首页 发电量
  116. */
  117. @GetMapping(value = "/generating-capacity")
  118. @ApiOperation(value = "首页-发电量", notes = "首页-发电量")
  119. public ResultMsg getHomeGeneratingCapacity2(@RequestParam(value = "companyId", required = false) String companyId) throws Exception {
  120. economyPointHomePageService.calFdl();
  121. Map<String, Object> map = economyPointHomePageService.getGeneratingCapacity(companyId);
  122. if (null != map) {
  123. return ResultMsg.ok(map);
  124. } else {
  125. return ResultMsg.error();
  126. }
  127. }
  128. /**
  129. * 首页 右侧模块
  130. */
  131. // @GetMapping(value = "/home-right")
  132. // @ApiOperation(value = "首页-右侧模块", notes = "首页-右侧模块")
  133. // public ResultMsg getHomeRight(@RequestParam(value = "companyId", required = false) String companyId) throws Exception {
  134. //
  135. // Map<String, Object> map = economyPointHomePageService.getHomeRight(companyId);
  136. // if (null != map) {
  137. // return ResultMsg.ok(map);
  138. // } else {
  139. // return ResultMsg.error();
  140. // }
  141. // }
  142. @GetMapping(value = "/home-right")
  143. @ApiOperation(value = "首页-右侧模块", notes = "首页-右侧模块")
  144. public ResultMsg getHomeRight(@RequestParam(value = "companyId", required = false) String companyId) throws Exception {
  145. economyPointHomePageService.calFdl();
  146. Map<String, Object> map = economyPointHomePageService.getHomeRight(companyId);
  147. if (null != map) {
  148. return ResultMsg.ok(map);
  149. } else {
  150. return ResultMsg.error();
  151. }
  152. }
  153. /**
  154. * 首页 右侧模块
  155. */
  156. @GetMapping(value = "/home-middle")
  157. @ApiOperation(value = "首页-中间模块", notes = "首页-中间模块")
  158. public ResultMsg getHomeMiddle(@RequestParam(value = "companyId", required = false) String companyId) throws Exception {
  159. economyPointHomePageService.calFdl();
  160. Map<String, Object> map = economyPointHomePageService.getHomeMiddle(companyId);
  161. if (null != map) {
  162. return ResultMsg.ok(map);
  163. } else {
  164. return ResultMsg.error();
  165. }
  166. }
  167. }