a
jiangping
2023-11-08 9c3b7a36bae52bc97ef06c03178b862f5166866b
server/platform/src/main/java/com/doumee/task/ScheduleTool.java
@@ -31,8 +31,6 @@
@Slf4j
public class ScheduleTool {
    @Autowired
    private SystemDictDataBiz systemDictDataBiz;
@@ -51,8 +49,7 @@
    /**
     * @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);
@@ -75,7 +72,7 @@
     * 30 秒刷新一次
     * @throws Exception
     */
//    @Scheduled(cron = "0/30 * * * * ? ")
    @Scheduled(cron = "0/30 * * * * ? ")
    public void autoRefreshLockStatus() throws Exception {
        log.info("=====================开始定时刷新骑行中的数充值未开锁失败=======================");
        memberRidesService.autoRefreshLockStatus();
@@ -87,7 +84,7 @@
     * 站点车辆满架率预警
     * @throws Exception
     */
//    @Scheduled(fixedDelay = 1000L * 60L * 3L)
    @Scheduled(fixedDelay = 1000L * 60L * 10L)
    public void siteReserves() throws Exception {
        log.info("=====================开始 站点车辆满架率预警=======================");
        sitesService.siteReservesNotice();;