|
@@ -41,10 +41,10 @@ public class VisitPlanTask {
|
|
|
//TODO 需还原
|
|
|
public void checkRemindMessage() {
|
|
|
Date now = new Date();
|
|
|
- System.out.println("===开始检查该分钟需提醒的访客计划==="+now);
|
|
|
+// System.out.println("===开始检查该分钟需提醒的访客计划==="+now);
|
|
|
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
|
|
|
List<VisitPlan> visitPlans = visitPlanMapper.getMinuteVisitPlans(now);
|
|
|
- System.out.println("需提醒计划数量为: "+visitPlans.size());
|
|
|
+// System.out.println("需提醒计划数量为: "+visitPlans.size());
|
|
|
List<WxCorpInfo> wxCorpInfos = wxCorpInfoMapper.selectList(null);
|
|
|
Map<Integer, WxCorpInfo> companyWXCorpMap = new HashMap<>();
|
|
|
if(CollectionUtils.isNotEmpty(wxCorpInfos)){
|
|
@@ -83,7 +83,7 @@ public class VisitPlanTask {
|
|
|
|
|
|
}
|
|
|
}
|
|
|
- System.out.println("===检查该分钟需提醒的访客计划结束===");
|
|
|
+// System.out.println("===检查该分钟需提醒的访客计划结束===");
|
|
|
}
|
|
|
|
|
|
|