From 745af110af8843dfc3bf29f5590bf78355daf5fd Mon Sep 17 00:00:00 2001
From: 吴学文 <wuxuewen@wuxuewendeMacBook-Pro.local>
Date: 星期日, 07 七月 2019 01:55:49 +0800
Subject: [PATCH] vc.copyObject 方法用错误了

---
 java110-core/src/main/java/com/java110/core/smo/community/ICommunityInnerServiceSMO.java |   31 +++++++++++++++++++++++++++++--
 1 files changed, 29 insertions(+), 2 deletions(-)

diff --git a/java110-core/src/main/java/com/java110/core/smo/community/ICommunityInnerServiceSMO.java b/java110-core/src/main/java/com/java110/core/smo/community/ICommunityInnerServiceSMO.java
index 6215bf7..e196502 100644
--- a/java110-core/src/main/java/com/java110/core/smo/community/ICommunityInnerServiceSMO.java
+++ b/java110-core/src/main/java/com/java110/core/smo/community/ICommunityInnerServiceSMO.java
@@ -3,8 +3,8 @@
 
 import com.java110.core.feign.FeignConfiguration;
 import com.java110.dto.CommunityMemberDto;
-import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.cloud.netflix.feign.FeignClient;
+import com.java110.dto.community.CommunityDto;
+import org.springframework.cloud.openfeign.FeignClient;
 import org.springframework.web.bind.annotation.RequestBody;
 import org.springframework.web.bind.annotation.RequestMapping;
 import org.springframework.web.bind.annotation.RequestMethod;
@@ -24,6 +24,24 @@
 public interface ICommunityInnerServiceSMO {
 
 
+    /**
+     * <p>鏌ヨ灏忓尯妤间俊鎭�</p>
+     *
+     *
+     * @param communityDto 鏁版嵁瀵硅薄鍒嗕韩
+     * @return CommunityDto 瀵硅薄鏁版嵁
+     */
+    @RequestMapping(value = "/queryCommunitys", method = RequestMethod.POST)
+    List<CommunityDto> queryCommunitys(@RequestBody CommunityDto communityDto);
+
+    /**
+     * 鏌ヨ<p>灏忓尯妤�</p>鎬昏褰曟暟
+     *
+     * @param communityDto 鏁版嵁瀵硅薄鍒嗕韩
+     * @return 灏忓尯涓嬬殑灏忓尯妤艰褰曟暟
+     */
+    @RequestMapping(value = "/queryCommunitysCount", method = RequestMethod.POST)
+    int queryCommunitysCount(@RequestBody CommunityDto communityDto);
 
     /**
      * 鏌ヨ灏忓尯鎴愬憳琛�
@@ -33,4 +51,13 @@
      */
     @RequestMapping(value = "/getCommunityMembers", method = RequestMethod.POST)
     List<CommunityMemberDto> getCommunityMembers(@RequestBody CommunityMemberDto communityMemberDto);
+
+    /**
+     * 鏌ヨ灏忓尯鎴愬憳鏁伴噺
+     *
+     * @param communityMemberDto 灏忓尯鎴愬憳鏁版嵁灏佽
+     * @return CommunityMemberDto 鏁版嵁
+     */
+    @RequestMapping(value = "/getCommunityMemberCount", method = RequestMethod.POST)
+    int getCommunityMemberCount(@RequestBody CommunityMemberDto communityMemberDto);
 }

--
Gitblit v1.8.0