|
|
@@ -694,6 +694,8 @@ public class CoreMonitoringRetrievalTaskServiceImpl extends ServiceImpl<CoreMoni
|
|
|
queryWrapper.lambda().eq(TMonitoringRetrievalPlan::getPlanStatus, 1);
|
|
|
queryWrapper.lambda().eq(TMonitoringRetrievalPlan::getIsDeleted, 0);
|
|
|
queryWrapper.lambda().eq(TMonitoringRetrievalPlan::getCreateType, 1);
|
|
|
+ //排除无周期的计划
|
|
|
+ queryWrapper.lambda().notIn(TMonitoringRetrievalPlan::getPlanCycle, 0);
|
|
|
List<TMonitoringRetrievalPlan> plans = itMonitoringRetrievalPlanService.list(queryWrapper);
|
|
|
List<TMonitoringRetrievalPlan> planList = new ArrayList<>();
|
|
|
|