src/main/java/cc/mrbird/febs/mall/quartz/ProfitJob.java
@@ -125,6 +125,24 @@ agentService.BuyToSell(); } /** * 买单 * 看是否是开始显示订单的时间段,超出结束时间的买单,全部超时失败 */ @Scheduled(cron = "0 0/30 * * * ? ") public void timeGetOrderBuy() { agentService.timeGetOrderBuy(); } /** * 卖单 * 看是否是开始显示订单的时间段,超出结束时间的卖单,全部超时失败 */ @Scheduled(cron = "0 0/30 * * * ? ") public void timeGetOrderSell() { agentService.timeGetOrderSell(); }