xiaoyong931011
2022-10-26 2da858edbdda7f3be168f8f736ba2a9094513ef3
src/main/java/cc/mrbird/febs/job/SystemTradeJob.java
@@ -69,9 +69,18 @@
        systemService.mining();
    }
//    @Scheduled(cron = "0/10 * * * * ?")
    @Scheduled(cron = "0/30 * * * * ?")
    public void tfcNewPriceJob() {
        systemService.tfcNewPrice();
    }
    /**
     * 影子生态中,提现手续费分配
     */
    @Scheduled(cron = "0 0 0 * * ?")
    public void sdeWithdrawFeeDistribJob() {
        log.info("执行影子生态手续费分配执行");
//        systemService.sdmWithdrawFeeDistrib();
    }
}