瀏覽代碼

简报接口

wangb@gyee-china.com 1 年之前
父節點
當前提交
596d7b1339

+ 42 - 0
web/runeconomy-xk/src/main/java/com/gyee/runeconomy/controller/Application/ApplicationController.java

@@ -0,0 +1,42 @@
+package com.gyee.runeconomy.controller.Application;
+
+import com.gyee.runeconomy.dto.AjaxResult;
+import com.gyee.runeconomy.service.Application.ApplicationService;
+import io.swagger.annotations.Api;
+import io.swagger.annotations.ApiImplicitParam;
+import io.swagger.annotations.ApiImplicitParams;
+import io.swagger.annotations.ApiOperation;
+import org.springframework.web.bind.annotation.GetMapping;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RestController;
+
+import javax.annotation.Resource;
+import java.util.HashMap;
+import java.util.Map;
+
+@RestController
+@RequestMapping("//benchmarking")
+@Api(value = "对标管理", tags = "对标管理")
+public class ApplicationController {
+
+    @Resource
+    private ApplicationService applicationService;
+    @GetMapping(value = "/bulletin")
+    @ApiOperation(value = "简报", notes = "简报")
+    @ApiImplicitParams({
+            @ApiImplicitParam(name = "wpId", value = "场站编号", required = true, dataType = "string", paramType = "query")})
+    public AjaxResult getinformation(String wpId) throws Exception {
+
+        Map<String, String> map = new HashMap<>();
+        if (!wpId.isEmpty()) {
+            map = applicationService.bulletin(wpId);
+        }
+        if (null != map) {
+            return AjaxResult.successData(200, map);
+        } else {
+            return AjaxResult.error(500, "操作失败");
+        }
+
+    }
+
+}

+ 50 - 0
web/runeconomy-xk/src/main/java/com/gyee/runeconomy/service/Application/ApplicationService.java

@@ -0,0 +1,50 @@
+package com.gyee.runeconomy.service.Application;
+
+import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
+import com.gyee.runeconomy.model.auto.ProEconPowerstationInfoDay5;
+import com.gyee.runeconomy.service.auto.IProEconPowerstationInfoDay5Service;
+import org.springframework.stereotype.Service;
+
+import javax.annotation.Resource;
+import java.util.Date;
+import java.util.HashMap;
+import java.util.List;
+import java.util.Map;
+
+@Service
+public class ApplicationService {
+
+    @Resource
+    private IProEconPowerstationInfoDay5Service proEconPowerstationInfoDay5Service;
+    public Map bulletin(String wpId) throws Exception {
+
+        Map<String,List> map = new HashMap<>();
+        // 获取当前日期 暂时
+        Date currentDate = new Date();
+
+        List<ProEconPowerstationInfoDay5> qwt = null;
+        QueryWrapper<ProEconPowerstationInfoDay5> qw = new QueryWrapper<>();
+        if (wpId.equals("KGDL_FGS0")){
+            qw.lambda().in(ProEconPowerstationInfoDay5::getForeignKeyId, "SXJ_KGDL_GFFD_ZGS-1", "SXJ_KGDL_FLFD_ZGS-2");
+        } else if (wpId.equals("KGDL_FGS-1")) {
+            qw.lambda().eq(ProEconPowerstationInfoDay5::getForeignKeyId, "SXJ_KGDL_FLFD_ZGS-1");
+        } else if (wpId.equals("KGDL_FGS-2")) {
+            qw.lambda().eq(ProEconPowerstationInfoDay5::getForeignKeyId, "SXJ_KGDL_GFFD_ZGS-2");
+        } else if (wpId.equals("SXJ_RGN0")) {
+            qw.lambda().in(ProEconPowerstationInfoDay5::getForeignKeyId, "SXJ_RGN-1", "SXJ_RGN-2");
+        } else if (wpId.equals("SXJ_RGN-1")) {
+            qw.lambda().eq(ProEconPowerstationInfoDay5::getForeignKeyId, "SXJ_RGN-1");
+        }else if (wpId.equals("SXJ_RGN-2")) {
+            qw.lambda().eq(ProEconPowerstationInfoDay5::getForeignKeyId, "SXJ_RGN-2");
+        }
+//        qw.lambda().between(ProEconPowerstationInfoDay5::getRecordDate, beginDate8, endDate8);
+        qw.lambda().like(ProEconPowerstationInfoDay5::getRecordDate,currentDate);
+
+        qwt = proEconPowerstationInfoDay5Service.list(qw);
+
+        map.put("ri",qwt);
+
+
+        return null;
+    }
+}