From 63d368fffeb8872e9528f56cf6dfb35fa4f50f80 Mon Sep 17 00:00:00 2001 From: huanghongfa <huanghongfa123456> Date: 星期四, 30 九月 2021 09:30:45 +0800 Subject: [PATCH] bug修复 --- springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/dao/UserDao.java | 22 ++++++++++++++++++++++ 1 files changed, 22 insertions(+), 0 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/dao/UserDao.java b/springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/dao/UserDao.java index acba7d8..4666d7f 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/dao/UserDao.java +++ b/springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/dao/UserDao.java @@ -6,6 +6,8 @@ import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; +import org.apache.ibatis.annotations.*; +import org.apache.ibatis.annotations.Param; import org.springframework.web.bind.annotation.RequestParam; import com.baomidou.mybatisplus.core.mapper.BaseMapper; @@ -166,4 +168,24 @@ int putUserTag(@Param("sysUserDO") SysUserDO sysUserDO); + /** + * 禁用/启用便民服务商家账号 + * @param status + * @param userIds + * @return + */ + int disableOrEnableMerchantUsers(@Param("status") Integer status, @Param("userIds") List<Long> userIds); + + /** + * 根据手机号维护社区团队表是否注册 + * @param phone 手机号 + */ + void judgeCommunityTeam(@Param("phone") String phone); + + /** + * 根据手机号查询社区团队表中用户数量 + * @param phone 手机号 + * @return 用户数量 + */ + Integer getCommunityTeamCount(@Param("phone") String phone); } -- Gitblit v1.7.1