diff --git a/jeecg-module-abnormal-alarm/src/main/java/org/jeecg/modules/service/impl/AlarmAnalysisRuleServiceImpl.java b/jeecg-module-abnormal-alarm/src/main/java/org/jeecg/modules/service/impl/AlarmAnalysisRuleServiceImpl.java index d5c87162..91d6dfd3 100644 --- a/jeecg-module-abnormal-alarm/src/main/java/org/jeecg/modules/service/impl/AlarmAnalysisRuleServiceImpl.java +++ b/jeecg-module-abnormal-alarm/src/main/java/org/jeecg/modules/service/impl/AlarmAnalysisRuleServiceImpl.java @@ -201,19 +201,19 @@ public class AlarmAnalysisRuleServiceImpl extends ServiceImpl acqTimes = ListUtil .toList(analysisRule.getAcqTime().split(comma)); - analysisRuleInfo.setColTime(acqTimes); + analysisRuleInfo.setAcqTime(acqTimes); } if (null != analysisRule.getXe133MDC()) { List xe133MDC = ListUtil .toList(analysisRule.getXe133MDC().split(comma)); - analysisRuleInfo.setColTime(xe133MDC); + analysisRuleInfo.setXe133MDC(xe133MDC); } if (null != analysisRule.getIdentifyNuclides()) { List inList = ListUtil .toList(analysisRule.getIdentifyNuclides().split(comma)); - analysisRuleInfo.setIdentifyNuclidesChecked(inList); +// analysisRuleInfo.setIdentifyNuclidesChecked(inList); } return Result.OK(analysisRuleInfo); }