From 786deefd0e3c99a2042a024d3b60a02b0effc356 Mon Sep 17 00:00:00 2001 From: lidongdong <1459917685@qq.com> Date: 星期四, 27 六月 2024 10:09:41 +0800 Subject: [PATCH] 花城 修改单位管理员逻辑 --- springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/dao/UserDao.java | 14 ++++++++++++++ 1 files changed, 14 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 4ec179b..c2bd855 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 @@ -328,6 +328,13 @@ Integer selectOrgAdmin(@Param("phone") String phone); /** + * 查询绑定单位id + * @param phone + * @return + */ + Long selectOrgAdminId(@Param("phone") String phone); + + /** * 查询报道单位id * * @param phone @@ -382,6 +389,8 @@ List<StreetVOS> selectStreetByAreaCode(Integer code); + + List<StreetVOStr> selectStreetByAreaCodeStr(Integer code); List<StreetVO> selectStreetsByAreaCode(Integer code); @@ -443,6 +452,9 @@ */ Long isPropertyAccount(String phone); + + String getCommunityAppId(Long communityId); + /** * 判读是否为自提点账号 * @@ -452,4 +464,6 @@ int checkPoint(String phone); ComShopUserAddressVO selectDefaultAddressVO(@Param("userId") String userId); + + Long selectStoreIdIdByUserId(@Param("userId") Long userId); } -- Gitblit v1.7.1