EconomyHomePageController.java 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  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. Map<String, Object> map = economyPointHomePageService.getGeneratingCapacity(companyId);
  107. if (null != map) {
  108. return ResultMsg.ok(map);
  109. } else {
  110. return ResultMsg.error();
  111. }
  112. }
  113. /**
  114. * 首页 右侧模块
  115. */
  116. @GetMapping(value = "/home-right")
  117. @ApiOperation(value = "首页-右侧模块", notes = "首页-右侧模块")
  118. public ResultMsg getHomeRight(@RequestParam(value = "companyId", required = false) String companyId) throws Exception {
  119. Map<String, Object> map = economyPointHomePageService.getHomeRight(companyId);
  120. if (null != map) {
  121. return ResultMsg.ok(map);
  122. } else {
  123. return ResultMsg.error();
  124. }
  125. }
  126. /**
  127. * 首页 右侧模块
  128. */
  129. @GetMapping(value = "/home-middle")
  130. @ApiOperation(value = "首页-中间模块", notes = "首页-中间模块")
  131. public ResultMsg getHomeMiddle(@RequestParam(value = "companyId", required = false) String companyId) throws Exception {
  132. Map<String, Object> map = economyPointHomePageService.getHomeMiddle(companyId);
  133. if (null != map) {
  134. return ResultMsg.ok(map);
  135. } else {
  136. return ResultMsg.error();
  137. }
  138. }
  139. }