SpecificController.java 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453
  1. package com.gyee.runeconomy.controller.specific;/*
  2. @author 谢生杰
  3. @date 2022/11/23-21:39
  4. */
  5. import com.gyee.common.model.StringUtils;
  6. import com.gyee.common.vo.specific.SpecificCenterVo;
  7. import com.gyee.common.vo.specific.SpecificTarget;
  8. import com.gyee.common.vo.specific.SpecificTopVo;
  9. import com.gyee.runeconomy.dto.R;
  10. import com.gyee.runeconomy.dto.ResultMsg;
  11. import com.gyee.runeconomy.service.specific.SpecificService;
  12. import io.swagger.annotations.Api;
  13. import io.swagger.annotations.ApiOperation;
  14. import org.springframework.web.bind.annotation.*;
  15. import javax.annotation.Resource;
  16. import java.text.ParseException;
  17. import java.util.List;
  18. import java.util.Map;
  19. @RestController
  20. @RequestMapping("//specific")
  21. @Api(value = "专题分析", tags = "专题分析")
  22. public class SpecificController {
  23. @Resource
  24. private SpecificService specificService;
  25. /**
  26. * 查询专题分析列表上
  27. *
  28. * @return
  29. */
  30. @GetMapping("/maintoplist")
  31. @ResponseBody
  32. @ApiOperation(value = "综合分析1", notes = "综合分析1")
  33. public R maintoplist(@RequestParam(value = "companys", required = true) String companys,
  34. @RequestParam(value = "type", required = true) String type,
  35. @RequestParam(value = "month", required = true) String month) throws ParseException {
  36. List<SpecificTopVo> resultList = specificService.maintoplist(companys, type, month);
  37. if (StringUtils.isNotNull(resultList)) {
  38. return R.data(ResultMsg.ok(resultList));
  39. } else {
  40. return R.error(ResultMsg.error());
  41. }
  42. }
  43. /**
  44. * 查询专题分析列表下
  45. *
  46. * @return
  47. */
  48. @GetMapping("/maincenterlist")
  49. @ResponseBody
  50. @ApiOperation(value = "综合分析2", notes = "综合分析2")
  51. public R maincenterlist(@RequestParam(value = "companys", required = true) String companys,
  52. @RequestParam(value = "type", required = true) String type,
  53. @RequestParam(value = "month", required = true) String month) throws ParseException {
  54. Map<String, List<SpecificCenterVo>> resultMap = specificService.maincenterlist(companys, type, month);
  55. if (StringUtils.isNotNull(resultMap)) {
  56. return R.data(ResultMsg.ok(resultMap));
  57. } else {
  58. return R.error(ResultMsg.error());
  59. }
  60. }
  61. /**
  62. * 查询风能利用率功能
  63. *
  64. * @return
  65. */
  66. @GetMapping("/fnlylList")
  67. @ResponseBody
  68. @ApiOperation(value = "专题分析-风能利用率", notes = "专题分析-风能利用率")
  69. public R fnlylList(@RequestParam(value = "companys") String companys,
  70. @RequestParam(value = "type") String type,
  71. @RequestParam(value = "year") String year) throws ParseException {
  72. List<SpecificTarget> resultList = specificService.fnlylList(companys, type, year);
  73. if (StringUtils.isNotNull(resultList)) {
  74. return R.data(ResultMsg.ok(resultList));
  75. } else {
  76. return R.error(ResultMsg.error());
  77. }
  78. }
  79. /**
  80. * 查询发电量
  81. *
  82. * @return
  83. */
  84. @GetMapping("/fdlList")
  85. @ResponseBody
  86. @ApiOperation(value = "专题分析-发电量", notes = "专题分析-发电量")
  87. public R fdlList(@RequestParam(value = "companys") String companys,
  88. @RequestParam(value = "type") String type,
  89. @RequestParam(value = "year") String year) throws ParseException {
  90. List<SpecificTarget> resultList = specificService.fdlList(companys, type, year);
  91. if (StringUtils.isNotNull(resultList)) {
  92. return R.data(ResultMsg.ok(resultList));
  93. } else {
  94. return R.error(ResultMsg.error());
  95. }
  96. }
  97. /**
  98. * 查询综合厂用电量
  99. *
  100. * @return
  101. */
  102. @GetMapping("/zhcydlList")
  103. @ResponseBody
  104. @ApiOperation(value = "专题分析-综合厂用电量", notes = "专题分析-综合厂用电量")
  105. public R zhcydlList(@RequestParam(value = "companys") String companys,
  106. @RequestParam(value = "type") String type,
  107. @RequestParam(value = "year") String year) throws ParseException {
  108. List<SpecificTarget> resultList = specificService.zhcydlList(companys, type, year);
  109. if (StringUtils.isNotNull(resultList)) {
  110. return R.data(ResultMsg.ok(resultList));
  111. } else {
  112. return R.error(ResultMsg.error());
  113. }
  114. }
  115. /**
  116. * 查询购网电量
  117. *
  118. * @return
  119. */
  120. @GetMapping("/gwdlList")
  121. @ResponseBody
  122. @ApiOperation(value = "专题分析-购网电量", notes = "专题分析-购网电量")
  123. public R gwdldlList(@RequestParam(value = "companys") String companys,
  124. @RequestParam(value = "type") String type,
  125. @RequestParam(value = "year") String year) throws ParseException {
  126. List<SpecificTarget> resultList = specificService.gwdlList(companys, type, year);
  127. if (StringUtils.isNotNull(resultList)) {
  128. return R.data(ResultMsg.ok(resultList));
  129. } else {
  130. return R.error(ResultMsg.error());
  131. }
  132. }
  133. /**
  134. * 查询上网电量
  135. *
  136. * @return
  137. */
  138. @GetMapping("/swdlList")
  139. @ResponseBody
  140. @ApiOperation(value = "专题分析-购网电量", notes = "专题分析-购网电量")
  141. public R swdldlList(@RequestParam(value = "companys") String companys,
  142. @RequestParam(value = "type") String type,
  143. @RequestParam(value = "year") String year) throws ParseException {
  144. List<SpecificTarget> resultList = specificService.swdlList(companys, type, year);
  145. if (StringUtils.isNotNull(resultList)) {
  146. return R.data(ResultMsg.ok(resultList));
  147. } else {
  148. return R.error(ResultMsg.error());
  149. }
  150. }
  151. /**
  152. * 计算利用小时
  153. *
  154. * @return
  155. */
  156. @GetMapping("/lyxsList")
  157. @ResponseBody
  158. @ApiOperation(value = "专题分析-利用小时", notes = "专题分析-利用小时")
  159. public R lyxsList(@RequestParam(value = "companys") String companys,
  160. @RequestParam(value = "type") String type,
  161. @RequestParam(value = "year") String year) throws ParseException {
  162. List<SpecificTarget> resultList = specificService.lyxsList(companys, type, year);
  163. if (StringUtils.isNotNull(resultList)) {
  164. return R.data(ResultMsg.ok(resultList));
  165. } else {
  166. return R.error(ResultMsg.error());
  167. }
  168. }
  169. /**
  170. * 查询故障损失率
  171. *
  172. * @return
  173. */
  174. @GetMapping("/gzsslList")
  175. @ResponseBody
  176. @ApiOperation(value = "专题分析-故障损失率", notes = "专题分析-故障损失率")
  177. public R gzsslList(@RequestParam(value = "companys") String companys,
  178. @RequestParam(value = "type") String type,
  179. @RequestParam(value = "year") String year) throws ParseException {
  180. List<SpecificTarget> resultList = specificService.gzsslList(companys, type, year);
  181. if (StringUtils.isNotNull(resultList)) {
  182. return R.data(ResultMsg.ok(resultList));
  183. } else {
  184. return R.error(ResultMsg.error());
  185. }
  186. }
  187. /**
  188. * 查询维护损失率
  189. *
  190. * @return
  191. */
  192. @GetMapping("/whsslList")
  193. @ResponseBody
  194. @ApiOperation(value = "专题分析-维护损失率", notes = "专题分析-维护损失率")
  195. public R whsslList(@RequestParam(value = "companys") String companys,
  196. @RequestParam(value = "type") String type,
  197. @RequestParam(value = "year") String year) throws ParseException {
  198. List<SpecificTarget> resultList = specificService.whsslList(companys, type, year);
  199. if (StringUtils.isNotNull(resultList)) {
  200. return R.data(ResultMsg.ok(resultList));
  201. } else {
  202. return R.error(ResultMsg.error());
  203. }
  204. }
  205. /**
  206. * 查询限电损失率
  207. *
  208. * @return
  209. */
  210. @GetMapping("/xdsslList")
  211. @ResponseBody
  212. @ApiOperation(value = "专题分析-限电损失率", notes = "专题分析-限电损失率")
  213. public R xdsslList(@RequestParam(value = "companys", required = true) String companys,
  214. @RequestParam(value = "type", required = true) String type,
  215. @RequestParam(value = "year", required = true) String year) throws ParseException {
  216. List<SpecificTarget> resultList = specificService.xdsslList(companys, type, year);
  217. if (StringUtils.isNotNull(resultList)) {
  218. return R.data(ResultMsg.ok(resultList));
  219. } else {
  220. return R.error(ResultMsg.error());
  221. }
  222. }
  223. /**
  224. * 查询性能损失率
  225. *
  226. * @return
  227. */
  228. @GetMapping("/xnsslList")
  229. @ResponseBody
  230. @ApiOperation(value = "专题分析-性能损失率", notes = "专题分析-性能损失率")
  231. public R xnsslList(@RequestParam(value = "companys", required = true) String companys,
  232. @RequestParam(value = "type", required = true) String type,
  233. @RequestParam(value = "year", required = true) String year) throws ParseException {
  234. List<SpecificTarget> resultList = specificService.xnsslList(companys, type, year);
  235. if (StringUtils.isNotNull(resultList)) {
  236. return R.data(ResultMsg.ok(resultList));
  237. } else {
  238. return R.error(ResultMsg.error());
  239. }
  240. }
  241. /**
  242. * 查询受累损失率
  243. *
  244. * @return
  245. */
  246. @GetMapping("/slsslList")
  247. @ResponseBody
  248. @ApiOperation(value = "专题分析-受累损失率", notes = "专题分析-受累损失率")
  249. public R slsslList(@RequestParam(value = "companys", required = true) String companys,
  250. @RequestParam(value = "type", required = true) String type,
  251. @RequestParam(value = "year", required = true) String year) throws ParseException {
  252. List<SpecificTarget> resultList = specificService.slsslList(companys, type, year);
  253. if (StringUtils.isNotNull(resultList)) {
  254. return R.data(ResultMsg.ok(resultList));
  255. } else {
  256. return R.error(ResultMsg.error());
  257. }
  258. }
  259. /**
  260. * 查询复位及时率
  261. *
  262. * @return
  263. */
  264. @GetMapping("/fwjslList")
  265. @ResponseBody
  266. @ApiOperation(value = "专题分析-复位及时率", notes = "专题分析-复位及时率")
  267. public R fwjslList(@RequestParam(value = "companys", required = true) String companys,
  268. @RequestParam(value = "type", required = true) String type,
  269. @RequestParam(value = "year", required = true) String year) throws ParseException {
  270. List<SpecificTarget> resultList = specificService.fwjslList(companys, type, year);
  271. if (StringUtils.isNotNull(resultList)) {
  272. return R.data(ResultMsg.ok(resultList));
  273. } else {
  274. return R.error(ResultMsg.error());
  275. }
  276. }
  277. /**
  278. * 查询状态转换率
  279. *
  280. * @return
  281. */
  282. @GetMapping("/ztzhlList")
  283. @ResponseBody
  284. @ApiOperation(value = "专题分析-状态转换率", notes = "专题分析-状态转换率")
  285. public R ztzhlList(@RequestParam(value = "companys", required = true) String companys,
  286. @RequestParam(value = "type", required = true) String type,
  287. @RequestParam(value = "year", required = true) String year) throws ParseException {
  288. List<SpecificTarget> resultList = specificService.ztzhlList(companys, type, year);
  289. if (StringUtils.isNotNull(resultList)) {
  290. return R.data(ResultMsg.ok(resultList));
  291. } else {
  292. return R.error(ResultMsg.error());
  293. }
  294. }
  295. /**
  296. * 查询消缺及时率
  297. *
  298. * @return
  299. */
  300. @GetMapping("/xqjslList")
  301. @ResponseBody
  302. @ApiOperation(value = "专题分析-消缺及时率", notes = "专题分析-消缺及时率")
  303. public R xqjslList(@RequestParam(value = "companys", required = true) String companys,
  304. @RequestParam(value = "type", required = true) String type,
  305. @RequestParam(value = "year", required = true) String year) throws ParseException {
  306. List<SpecificTarget> resultList = specificService.xqjslList(companys, type, year);
  307. if (StringUtils.isNotNull(resultList)) {
  308. return R.data(ResultMsg.ok(resultList));
  309. } else {
  310. return R.error(ResultMsg.error());
  311. }
  312. }
  313. /**
  314. * 查询系统效率
  315. *
  316. * @return
  317. */
  318. @GetMapping("/xtxlList")
  319. @ResponseBody
  320. @ApiOperation(value = "专题分析-系统效率", notes = "专题分析-系统效率")
  321. public R xtxlList(@RequestParam(value = "companys", required = true) String companys,
  322. @RequestParam(value = "type", required = true) String type,
  323. @RequestParam(value = "year", required = true) String year) throws ParseException {
  324. List<SpecificTarget> resultList = specificService.xtxlList(companys, type, year);
  325. if (StringUtils.isNotNull(resultList)) {
  326. return R.data(ResultMsg.ok(resultList));
  327. } else {
  328. return R.error(ResultMsg.error());
  329. }
  330. }
  331. /**
  332. * 查询离散率
  333. *
  334. * @return
  335. */
  336. @GetMapping("/lslList")
  337. @ResponseBody
  338. @ApiOperation(value = "专题分析-离散率", notes = "专题分析-离散率")
  339. public R lslList(@RequestParam(value = "companys", required = true) String companys,
  340. @RequestParam(value = "type", required = true) String type,
  341. @RequestParam(value = "year", required = true) String year) throws ParseException {
  342. List<SpecificTarget> resultList = specificService.lslList(companys, type, year);
  343. if (StringUtils.isNotNull(resultList)) {
  344. return R.data(ResultMsg.ok(resultList));
  345. } else {
  346. return R.error(ResultMsg.error());
  347. }
  348. }
  349. /**
  350. * 查询转换效率
  351. *
  352. * @return
  353. */
  354. @GetMapping("/zhxlList")
  355. @ResponseBody
  356. @ApiOperation(value = "专题分析-转换效率", notes = "专题分析-转换效率")
  357. public R zhxlList(@RequestParam(value = "companys", required = true) String companys,
  358. @RequestParam(value = "type", required = true) String type,
  359. @RequestParam(value = "year", required = true) String year) throws ParseException {
  360. List<SpecificTarget> resultList = specificService.zhxlList(companys, type, year);
  361. if (StringUtils.isNotNull(resultList)) {
  362. return R.data(ResultMsg.ok(resultList));
  363. } else {
  364. return R.error(ResultMsg.error());
  365. }
  366. }
  367. /**
  368. * 查询MTBF
  369. *
  370. * @return
  371. */
  372. @GetMapping("/mtbfList")
  373. @ResponseBody
  374. @ApiOperation(value = "专题分析-MTBF分析", notes = "专题分析-MTBF分析")
  375. public R mtbfList(@RequestParam(value = "companys") String companys,
  376. @RequestParam(value = "type") String type,
  377. @RequestParam(value = "year") String year) throws ParseException {
  378. List<SpecificTarget> resultList = specificService.mtbfList(companys, type, year);
  379. if (StringUtils.isNotNull(resultList)) {
  380. return R.data(ResultMsg.ok(resultList));
  381. } else {
  382. return R.error(ResultMsg.error());
  383. }
  384. }
  385. /**
  386. * 查询MTTR
  387. *
  388. * @return
  389. */
  390. @GetMapping("/mttrList")
  391. @ResponseBody
  392. @ApiOperation(value = "专题分析-MTTR分析", notes = "专题分析-MTTR分析")
  393. public R mttrList(@RequestParam(value = "companys", required = true) String companys,
  394. @RequestParam(value = "type", required = true) String type,
  395. @RequestParam(value = "year", required = true) String year) throws ParseException {
  396. List<SpecificTarget> resultList = specificService.mttrList(companys, type, year);
  397. if (StringUtils.isNotNull(resultList)) {
  398. return R.data(ResultMsg.ok(resultList));
  399. } else {
  400. return R.error(ResultMsg.error());
  401. }
  402. }
  403. }