Commit 2d155c7e by 李小龙

fix:

parent 9a050443
...@@ -161,6 +161,9 @@ public class BehaviorAlarm implements IAlarm { ...@@ -161,6 +161,9 @@ public class BehaviorAlarm implements IAlarm {
platElderList = platAlarmCheckDTO.getPlatElderList(); platElderList = platAlarmCheckDTO.getPlatElderList();
} }
for (PlatElder platElder : platElderList) { for (PlatElder platElder : platElderList) {
if(StringUtils.isBlank(platElder.getRegionName())){
continue;
}
PlatDayDurationRecord durationRecord = new PlatDayDurationRecord(); PlatDayDurationRecord durationRecord = new PlatDayDurationRecord();
durationRecord.setElderIds(platElder.getId()); durationRecord.setElderIds(platElder.getId());
durationRecord.setRegionName(platElder.getRegionName()); durationRecord.setRegionName(platElder.getRegionName());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment