From cd33651deff9fff7e7d9651b766210771c075190 Mon Sep 17 00:00:00 2001
From: wfy <260536420@qq.com>
Date: 星期二, 14 九月 2021 17:26:16 +0800
Subject: [PATCH] Merge branch 'master' into wangfy-dev

---
 java110-interface/src/main/java/com/java110/intf/community/ICommunityInnerServiceSMO.java |   26 ++++++++++++++++++++++----
 1 files changed, 22 insertions(+), 4 deletions(-)

diff --git a/java110-interface/src/main/java/com/java110/intf/community/ICommunityInnerServiceSMO.java b/java110-interface/src/main/java/com/java110/intf/community/ICommunityInnerServiceSMO.java
old mode 100644
new mode 100755
index ffd3126..1d989ba
--- a/java110-interface/src/main/java/com/java110/intf/community/ICommunityInnerServiceSMO.java
+++ b/java110-interface/src/main/java/com/java110/intf/community/ICommunityInnerServiceSMO.java
@@ -1,10 +1,11 @@
 package com.java110.intf.community;
 
-
 import com.java110.config.feign.FeignConfiguration;
 import com.java110.dto.CommunityMemberDto;
 import com.java110.dto.community.CommunityAttrDto;
 import com.java110.dto.community.CommunityDto;
+import com.java110.po.community.CommunityAttrPo;
+import com.java110.po.community.CommunityPo;
 import org.springframework.cloud.openfeign.FeignClient;
 import org.springframework.web.bind.annotation.RequestBody;
 import org.springframework.web.bind.annotation.RequestMapping;
@@ -24,10 +25,8 @@
 @RequestMapping("/communityApi")
 public interface ICommunityInnerServiceSMO {
 
-
     /**
      * <p>鏌ヨ灏忓尯妤间俊鎭�</p>
-     *
      *
      * @param communityDto 鏁版嵁瀵硅薄鍒嗕韩
      * @return CommunityDto 瀵硅薄鏁版嵁
@@ -44,6 +43,7 @@
     @RequestMapping(value = "/queryCommunitysCount", method = RequestMethod.POST)
     int queryCommunitysCount(@RequestBody CommunityDto communityDto);
 
+
     /**
      * 鏌ヨ灏忓尯鎴愬憳琛�
      *
@@ -52,6 +52,16 @@
      */
     @RequestMapping(value = "/getCommunityMembers", method = RequestMethod.POST)
     List<CommunityMemberDto> getCommunityMembers(@RequestBody CommunityMemberDto communityMemberDto);
+
+
+    /**
+     * 鏌ヨ鍟嗘埛鍏ラ┗灏忓尯
+     *
+     * @param communityMemberDto 灏忓尯鎴愬憳鏁版嵁灏佽
+     * @return CommunityMemberDto 鏁版嵁
+     */
+    @RequestMapping(value = "/getStoreCommunitys", method = RequestMethod.POST)
+    List<CommunityDto> getStoreCommunitys(@RequestBody CommunityMemberDto communityMemberDto);
 
     /**
      * 鏌ヨ灏忓尯鎴愬憳鏁伴噺
@@ -64,7 +74,6 @@
 
     /**
      * <p>鏌ヨ灏忓尯妤间俊鎭�</p>
-     *
      *
      * @param communityAttrDto 鏁版嵁瀵硅薄鍒嗕韩
      * @return CommunityDto 瀵硅薄鏁版嵁
@@ -81,4 +90,13 @@
     @RequestMapping(value = "/getCommunityAttrsCount", method = RequestMethod.POST)
     int getCommunityAttrsCount(@RequestBody CommunityAttrDto communityAttrDto);
 
+
+    /**
+     * 鏌ヨ<p>灏忓尯妤�</p>鎬昏褰曟暟
+     *
+     * @param communityAttrPo 鏁版嵁瀵硅薄鍒嗕韩
+     * @return 灏忓尯涓嬬殑灏忓尯妤艰褰曟暟
+     */
+    @RequestMapping(value = "/saveCommunityAttr", method = RequestMethod.POST)
+    int saveCommunityAttr(@RequestBody CommunityAttrPo communityAttrPo);
 }

--
Gitblit v1.8.0