zhanghua
2023-10-27 e468088052b2dea9837645eeed689ee9c5f0948d
ycl-platform/src/main/java/com/ycl/task/SynchronizeHKVideo.java
@@ -25,13 +25,13 @@
    @Autowired
    private VideoUtil videoUtil;
//    @Scheduled(cron = "0/9 * * * * ?")   // 每秒执行
//    @Scheduled(cron = "0 0/1 * ?")
//    @Scheduled(cron = "0 */5 * * * ?")   // 每5分钟执行
    @Scheduled(cron = "0 0 1 * * ?")
    @Transactional(rollbackFor = Exception.class)
    public void scheduledTask() {
        System.out.println("海康:开始执行");
        findVideoList(1, 20);
        findVideoList(1, 5);
    }