xiaoyong931011
2022-09-22 d040c0f42d6799e2a89ea2dcbd5e3b0f97bffc2a
src/main/java/cc/mrbird/febs/mall/quartz/ProfitJob.java
@@ -40,7 +40,7 @@
    /**
     * 代理分红
     */
    @Scheduled(cron = "0 0 1 * * ?")
    @Scheduled(cron = "0 30 0 * * ?")
    public void profitJob() {
        memberProfitService.agentProfit(null);
    }
@@ -53,24 +53,24 @@
    /**
     * 感恩奖
     */
    @Scheduled(cron = "0 0 2 * * ?")
    @Scheduled(cron = "0 0 1 * * ?")
    public void thankfulJob() {
        memberProfitService.thankfulProfit();
        memberProfitService.thankfulProfit(null);
    }
    /**
     * 静态分红
     */
    @Scheduled(cron = "0 30 2 * * ?")
    @Scheduled(cron = "0 0 0 * * ?")
    public void staticProfitJob() {
        memberProfitService.staticProfit();
        memberProfitService.staticProfit(null);
    }
    /**
     * 排名奖 每月1号
     */
    @Scheduled(cron = "0 0 3 1 * ?")
    @Scheduled(cron = "0 30 0 1 * ?")
    public void rankJob() {
        memberProfitService.rankProfit();
    }