|
@@ -32,32 +32,32 @@ public class JsCsFormatData {
|
|
|
HashMap<Object, Object> temp1 = new HashMap<>();
|
|
|
BigDecimal jsSlq = tXinyiIndustry.getJsSlq();
|
|
|
temp1.put("value", DecimalUtils.getAbsAndScale(jsSlq, INT_2));
|
|
|
- temp1.put("exceed", jsSlq.compareTo(normConfig.getJsslSjz()) >0);
|
|
|
+ temp1.put("exceed", !Objects.isNull(jsSlq) && jsSlq.compareTo(normConfig.getJsslSjz()) >0);
|
|
|
jsData.put("流量", temp1);
|
|
|
HashMap<Object, Object> temp2 = new HashMap<>();
|
|
|
BigDecimal jsCod = tXinyiIndustry.getJsCod();
|
|
|
temp2.put("value", DecimalUtils.getAbsAndScale(jsCod, INT_2));
|
|
|
- temp2.put("exceed", jsCod.compareTo(normConfig.getJscodSjz()) > 0);
|
|
|
+ temp2.put("exceed", !Objects.isNull(jsCod) && jsCod.compareTo(normConfig.getJscodSjz()) > 0);
|
|
|
jsData.put("COD", temp2);
|
|
|
HashMap<Object, Object> temp3 = new HashMap<>();
|
|
|
BigDecimal jsNh3 = tXinyiIndustry.getJsNh3();
|
|
|
temp3.put("value", DecimalUtils.getAbsAndScale(jsNh3, INT_2));
|
|
|
- temp3.put("exceed", jsNh3.compareTo(normConfig.getJsadSjz()) > 0);
|
|
|
+ temp3.put("exceed", !Objects.isNull(jsNh3) && jsNh3.compareTo(normConfig.getJsadSjz()) > 0);
|
|
|
jsData.put("NH3-N", temp3);
|
|
|
HashMap<Object, Object> temp4 = new HashMap<>();
|
|
|
BigDecimal jsTp = tXinyiIndustry.getJsTp();
|
|
|
temp4.put("value", DecimalUtils.getAbsAndScale(jsTp, INT_2));
|
|
|
- temp4.put("exceed", jsTp.compareTo(normConfig.getJszlSjz()) > 0);
|
|
|
+ temp4.put("exceed", !Objects.isNull(jsTp) && jsTp.compareTo(normConfig.getJszlSjz()) > 0);
|
|
|
jsData.put("TP", temp4);
|
|
|
HashMap<Object, Object> temp5 = new HashMap<>();
|
|
|
BigDecimal jsSs = tXinyiIndustry.getJsSs();
|
|
|
temp5.put("value", DecimalUtils.getAbsAndScale(jsSs, INT_2));
|
|
|
- temp5.put("exceed", jsSs.compareTo(normConfig.getJsssSjz()) > 0);
|
|
|
+ temp5.put("exceed", !Objects.isNull(jsSs) && jsSs.compareTo(normConfig.getJsssSjz()) > 0);
|
|
|
jsData.put("SS", temp5);
|
|
|
HashMap<Object, Object> temp6 = new HashMap<>();
|
|
|
BigDecimal jsTn = tXinyiIndustry.getJsTn();
|
|
|
temp6.put("value", DecimalUtils.getAbsAndScale(jsTn, INT_2));
|
|
|
- temp6.put("exceed", jsTn.compareTo(normConfig.getJszdSjz()) > 0);
|
|
|
+ temp6.put("exceed", !Objects.isNull(jsTn) && jsTn.compareTo(normConfig.getJszdSjz()) > 0);
|
|
|
jsData.put("TN", temp6);
|
|
|
return jsData;
|
|
|
}
|
|
@@ -70,7 +70,7 @@ public class JsCsFormatData {
|
|
|
HashMap<Object, Object> temp1 = new HashMap<>();
|
|
|
BigDecimal csCod = tXinyiIndustry.getCsCod();
|
|
|
temp1.put("value", DecimalUtils.getAbsAndScale(csCod, INT_2));
|
|
|
- temp1.put("exceed", csCod.compareTo(normConfig.getCscodGkz()) > 0);
|
|
|
+ temp1.put("exceed", !Objects.isNull(csCod) && csCod.compareTo(normConfig.getCscodGkz()) > 0);
|
|
|
csData.put("COD", temp1);
|
|
|
|
|
|
// 好氧池硝酸盐 | 二沉池正磷酸盐 | 连续监测 - 化验室
|
|
@@ -88,13 +88,13 @@ public class JsCsFormatData {
|
|
|
HashMap<Object, Object> temp4 = new HashMap<>();
|
|
|
|
|
|
temp2.put("value", DecimalUtils.getAbsAndScale(hl1Jqr, INT_2));
|
|
|
- temp2.put("exceed", Objects.isNull(hl1Jqr) ? false : hl1Jqr.compareTo(normConfig.getCszzGkz()) > 0);
|
|
|
+ temp2.put("exceed", !Objects.isNull(hl1Jqr) && hl1Jqr.compareTo(normConfig.getCszzGkz()) > 0);
|
|
|
|
|
|
temp3.put("value", DecimalUtils.getAbsAndScale(hl2Jqr, INT_2));
|
|
|
- temp3.put("exceed", Objects.isNull(hl2Jqr) ? false : hl1Jqr.compareTo(normConfig.getCszzGkz()) > 0);
|
|
|
+ temp3.put("exceed", !Objects.isNull(hl2Jqr) && hl2Jqr.compareTo(normConfig.getCszzGkz()) > 0);
|
|
|
|
|
|
temp4.put("value", DecimalUtils.getAbsAndScale(tpRccJqr, INT_2));
|
|
|
- temp4.put("exceed", Objects.isNull(tpRccJqr) ? false : csTp.compareTo(normConfig.getCszlGkz()) > 0);
|
|
|
+ temp4.put("exceed", !Objects.isNull(tpRccJqr) && tpRccJqr.compareTo(normConfig.getCszlGkz()) > 0);
|
|
|
|
|
|
csData.put("HYC1", temp2);
|
|
|
csData.put("HYC2", temp3);
|
|
@@ -105,14 +105,14 @@ public class JsCsFormatData {
|
|
|
HashMap<Object, Object> temp3 = new HashMap<>();
|
|
|
BigDecimal csNh3 = tXinyiIndustry.getCsNh3();
|
|
|
temp3.put("value", DecimalUtils.getAbsAndScale(csNh3, INT_2));
|
|
|
- temp3.put("exceed", csNh3.compareTo(normConfig.getCsadGkz()) > 0);
|
|
|
+ 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();
|
|
|
temp5.put("value", DecimalUtils.getAbsAndScale(csSs, INT_2));
|
|
|
- temp5.put("exceed", csSs.compareTo(normConfig.getCsssGkz()) > 0);
|
|
|
+ temp5.put("exceed", !Objects.isNull(csSs) && csSs.compareTo(normConfig.getCsssGkz()) > 0);
|
|
|
csData.put("SS", temp5);
|
|
|
|
|
|
return csData;
|