wzy
2021-06-05 e4930c4a9ed4bc2198209370440ec19e1e0393ef
src/main/java/com/xcong/excoin/rabbit/consumer/OtcConsumer.java
@@ -86,4 +86,14 @@
    public void delayOrder(String content) {
        log.info("--{}-->{}", new Date(), content);
    }
    @RabbitListener(queues = RabbitMqConfig.QUEUE_ORDER_RETURN)
    public void orderReturn(String content) {
        log.info("收到返佣消息:{}", content);
        OtcOrder order = otcOrderDao.selectOrderByOrderNoAndType(content, OtcEntrustOrder.ORDER_TYPE_B);
    }
}