liujie
2023-07-25 a0aa8844c4449ccd9fcccb78fcca5102ac15844b
cloud-server-management/src/main/java/com/dsh/guns/modular/system/util/TaskUtil.java
@@ -1,8 +1,6 @@
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;
@@ -14,22 +12,8 @@
public class TaskUtil {
    @Autowired
    private ITbUserExitService userExitService;
    /**
     * 每分钟
     */
    @Scheduled(cron = "0 */1 * * * ?")
    public void taskDay(){
        try {
            userExitService.getSevenDay();
        }catch (Exception e){
            e.printStackTrace();
        }
    }