puzhibing
2023-06-13 7860e5cb6db60aeb82c640651998f8294635df5b
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
34
35
36
37
38
39
40
41
42
package com.dsh.guns.modular.system.util;
 
 
import com.dsh.guns.modular.system.service.ITbUserExitService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;
 
 
/**
 * 定时任务工具类
 */
@Component
public class TaskUtil {
 
 
    @Autowired
    private ITbUserExitService userExitService;
 
 
 
    /**
     * 每分钟
     */
    @Scheduled(cron = "0 */1 * * * ?")
    public void taskDay(){
        try {
            userExitService.getSevenDay();
        }catch (Exception e){
            e.printStackTrace();
        }
    }
 
 
 
    /**
     * 每月第一天的1点执行的任务
     */
    @Scheduled(cron = "0 0 1 1 * *")
    public void taskMonth(){
    }
}