123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453 |
- package com.gyee.runeconomy.controller.specific;/*
- @author 谢生杰
- @date 2022/11/23-21:39
- */
- import com.gyee.common.model.StringUtils;
- import com.gyee.common.vo.specific.SpecificCenterVo;
- import com.gyee.common.vo.specific.SpecificTarget;
- import com.gyee.common.vo.specific.SpecificTopVo;
- import com.gyee.runeconomy.dto.R;
- import com.gyee.runeconomy.dto.ResultMsg;
- import com.gyee.runeconomy.service.specific.SpecificService;
- import io.swagger.annotations.Api;
- import io.swagger.annotations.ApiOperation;
- import org.springframework.web.bind.annotation.*;
- import javax.annotation.Resource;
- import java.text.ParseException;
- import java.util.List;
- import java.util.Map;
- @RestController
- @RequestMapping("//specific")
- @Api(value = "专题分析", tags = "专题分析")
- public class SpecificController {
- @Resource
- private SpecificService specificService;
- /**
- * 查询专题分析列表上
- *
- * @return
- */
- @GetMapping("/maintoplist")
- @ResponseBody
- @ApiOperation(value = "综合分析1", notes = "综合分析1")
- public R maintoplist(@RequestParam(value = "companys", required = true) String companys,
- @RequestParam(value = "type", required = true) String type,
- @RequestParam(value = "month", required = true) String month) throws ParseException {
- List<SpecificTopVo> resultList = specificService.maintoplist(companys, type, month);
- if (StringUtils.isNotNull(resultList)) {
- return R.data(ResultMsg.ok(resultList));
- } else {
- return R.error(ResultMsg.error());
- }
- }
- /**
- * 查询专题分析列表下
- *
- * @return
- */
- @GetMapping("/maincenterlist")
- @ResponseBody
- @ApiOperation(value = "综合分析2", notes = "综合分析2")
- public R maincenterlist(@RequestParam(value = "companys", required = true) String companys,
- @RequestParam(value = "type", required = true) String type,
- @RequestParam(value = "month", required = true) String month) throws ParseException {
- Map<String, List<SpecificCenterVo>> resultMap = specificService.maincenterlist(companys, type, month);
- if (StringUtils.isNotNull(resultMap)) {
- return R.data(ResultMsg.ok(resultMap));
- } else {
- return R.error(ResultMsg.error());
- }
- }
- /**
- * 查询风能利用率功能
- *
- * @return
- */
- @GetMapping("/fnlylList")
- @ResponseBody
- @ApiOperation(value = "专题分析-风能利用率", notes = "专题分析-风能利用率")
- public R fnlylList(@RequestParam(value = "companys") String companys,
- @RequestParam(value = "type") String type,
- @RequestParam(value = "year") String year) throws ParseException {
- List<SpecificTarget> resultList = specificService.fnlylList(companys, type, year);
- if (StringUtils.isNotNull(resultList)) {
- return R.data(ResultMsg.ok(resultList));
- } else {
- return R.error(ResultMsg.error());
- }
- }
- /**
- * 查询发电量
- *
- * @return
- */
- @GetMapping("/fdlList")
- @ResponseBody
- @ApiOperation(value = "专题分析-发电量", notes = "专题分析-发电量")
- public R fdlList(@RequestParam(value = "companys") String companys,
- @RequestParam(value = "type") String type,
- @RequestParam(value = "year") String year) throws ParseException {
- List<SpecificTarget> resultList = specificService.fdlList(companys, type, year);
- if (StringUtils.isNotNull(resultList)) {
- return R.data(ResultMsg.ok(resultList));
- } else {
- return R.error(ResultMsg.error());
- }
- }
- /**
- * 查询综合厂用电量
- *
- * @return
- */
- @GetMapping("/zhcydlList")
- @ResponseBody
- @ApiOperation(value = "专题分析-综合厂用电量", notes = "专题分析-综合厂用电量")
- public R zhcydlList(@RequestParam(value = "companys") String companys,
- @RequestParam(value = "type") String type,
- @RequestParam(value = "year") String year) throws ParseException {
- List<SpecificTarget> resultList = specificService.zhcydlList(companys, type, year);
- if (StringUtils.isNotNull(resultList)) {
- return R.data(ResultMsg.ok(resultList));
- } else {
- return R.error(ResultMsg.error());
- }
- }
- /**
- * 查询购网电量
- *
- * @return
- */
- @GetMapping("/gwdlList")
- @ResponseBody
- @ApiOperation(value = "专题分析-购网电量", notes = "专题分析-购网电量")
- public R gwdldlList(@RequestParam(value = "companys") String companys,
- @RequestParam(value = "type") String type,
- @RequestParam(value = "year") String year) throws ParseException {
- List<SpecificTarget> resultList = specificService.gwdlList(companys, type, year);
- if (StringUtils.isNotNull(resultList)) {
- return R.data(ResultMsg.ok(resultList));
- } else {
- return R.error(ResultMsg.error());
- }
- }
- /**
- * 查询上网电量
- *
- * @return
- */
- @GetMapping("/swdlList")
- @ResponseBody
- @ApiOperation(value = "专题分析-购网电量", notes = "专题分析-购网电量")
- public R swdldlList(@RequestParam(value = "companys") String companys,
- @RequestParam(value = "type") String type,
- @RequestParam(value = "year") String year) throws ParseException {
- List<SpecificTarget> resultList = specificService.swdlList(companys, type, year);
- if (StringUtils.isNotNull(resultList)) {
- return R.data(ResultMsg.ok(resultList));
- } else {
- return R.error(ResultMsg.error());
- }
- }
- /**
- * 计算利用小时
- *
- * @return
- */
- @GetMapping("/lyxsList")
- @ResponseBody
- @ApiOperation(value = "专题分析-利用小时", notes = "专题分析-利用小时")
- public R lyxsList(@RequestParam(value = "companys") String companys,
- @RequestParam(value = "type") String type,
- @RequestParam(value = "year") String year) throws ParseException {
- List<SpecificTarget> resultList = specificService.lyxsList(companys, type, year);
- if (StringUtils.isNotNull(resultList)) {
- return R.data(ResultMsg.ok(resultList));
- } else {
- return R.error(ResultMsg.error());
- }
- }
- /**
- * 查询故障损失率
- *
- * @return
- */
- @GetMapping("/gzsslList")
- @ResponseBody
- @ApiOperation(value = "专题分析-故障损失率", notes = "专题分析-故障损失率")
- public R gzsslList(@RequestParam(value = "companys") String companys,
- @RequestParam(value = "type") String type,
- @RequestParam(value = "year") String year) throws ParseException {
- List<SpecificTarget> resultList = specificService.gzsslList(companys, type, year);
- if (StringUtils.isNotNull(resultList)) {
- return R.data(ResultMsg.ok(resultList));
- } else {
- return R.error(ResultMsg.error());
- }
- }
- /**
- * 查询维护损失率
- *
- * @return
- */
- @GetMapping("/whsslList")
- @ResponseBody
- @ApiOperation(value = "专题分析-维护损失率", notes = "专题分析-维护损失率")
- public R whsslList(@RequestParam(value = "companys") String companys,
- @RequestParam(value = "type") String type,
- @RequestParam(value = "year") String year) throws ParseException {
- List<SpecificTarget> resultList = specificService.whsslList(companys, type, year);
- if (StringUtils.isNotNull(resultList)) {
- return R.data(ResultMsg.ok(resultList));
- } else {
- return R.error(ResultMsg.error());
- }
- }
- /**
- * 查询限电损失率
- *
- * @return
- */
- @GetMapping("/xdsslList")
- @ResponseBody
- @ApiOperation(value = "专题分析-限电损失率", notes = "专题分析-限电损失率")
- public R xdsslList(@RequestParam(value = "companys", required = true) String companys,
- @RequestParam(value = "type", required = true) String type,
- @RequestParam(value = "year", required = true) String year) throws ParseException {
- List<SpecificTarget> resultList = specificService.xdsslList(companys, type, year);
- if (StringUtils.isNotNull(resultList)) {
- return R.data(ResultMsg.ok(resultList));
- } else {
- return R.error(ResultMsg.error());
- }
- }
- /**
- * 查询性能损失率
- *
- * @return
- */
- @GetMapping("/xnsslList")
- @ResponseBody
- @ApiOperation(value = "专题分析-性能损失率", notes = "专题分析-性能损失率")
- public R xnsslList(@RequestParam(value = "companys", required = true) String companys,
- @RequestParam(value = "type", required = true) String type,
- @RequestParam(value = "year", required = true) String year) throws ParseException {
- List<SpecificTarget> resultList = specificService.xnsslList(companys, type, year);
- if (StringUtils.isNotNull(resultList)) {
- return R.data(ResultMsg.ok(resultList));
- } else {
- return R.error(ResultMsg.error());
- }
- }
- /**
- * 查询受累损失率
- *
- * @return
- */
- @GetMapping("/slsslList")
- @ResponseBody
- @ApiOperation(value = "专题分析-受累损失率", notes = "专题分析-受累损失率")
- public R slsslList(@RequestParam(value = "companys", required = true) String companys,
- @RequestParam(value = "type", required = true) String type,
- @RequestParam(value = "year", required = true) String year) throws ParseException {
- List<SpecificTarget> resultList = specificService.slsslList(companys, type, year);
- if (StringUtils.isNotNull(resultList)) {
- return R.data(ResultMsg.ok(resultList));
- } else {
- return R.error(ResultMsg.error());
- }
- }
- /**
- * 查询复位及时率
- *
- * @return
- */
- @GetMapping("/fwjslList")
- @ResponseBody
- @ApiOperation(value = "专题分析-复位及时率", notes = "专题分析-复位及时率")
- public R fwjslList(@RequestParam(value = "companys", required = true) String companys,
- @RequestParam(value = "type", required = true) String type,
- @RequestParam(value = "year", required = true) String year) throws ParseException {
- List<SpecificTarget> resultList = specificService.fwjslList(companys, type, year);
- if (StringUtils.isNotNull(resultList)) {
- return R.data(ResultMsg.ok(resultList));
- } else {
- return R.error(ResultMsg.error());
- }
- }
- /**
- * 查询状态转换率
- *
- * @return
- */
- @GetMapping("/ztzhlList")
- @ResponseBody
- @ApiOperation(value = "专题分析-状态转换率", notes = "专题分析-状态转换率")
- public R ztzhlList(@RequestParam(value = "companys", required = true) String companys,
- @RequestParam(value = "type", required = true) String type,
- @RequestParam(value = "year", required = true) String year) throws ParseException {
- List<SpecificTarget> resultList = specificService.ztzhlList(companys, type, year);
- if (StringUtils.isNotNull(resultList)) {
- return R.data(ResultMsg.ok(resultList));
- } else {
- return R.error(ResultMsg.error());
- }
- }
- /**
- * 查询消缺及时率
- *
- * @return
- */
- @GetMapping("/xqjslList")
- @ResponseBody
- @ApiOperation(value = "专题分析-消缺及时率", notes = "专题分析-消缺及时率")
- public R xqjslList(@RequestParam(value = "companys", required = true) String companys,
- @RequestParam(value = "type", required = true) String type,
- @RequestParam(value = "year", required = true) String year) throws ParseException {
- List<SpecificTarget> resultList = specificService.xqjslList(companys, type, year);
- if (StringUtils.isNotNull(resultList)) {
- return R.data(ResultMsg.ok(resultList));
- } else {
- return R.error(ResultMsg.error());
- }
- }
- /**
- * 查询系统效率
- *
- * @return
- */
- @GetMapping("/xtxlList")
- @ResponseBody
- @ApiOperation(value = "专题分析-系统效率", notes = "专题分析-系统效率")
- public R xtxlList(@RequestParam(value = "companys", required = true) String companys,
- @RequestParam(value = "type", required = true) String type,
- @RequestParam(value = "year", required = true) String year) throws ParseException {
- List<SpecificTarget> resultList = specificService.xtxlList(companys, type, year);
- if (StringUtils.isNotNull(resultList)) {
- return R.data(ResultMsg.ok(resultList));
- } else {
- return R.error(ResultMsg.error());
- }
- }
- /**
- * 查询离散率
- *
- * @return
- */
- @GetMapping("/lslList")
- @ResponseBody
- @ApiOperation(value = "专题分析-离散率", notes = "专题分析-离散率")
- public R lslList(@RequestParam(value = "companys", required = true) String companys,
- @RequestParam(value = "type", required = true) String type,
- @RequestParam(value = "year", required = true) String year) throws ParseException {
- List<SpecificTarget> resultList = specificService.lslList(companys, type, year);
- if (StringUtils.isNotNull(resultList)) {
- return R.data(ResultMsg.ok(resultList));
- } else {
- return R.error(ResultMsg.error());
- }
- }
- /**
- * 查询转换效率
- *
- * @return
- */
- @GetMapping("/zhxlList")
- @ResponseBody
- @ApiOperation(value = "专题分析-转换效率", notes = "专题分析-转换效率")
- public R zhxlList(@RequestParam(value = "companys", required = true) String companys,
- @RequestParam(value = "type", required = true) String type,
- @RequestParam(value = "year", required = true) String year) throws ParseException {
- List<SpecificTarget> resultList = specificService.zhxlList(companys, type, year);
- if (StringUtils.isNotNull(resultList)) {
- return R.data(ResultMsg.ok(resultList));
- } else {
- return R.error(ResultMsg.error());
- }
- }
- /**
- * 查询MTBF
- *
- * @return
- */
- @GetMapping("/mtbfList")
- @ResponseBody
- @ApiOperation(value = "专题分析-MTBF分析", notes = "专题分析-MTBF分析")
- public R mtbfList(@RequestParam(value = "companys") String companys,
- @RequestParam(value = "type") String type,
- @RequestParam(value = "year") String year) throws ParseException {
- List<SpecificTarget> resultList = specificService.mtbfList(companys, type, year);
- if (StringUtils.isNotNull(resultList)) {
- return R.data(ResultMsg.ok(resultList));
- } else {
- return R.error(ResultMsg.error());
- }
- }
- /**
- * 查询MTTR
- *
- * @return
- */
- @GetMapping("/mttrList")
- @ResponseBody
- @ApiOperation(value = "专题分析-MTTR分析", notes = "专题分析-MTTR分析")
- public R mttrList(@RequestParam(value = "companys", required = true) String companys,
- @RequestParam(value = "type", required = true) String type,
- @RequestParam(value = "year", required = true) String year) throws ParseException {
- List<SpecificTarget> resultList = specificService.mttrList(companys, type, year);
- if (StringUtils.isNotNull(resultList)) {
- return R.data(ResultMsg.ok(resultList));
- } else {
- return R.error(ResultMsg.error());
- }
- }
- }
|