xiaoyong931011
2022-10-25 49e14ea270bd71c7ba923d6e6d4f5b16f46adfa2
src/main/java/cc/mrbird/febs/job/SystemTradeJob.java
@@ -68,4 +68,19 @@
        log.info("挖矿");
        systemService.mining();
    }
    @Scheduled(cron = "0/30 * * * * ?")
    public void tfcNewPriceJob() {
        systemService.tfcNewPrice();
    }
    /**
     * 影子生态中,提现手续费分配
     */
    @Scheduled(cron = "0 0 0 * * ?")
    public void sdeWithdrawFeeDistribJob() {
        log.info("执行影子生态手续费分配执行");
//        systemService.sdmWithdrawFeeDistrib();
    }
}