| | |
| | | /** |
| | | * @throws Exception |
| | | */ |
| | | // @Scheduled(cron = "0 0 11 * * ? ") |
| | | public void syncStudent() throws Exception { |
| | | public void getWxBill() throws Exception { |
| | | //前一天的數據 |
| | | Date ydate = DateUtil.addDaysToDate(new Date(), -1); |
| | | wxBillService.getWxBill(ydate); |
| | |
| | | * 30 秒刷新一次 |
| | | * @throws Exception |
| | | */ |
| | | // @Scheduled(cron = "0/30 * * * * ? ") |
| | | @Scheduled(cron = "0/30 * * * * ? ") |
| | | public void autoRefreshLockStatus() throws Exception { |
| | | log.info("=====================开始定时刷新骑行中的数充值未开锁失败======================="); |
| | | memberRidesService.autoRefreshLockStatus(); |
| | | log.info("=====================结束定时刷新骑行中的数充值未开锁失败======================="); |
| | | } |
| | | |
| | | |