jiaosong
2023-11-03 538938d540cb71d6c17478d1d53b1e9da24334c9
server/platform/src/main/java/com/doumee/task/ScheduleTool.java
@@ -51,7 +51,7 @@
    /**
     * @throws Exception
     */
//    @Scheduled(cron = "0 0 11 * * ? ")
    @Scheduled(cron = "0 0 11 * * ? ")
    public void syncStudent() throws Exception {
        //前一天的數據
        Date ydate = DateUtil.addDaysToDate(new Date(), -1);
@@ -75,7 +75,7 @@
     * 30 秒刷新一次
     * @throws Exception
     */
//    @Scheduled(cron = "0/30 * * * * ? ")
    @Scheduled(cron = "0/30 * * * * ? ")
    public void autoRefreshLockStatus() throws Exception {
        log.info("=====================开始定时刷新骑行中的数充值未开锁失败=======================");
        memberRidesService.autoRefreshLockStatus();
@@ -87,7 +87,7 @@
     * 站点车辆满架率预警
     * @throws Exception
     */
//    @Scheduled(fixedDelay = 1000L * 60L * 3L)
    @Scheduled(fixedDelay = 1000L * 60L * 3L)
    public void siteReserves() throws Exception {
        log.info("=====================开始 站点车辆满架率预警=======================");
        sitesService.siteReservesNotice();;