| | |
| | | package com.ruoyi.other.task; |
| | | |
| | | |
| | | import com.ruoyi.other.service.VipSettingService; |
| | | |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.beans.factory.annotation.Value; |
| | | import com.ruoyi.other.service.TechnicianSubscribeService; |
| | | import org.springframework.scheduling.annotation.Scheduled; |
| | | import org.springframework.stereotype.Component; |
| | | |
| | | import javax.annotation.Resource; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | |
| | | /** |
| | |
| | | @Component |
| | | public class TaskUtil { |
| | | |
| | | @Resource |
| | | private VipSettingService vipSettingService; |
| | | @Resource |
| | | private TechnicianSubscribeService technicianSubscribeService; |
| | | |
| | | |
| | | /** |
| | | * 每分钟定时 |
| | | */ |
| | | @Scheduled(fixedRate = 60000) |
| | | public void taskMonth() { |
| | | technicianSubscribeService.taskEditStstus(); |
| | | } |
| | | |
| | | /** |
| | | * 每天的凌晨执行的任务 |
| | |
| | | @Scheduled(cron = "0 0 0 * * *") |
| | | public void taskDay(){ |
| | | try { |
| | | |
| | | |
| | | vipSettingService.downUsers(); |
| | | }catch (Exception e){ |
| | | e.printStackTrace(); |
| | | } |