From 07ba29f8b474c102cda0e1e5549b1ca1c90ca16b Mon Sep 17 00:00:00 2001 From: tangxiaobao <303826152@qq.com> Date: 星期四, 05 八月 2021 18:55:35 +0800 Subject: [PATCH] Merge branch 'txb' --- springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/service/UserService.java | 22 +++++++++++++++++++++- 1 files changed, 21 insertions(+), 1 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/service/UserService.java b/springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/service/UserService.java index 0088aea..bb5f2b1 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/service/UserService.java +++ b/springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/service/UserService.java @@ -14,6 +14,7 @@ import com.panzhihua.common.model.vos.SystemmanagementConfigVO; import com.panzhihua.common.model.vos.shop.ShopStoreVO; import com.panzhihua.common.model.vos.user.*; +import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestParam; @@ -193,7 +194,7 @@ * 用户协议 * @return 协议集合 */ - R listAgreement(); + R listAgreement(Long communityId); /** * 编辑用户协议 * @param sysUserAgreementVO 编辑内容 @@ -460,4 +461,23 @@ R gridMemberEditStatus(EventGridMemberEditStatusDTO gridMemberEditDTO); R noTips(Long userId); + + /** + * 查询社区的收益说明 + * @param communityId 社区id + * @return 收益说明 + */ + R listAgreements(Long communityId); + + R getGridIsOk(Long userId); + + R getGridsMemberList(Long communityId); + + /** + * 根据用户id查询用户openid + * @param userId 用户id + * @return openid + */ + R getUserOpenId(Long userId); + } -- Gitblit v1.7.1