src/main/java/cc/mrbird/febs/mall/quartz/ProfitJob.java
@@ -45,12 +45,26 @@ memberProfitService.agentProfit(null); } @Scheduled(cron = "0 30 1 * * ?") public void storeAndDirectorJob() { memberProfitService.storeAndDirectorProfit(null); } /** * 感恩奖 */ @Scheduled(cron = "0 0 2 * * ?") @Scheduled(cron = "0 30 3 * * ?") public void thankfulJob() { memberProfitService.thankfulProfit(); memberProfitService.thankfulProfit(null); } /** * 静态分红 */ @Scheduled(cron = "0 30 2 * * ?") public void staticProfitJob() { memberProfitService.staticProfit(null); } /**