|
@@ -53,7 +53,7 @@ public class PlanTask {
|
|
}
|
|
}
|
|
|
|
|
|
Boolean recordFlag = redisCache.getCacheObject("tl:planrecord:" + queryDate);
|
|
Boolean recordFlag = redisCache.getCacheObject("tl:planrecord:" + queryDate);
|
|
- if (recordFlag == null || recordFlag) {
|
|
|
|
|
|
+ if (recordFlag != null && recordFlag) {
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
List<TlInspectionPlan> planList = planService.queryPlanByDate(queryDate);
|
|
List<TlInspectionPlan> planList = planService.queryPlanByDate(queryDate);
|