xiaoyong931011
2022-09-01 fddf121cd7b9b488d7fd529bd3e64461d65b9f20
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,7 +53,7 @@
    /**
     * 感恩奖
     */
    @Scheduled(cron = "0 30 3 * * ?")
    @Scheduled(cron = "0 0 1 * * ?")
    public void thankfulJob() {
        memberProfitService.thankfulProfit(null);
    }
@@ -62,7 +62,7 @@
    /**
     * 静态分红
     */
    @Scheduled(cron = "0 30 2 * * ?")
    @Scheduled(cron = "0 0 0 * * ?")
    public void staticProfitJob() {
        memberProfitService.staticProfit(null);
    }
@@ -70,7 +70,7 @@
    /**
     * 排名奖 每月1号
     */
    @Scheduled(cron = "0 0 3 1 * ?")
    @Scheduled(cron = "0 30 0 1 * ?")
    public void rankJob() {
        memberProfitService.rankProfit();
    }