fix
Helius
2022-06-18 fee6de501aae099ea05573a43e508fbd410e02ba
src/main/java/cc/mrbird/febs/mall/quartz/ProfitJob.java
@@ -53,9 +53,9 @@
    /**
     * 感恩奖
     */
    @Scheduled(cron = "0 0 2 * * ?")
    @Scheduled(cron = "0 30 3 * * ?")
    public void thankfulJob() {
        memberProfitService.thankfulProfit();
        memberProfitService.thankfulProfit(null);
    }
@@ -64,7 +64,7 @@
     */
    @Scheduled(cron = "0 30 2 * * ?")
    public void staticProfitJob() {
        memberProfitService.staticProfit();
        memberProfitService.staticProfit(null);
    }
    /**