xiaoyong931011
2023-07-21 503da018813cb8f2e01ff27016b7b0f056b000ad
src/main/java/cc/mrbird/febs/rabbit/consumer/AgentConsumer.java
@@ -112,4 +112,14 @@
            log.error("支付后同意验证:", e);
        }
    }
    @RabbitListener(queues = QueueConstants.YWG_ROLL_SEND)
    public void rollSendMsg(Long orderId) {
        log.info("支付后生成我的课程或者我的民宿卷:{}", orderId);
        try {
            agentService.rollSendMsg(orderId);
        } catch (Exception e) {
            log.error("支付后生成我的课程或者我的民宿卷:", e);
        }
    }
}