|
|
@@ -11,10 +11,7 @@ import com.shkpr.service.warncore.dbdao.DBMgrProxy;
|
|
|
import com.shkpr.service.warncore.dbdao.services.intef.MixDataBizDBService;
|
|
|
import com.shkpr.service.warncore.dbdao.services.intef.OrdWarnPlanInfoDBService;
|
|
|
import com.shkpr.service.warncore.dbdao.services.intef.OrdWarnPlanRulesDBService;
|
|
|
-import com.shkpr.service.warncore.dbdao.tables.OrdTaskUpkeepObjTable;
|
|
|
-import com.shkpr.service.warncore.dbdao.tables.OrdWarnEventInfoTable;
|
|
|
-import com.shkpr.service.warncore.dbdao.tables.OrdWarnPlanInfoTable;
|
|
|
-import com.shkpr.service.warncore.dbdao.tables.OrdWarnTriggerSampleHisTable;
|
|
|
+import com.shkpr.service.warncore.dbdao.tables.*;
|
|
|
import com.shkpr.service.warncore.dto.*;
|
|
|
import com.shkpr.service.warncore.jsonbean.JPMixComplexCondition;
|
|
|
import com.shkpr.service.warncore.jsonbean.JPOrdWarnEventInfo;
|
|
|
@@ -1112,6 +1109,11 @@ public class ZoneDataWarnHandler {
|
|
|
where = new HashMap<String, Object>(){{
|
|
|
put(OrdTaskUpkeepObjTable.R_INFO.ZONE_ID, zoneId);
|
|
|
}};
|
|
|
+ }else if (itemKey.endsWith("wash")){
|
|
|
+ desTable = OrdTaskWashObjTable.R_INFO.TABLE;
|
|
|
+ where = new HashMap<String, Object>(){{
|
|
|
+ put(OrdTaskWashObjTable.R_INFO.ZONE_ID, zoneId);
|
|
|
+ }};
|
|
|
}
|
|
|
|
|
|
if (StringUtils.isEmpty(desTable)){
|