zhanghua
2023-11-21 bbe76086f95dfb34e942d9f2801e17db38391c68
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);
    }