From 6d8a43de07062234a05716fcbb94273709cab21e Mon Sep 17 00:00:00 2001
From: shiyj <1098226878@qq.com>
Date: 星期二, 16 七月 2019 17:04:36 +0800
Subject: [PATCH] Merge branch 'master' of https://github.com/java110/MicroCommunity
---
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