From 2e64c232ab6b51b2cecf1ee96e1e9b709234f326 Mon Sep 17 00:00:00 2001 From: huanghongfa <huanghongfa123456> Date: 星期六, 21 八月 2021 16:35:14 +0800 Subject: [PATCH] 随手拍改版接口开发 --- springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComActUserWalletMapper.java | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComActUserWalletMapper.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComActUserWalletMapper.java index 7b1c639..e904b37 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComActUserWalletMapper.java +++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComActUserWalletMapper.java @@ -21,7 +21,9 @@ @Mapper public interface ComActUserWalletMapper extends BaseMapper<ComActUserWalletDO> { - Map<String,String> getCommunityName(@Param("communityId") Long communityId); + Map<String,String> getCommunityName(@Param("communityId") Long communityId,@Param("type") Integer type); + + Map<String,String> getAgreementContent(@Param("communityId") Long communityId,@Param("type") Integer type); /** * 查询用户绑定的社区收益排行榜 @@ -37,6 +39,6 @@ */ IPage<ComActWalletAdminVO> getUserWalletList(Page page, @Param("pageWalletAdminDTO") PageComActWalletAdminDTO pageWalletAdminDTO); - void insertSysAgreement(@Param("content") String content,@Param("communityId") Long communityId); + void insertSysAgreement(@Param("content") String content,@Param("name") String name,@Param("communityId") Long communityId,@Param("type") Integer type); } -- Gitblit v1.7.1