From 5d9e2fbeab87327ce11080485bf4d971f93f542a Mon Sep 17 00:00:00 2001
From: admin <ak473600000>
Date: Sat, 26 Jun 2021 18:03:20 +0800
Subject: [PATCH] 修复bug

---
 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