From 70d2a5d0f9c6951b2d4cac954041ed73582ff7eb Mon Sep 17 00:00:00 2001 From: liujie <1793218484@qq.com> Date: 星期一, 09 六月 2025 11:54:00 +0800 Subject: [PATCH] 6.9新增登录失败冻结逻辑 --- 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