From 9e29441646434d9f54a2c3e855a724633885d8a4 Mon Sep 17 00:00:00 2001
From: wuxw <928255095@qq.com>
Date: 星期二, 13 八月 2019 19:43:49 +0800
Subject: [PATCH] 缓存开发测试完成

---
 WebService/src/main/java/com/java110/web/components/community/CommunityManageComponent.java |   14 +++++++-------
 1 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/WebService/src/main/java/com/java110/web/components/community/CommunityManageComponent.java b/WebService/src/main/java/com/java110/web/components/community/CommunityManageComponent.java
index f6e220d..bbc641c 100644
--- a/WebService/src/main/java/com/java110/web/components/community/CommunityManageComponent.java
+++ b/WebService/src/main/java/com/java110/web/components/community/CommunityManageComponent.java
@@ -2,7 +2,7 @@
 
 
 import com.java110.core.context.IPageData;
-import com.java110.web.smo.community.ICommunityManageSMO;
+import com.java110.web.smo.community.IListCommunitysSMO;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.http.ResponseEntity;
 import org.springframework.stereotype.Component;
@@ -19,7 +19,7 @@
 public class CommunityManageComponent {
 
     @Autowired
-    private ICommunityManageSMO communityManageSMOImpl;
+    private IListCommunitysSMO listCommunitysSMOImpl;
 
     /**
      * 鏌ヨ灏忓尯鍒楄〃
@@ -27,14 +27,14 @@
      * @return 杩斿洖 ResponseEntity 瀵硅薄
      */
     public ResponseEntity<String> list(IPageData pd){
-        return communityManageSMOImpl.listCommunitys(pd);
+        return listCommunitysSMOImpl.listCommunitys(pd);
     }
 
-    public ICommunityManageSMO getCommunityManageSMOImpl() {
-        return communityManageSMOImpl;
+    public IListCommunitysSMO getListCommunitysSMOImpl() {
+        return listCommunitysSMOImpl;
     }
 
-    public void setCommunityManageSMOImpl(ICommunityManageSMO communityManageSMOImpl) {
-        this.communityManageSMOImpl = communityManageSMOImpl;
+    public void setListCommunitysSMOImpl(IListCommunitysSMO listCommunitysSMOImpl) {
+        this.listCommunitysSMOImpl = listCommunitysSMOImpl;
     }
 }

--
Gitblit v1.8.0