|
@@ -208,9 +208,8 @@ public class RyTask
|
|
|
} else if ("信义污水厂JS_PH_Value".equals(type)) {
|
|
|
industry.setJsPh(value);
|
|
|
} else if ("信义污水厂JS_SS_Value".equals(type)) {
|
|
|
- log.info("************----------真实的进水SS的值为{}\n时间为{}", value, k);
|
|
|
- //todo 后面演示完要去掉
|
|
|
- industry.setJsSs(new BigDecimal("346.5"));
|
|
|
+// log.info("************----------真实的进水SS的值为{}\n时间为{}", value, k);
|
|
|
+ industry.setJsSs(value);
|
|
|
} else if ("信义污水厂JS_ZL_Value".equals(type)) {
|
|
|
industry.setJsTp(value);
|
|
|
} else if ("信义污水厂JS_ZA_Value".equals(type)) {
|
|
@@ -230,9 +229,8 @@ public class RyTask
|
|
|
} else if ("信义污水厂升级出水SS".equals(type)) {
|
|
|
industry.setCsSs(value);
|
|
|
} else if ("信义污水厂升级出水TN".equals(type)) {
|
|
|
- log.info("************----------真实的出水总氮的值为{}\n时间为{}", value, k);
|
|
|
- //todo 后面演示完要去掉
|
|
|
- industry.setCsTn(new BigDecimal(17));
|
|
|
+// log.info("************----------真实的出水总氮的值为{}\n时间为{}", value, k);
|
|
|
+ industry.setCsTn(value);
|
|
|
} else if ("信义污水厂升级出水TP".equals(type)) {
|
|
|
industry.setCsTp(value);
|
|
|
} else if ("信义污水厂升级出水氨氮".equals(type)) {
|
|
@@ -344,7 +342,6 @@ public class RyTask
|
|
|
|
|
|
private void handleWarning(TXinyiIndustry tXinyiIndustry) {
|
|
|
log.info("进入了定时任务保存工业库数据并触发报警操作");
|
|
|
- //todo 临时改一下出水总氮 模拟异常 2024年5月30日19:15:09 改在了插入数据库的时刻
|
|
|
// tXinyiIndustry.setCsTn(new BigDecimal(17));
|
|
|
//获取配置表
|
|
|
List<TXinyiNormConfig> tXinyiNormConfigs = this.xinyiNormConfigMapper.selectTXinyiNormConfigList(null);
|