|
@@ -104,13 +104,6 @@ public class JsCsFormatData {
|
|
|
csData.put("RCC", temp4);
|
|
|
}
|
|
|
|
|
|
- // 出水氨氮 | 在线仪表 - 工业
|
|
|
- HashMap<Object, Object> temp3 = new HashMap<>();
|
|
|
- BigDecimal csNh3 = tXinyiIndustry.getCsNh3();
|
|
|
- temp3.put("value", DecimalUtils.getAbsAndScale(csNh3, INT_2));
|
|
|
- temp3.put("exceed", !Objects.isNull(csNh3) && csNh3.compareTo(normConfig.getCsadGkz()) > 0);
|
|
|
- csData.put("NH3-N", temp3);
|
|
|
-
|
|
|
// 出水SS | 在线仪表 - 工业
|
|
|
HashMap<Object, Object> temp5 = new HashMap<>();
|
|
|
BigDecimal csSs = tXinyiIndustry.getCsSs();
|
|
@@ -118,6 +111,20 @@ public class JsCsFormatData {
|
|
|
temp5.put("exceed", !Objects.isNull(csSs) && csSs.compareTo(normConfig.getCsssGkz()) > 0);
|
|
|
csData.put("SS", temp5);
|
|
|
|
|
|
+ // 出水氨氮 | 在线仪表 - 工业
|
|
|
+ HashMap<Object, Object> temp6 = new HashMap<>();
|
|
|
+ BigDecimal csNh3 = tXinyiIndustry.getCsNh3();
|
|
|
+ temp6.put("value", DecimalUtils.getAbsAndScale(csNh3, INT_2));
|
|
|
+ temp6.put("exceed", !Objects.isNull(csNh3) && csNh3.compareTo(normConfig.getCsadGkz()) > 0);
|
|
|
+ csData.put("NH3-N", temp6);
|
|
|
+
|
|
|
+ //2024年08月08日09:50:53 出水增加出水水量展示
|
|
|
+ HashMap<Object, Object> temp0 = new HashMap<>();
|
|
|
+ BigDecimal csSlq = tXinyiIndustry.getCsSlqc();
|
|
|
+ temp0.put("value", DecimalUtils.getAbsAndScale(csSlq, INT_2));
|
|
|
+ temp0.put("exceed", false);//出水水量没有管控值
|
|
|
+ csData.put("流量", temp0);
|
|
|
+
|
|
|
return csData;
|
|
|
}
|
|
|
|