|
@@ -7,8 +7,8 @@ import javax.annotation.Resource;
|
|
|
|
|
|
@Service
|
|
|
public class BigscreenAutoQueryYesterdayData extends BaseTask {
|
|
|
- private static final String CRON = "0/20 * * * * ?"; // 每20秒输出一次
|
|
|
-// private static final String CRON = "0 10 0 * * ?"; // 每日十二点十分查询昨日数据
|
|
|
+// private static final String CRON = "0/20 * * * * ?"; // 每20秒输出一次
|
|
|
+ private static final String CRON = "0 30 0 * * ?"; // 每日十二点三十分查询昨日数据
|
|
|
|
|
|
@Resource
|
|
|
private IZdszBigscreenService iZdszBigscreenService;
|
|
@@ -16,7 +16,7 @@ public class BigscreenAutoQueryYesterdayData extends BaseTask {
|
|
|
@Override
|
|
|
protected void run() {
|
|
|
// System.out.println("【系统启动】开始(每20秒输出一次)...");
|
|
|
-// iZdszBigscreenService.bigscreenAutoQueryYesterdayData(null);
|
|
|
+ iZdszBigscreenService.bigscreenAutoQueryYesterdayData(null);
|
|
|
System.out.println("【系统提示】 查询大屏昨日数据已完成!");
|
|
|
}
|
|
|
|