소스 검색

统计接口处理

wangmiaomiao 10 달 전
부모
커밋
57b7050d02

+ 6 - 0
slibra-system/src/main/java/com/slibra/business/mapper/TXinyiDailyMapper.java

@@ -1,8 +1,12 @@
 package com.slibra.business.mapper;
 
 import com.slibra.business.domain.TXinyiDaily;
+import org.apache.ibatis.annotations.Param;
 
+import java.math.BigDecimal;
+import java.util.HashMap;
 import java.util.List;
+import java.util.Map;
 
 /**
  * 信义日报数据Mapper接口
@@ -59,4 +63,6 @@ public interface TXinyiDailyMapper
      * @return 结果
      */
     public int deleteTXinyiDailyByIDs(Long[] IDs);
+
+    HashMap selectAvgWater(@Param("begin") String begin, @Param("end") String end);
 }

+ 9 - 4
slibra-system/src/main/java/com/slibra/business/res/XinyiIndustrySimple.java

@@ -139,14 +139,19 @@ public class XinyiIndustrySimple {
     @Excel(name = "上周总进水平均值")
     private BigDecimal szZJSAvg;
 
-    /** 上上周总进水平均值 */
-    @Excel(name = "上上周总进水平均值")
-    private BigDecimal sszZJSAvg;
-
     /** 上周总进水环比 */
     @Excel(name = "上周总进水环比")
     private BigDecimal szZJSHb;
 
+    /** 上周总出水平均值 */
+    @Excel(name = "上周总出水平均值")
+    private BigDecimal szZCSAvg;
+
+    /** 上周总出水环比 */
+    @Excel(name = "上周总出水环比")
+    private BigDecimal szZCSHb;
+
+
 
     //管控制
     /** 进水COD设计值 */

+ 45 - 5
slibra-system/src/main/java/com/slibra/business/service/impl/FrontServiceImpl.java

@@ -5,6 +5,7 @@ import cn.hutool.http.HttpRequest;
 import com.alibaba.fastjson2.JSON;
 import com.alibaba.fastjson2.JSONArray;
 import com.slibra.business.domain.TXinyiDaily;
+import com.slibra.business.domain.TXinyiIndustry;
 import com.slibra.business.domain.TXinyiNormConfig;
 import com.slibra.business.mapper.TXinyiDailyMapper;
 import com.slibra.business.mapper.TXinyiIndustryMapper;
@@ -48,18 +49,57 @@ public class FrontServiceImpl implements IFrontService {
         String[] queryTags = {"信义污水厂JS_COD_Value", "信义污水厂升级出水COD", "信义污水厂JS_AD_Value", "信义污水厂升级出水氨氮", "信义污水厂JS_ZA_Value", "信义污水厂升级出水TN", "信义污水厂JS_ZL_Value", "信义污水厂升级出水TP", "信义污水厂JS_SS_Value", "信义污水厂升级出水SS", "信义污水厂JS_PH_Value", "信义污水厂升级出水PH", "信义污水厂FT101_Value", "信义污水厂出水瞬时流量"};
         xinyiIndustrySimple = this.getRealTimeData(queryTags, nowTime);
         //处理日报数据
-        xinyiIndustrySimple = this.addDailyData(xinyiIndustrySimple, nowTime);
+        this.addDailyData(xinyiIndustrySimple, nowTime);
         //处理配置信息
-        xinyiIndustrySimple = this.addConfigData(xinyiIndustrySimple);
+        this.addConfigData(xinyiIndustrySimple);
         //计算
-        xinyiIndustrySimple = this.calculateData(xinyiIndustrySimple);
+        this.calculateData(xinyiIndustrySimple, nowTime);
         return xinyiIndustrySimple;
     }
 
-    private XinyiIndustrySimple calculateData(XinyiIndustrySimple xinyiIndustrySimple) {
+    private XinyiIndustrySimple calculateData(XinyiIndustrySimple xinyiIndustrySimple, LocalDateTime nowTime) {
+        LocalDateTime yesterdaySameTime = nowTime.plusDays(-1);
+        DateTimeFormatter formatter = DateTimeFormatter.ofPattern(DateUtils.YYYYMMDDHHMM_TS);
+        String testTime = formatter.format(yesterdaySameTime);
         //处理昨日同时期的进水 获取环比
-
+        List<TXinyiIndustry> tXinyiIndustries = this.xinyiIndustryMapper.selectTXinyiIndustryList(TXinyiIndustry.builder().testTime(testTime).build());
+        if(!CollectionUtils.isEmpty(tXinyiIndustries)){
+            TXinyiIndustry industry = tXinyiIndustries.get(0);
+            BigDecimal jsSlqYesterday = industry.getJsSlq();
+            BigDecimal csSlqcYesterday = industry.getCsSlqc();
+            BigDecimal jsSlqToday = xinyiIndustrySimple.getJsSlq();
+            BigDecimal csSlqcToday = xinyiIndustrySimple.getCsSlqc();
+            if(!Objects.isNull(jsSlqYesterday) && !Objects.isNull(jsSlqToday))
+                xinyiIndustrySimple.setSsJsHb((jsSlqToday.subtract(jsSlqYesterday)).divide(jsSlqYesterday, 4, RoundingMode.HALF_UP));
+            if(!Objects.isNull(csSlqcYesterday) && !Objects.isNull(csSlqcToday))
+                xinyiIndustrySimple.setSsJsHb((csSlqcToday.subtract(csSlqcYesterday)).divide(csSlqcYesterday, 4, RoundingMode.HALF_UP));
+        }
         //通过sql查询上周的平均值和环比情况
+        DateTimeFormatter formatterDate = DateTimeFormatter.ofPattern(DateUtils.YYYYMMDD_TS);
+        //获取上周的统计进出水品均值
+        String begin = formatterDate.format(nowTime.plusDays(-7));
+        String end = formatterDate.format(nowTime.plusDays(-1));
+        HashMap<String, BigDecimal> lastWeek = this.xinyiDailyMapper.selectAvgWater(begin, end);
+        BigDecimal lastJSL = lastWeek.get("JSL");
+        BigDecimal lastCSL = lastWeek.get("CSL");
+        //获取上上周的统计进出水品均值
+        begin = formatterDate.format(nowTime.plusDays(-14));
+        end = formatterDate.format(nowTime.plusDays(-8));
+        HashMap<String, BigDecimal> beforeLastWeek = this.xinyiDailyMapper.selectAvgWater(begin, end);
+        BigDecimal beforeLastJSL = beforeLastWeek.get("JSL");
+        BigDecimal beforeLastCSL = beforeLastWeek.get("CSL");
+        if(!Objects.isNull(lastJSL)){
+            xinyiIndustrySimple.setSzZJSAvg(lastJSL);
+            if(!Objects.isNull(beforeLastJSL))
+                xinyiIndustrySimple.setSzZJSHb((lastJSL.subtract(beforeLastJSL)).divide(beforeLastJSL, 4, RoundingMode.HALF_UP));
+        }
+        if(!Objects.isNull(lastCSL)){
+            xinyiIndustrySimple.setSzZCSAvg(lastCSL);
+            if(!Objects.isNull(beforeLastCSL))
+                xinyiIndustrySimple.setSzZCSHb((lastCSL.subtract(beforeLastCSL)).divide(beforeLastCSL, 4, RoundingMode.HALF_UP));
+        }
+
+
         return  xinyiIndustrySimple;
     }
 

+ 12 - 0
slibra-system/src/main/resources/mapper/business/TXinyiDailyMapper.xml

@@ -348,4 +348,16 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
             #{ID}
         </foreach>
     </delete>
+
+
+    <!-- 下面是新增的 -->
+    <select id="selectAvgWater" resultType="java.util.HashMap">
+        SELECT
+            AVG( JSL ) JSL,
+            AVG( CSL ) CSL
+        FROM
+            t_xinyi_daily
+        WHERE
+            TEST_DATE BETWEEN #{begin} AND #{end}
+    </select>
 </mapper>