From 2a4dc73c59eae1e14b0e0660bf04652fa3d322ad Mon Sep 17 00:00:00 2001 From: jyy <935090232@qq.com> Date: Wed, 07 Apr 2021 12:06:52 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/score_shop' into score_shop --- zq-erp/src/main/java/com/matrix/component/rabbitmq/MqTask.java | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/zq-erp/src/main/java/com/matrix/component/rabbitmq/MqTask.java b/zq-erp/src/main/java/com/matrix/component/rabbitmq/MqTask.java index 2745b5e..eafb7c2 100644 --- a/zq-erp/src/main/java/com/matrix/component/rabbitmq/MqTask.java +++ b/zq-erp/src/main/java/com/matrix/component/rabbitmq/MqTask.java @@ -26,7 +26,7 @@ /** * 处理类在spring中的bean名称 */ - private com.matrix.core.rabbitmq.DeliverCallbackAdapter handerAdapter; + private DeliverCallbackAdapter handerAdapter; /** * 自动确认 默认为true @@ -39,7 +39,7 @@ this.queue = queue; this.routingKey = routingKey; if(hander!=null){ - this.handerAdapter = new com.matrix.core.rabbitmq.DeliverCallbackAdapter(hander,routingKey); + this.handerAdapter = new DeliverCallbackAdapter(hander,routingKey); } } @@ -48,7 +48,7 @@ this.queue = queue; this.routingKey = routingKey; if(hander!=null){ - this.handerAdapter = new com.matrix.core.rabbitmq.DeliverCallbackAdapter(hander,routingKey); + this.handerAdapter = new DeliverCallbackAdapter(hander,routingKey); } this.autoAck=autoAck; @@ -95,7 +95,7 @@ return handerAdapter; } - public void setHander(com.matrix.core.rabbitmq.DeliverCallbackAdapter hander) { + public void setHander(DeliverCallbackAdapter hander) { this.handerAdapter = hander; } } -- Gitblit v1.9.1