| | |
| | | |
| | | |
| | | import com.doumee.biz.system.SystemDictDataBiz; |
| | | import com.doumee.core.utils.DateUtil; |
| | | import com.doumee.service.business.WxBillService; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.scheduling.annotation.EnableScheduling; |
| | | import org.springframework.scheduling.annotation.Scheduled; |
| | | import org.springframework.stereotype.Component; |
| | | |
| | | import java.util.Date; |
| | | |
| | | /** |
| | | * 定时任务 |
| | |
| | | */ |
| | | @Scheduled(cron = "0 0 11 * * ? ") |
| | | public void syncStudent() throws Exception { |
| | | wxBillService.getWxBill(); |
| | | //前一天的數據 |
| | | Date ydate = DateUtil.addDaysToDate(new Date(), -1); |
| | | wxBillService.getWxBill(ydate); |
| | | |
| | | } |
| | | /** |
| | | * 測試 |
| | | * @throws Exception |
| | | */ |
| | | @Scheduled(fixedDelay = 1000*60) |
| | | // @Scheduled(fixedDelay = 1000*60) |
| | | public void getYesterdayBill() throws Exception { |
| | | wxBillService.getWxBill(); |
| | | Date ydate = DateUtil.addDaysToDate(new Date(), -1); |
| | | wxBillService.getWxBill(ydate); |
| | | |
| | | } |
| | | } |