hjl
2024-07-19 13fce7e5526de855f36e62fa0abb6864a15ef818
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package com.ruoyi.study.utils;
 
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Component;
 
 
/**
 * 定时任务工具类
 */
@Slf4j
@Component
public class TaskUtil {
 
//    @Autowired
//    private ITViolationManageService violationManageService;
//
//    /**
//     * 每隔一分钟去处理的定时任务
//     */
//    @Scheduled(cron = "0 0 0 * * *")
//    public void taskMinute(){
//        try {
//            violationManageService.taskMinute();
//        } catch (Exception e) {
//            e.printStackTrace();
//        }
//    }
 
    /**
     * 每天的凌晨执行的任务
     */
 
}