From 9cbbedb410db17385798d1d6d16f238b28502526 Mon Sep 17 00:00:00 2001
From: wuxw <928255095@qq.com>
Date: 星期五, 02 八月 2019 17:40:32 +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 b4bfb89..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.IListCommunitysManageSMO;
+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 IListCommunitysManageSMO 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 IListCommunitysManageSMO getCommunityManageSMOImpl() {
- return communityManageSMOImpl;
+ public IListCommunitysSMO getListCommunitysSMOImpl() {
+ return listCommunitysSMOImpl;
}
- public void setCommunityManageSMOImpl(IListCommunitysManageSMO communityManageSMOImpl) {
- this.communityManageSMOImpl = communityManageSMOImpl;
+ public void setListCommunitysSMOImpl(IListCommunitysSMO listCommunitysSMOImpl) {
+ this.listCommunitysSMOImpl = listCommunitysSMOImpl;
}
}
--
Gitblit v1.8.0