You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.1 KiB
36 lines
1.1 KiB
package com.hai.schedule;
|
|
|
|
import com.hai.entity.HighUserCoupon;
|
|
import com.hai.service.HighUserCouponService;
|
|
import org.springframework.context.annotation.Configuration;
|
|
import org.springframework.scheduling.annotation.Scheduled;
|
|
|
|
import javax.annotation.Resource;
|
|
import java.util.List;
|
|
|
|
/**
|
|
* @Auther: 胡锐
|
|
* @Description: 卡卷定时任务
|
|
* @Date: 2021/3/27 15:39
|
|
*/
|
|
@Configuration
|
|
public class HighCouponSchedule {
|
|
|
|
@Resource
|
|
private HighUserCouponService highUserCouponService;
|
|
|
|
/**
|
|
* @Author 胡锐
|
|
* @Description 处理过期的卡券
|
|
* @Date 2021/4/4 22:44
|
|
**/
|
|
// @Scheduled(cron="0 0/1 * * * ?") //每1分钟执行一次
|
|
@Scheduled(cron = "0 0 0 * * ?") //每天 凌晨0点执行
|
|
public void expiredCoupon() {
|
|
List<HighUserCoupon> userCoupons = highUserCouponService.getOverdueCoupon();
|
|
for (HighUserCoupon highUserCoupon : userCoupons) {
|
|
highUserCoupon.setStatus(0); // 状态 0:已过期 1:未使用 2:已使用
|
|
highUserCouponService.updateUserCoupon(highUserCoupon);
|
|
}
|
|
}
|
|
}
|
|
|