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 | 39 +++++++++++++++++++++++++++++++++++++++ 1 files changed, 39 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 bec202b..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 @@ -9,6 +9,7 @@ import com.panzhihua.common.model.vos.community.acid.ComActAcidMemberVO; import com.panzhihua.common.model.vos.community.acid.ComActAcidRecordVO; import com.panzhihua.common.model.vos.sanshuo.ComSanshuoExpertVO; +import com.panzhihua.common.model.vos.shop.ComShopUserAddressVO; import com.panzhihua.common.model.vos.user.*; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; @@ -89,6 +90,9 @@ DataKanbanDTO selectCommunityAddUserOrder(@Param("areaCode") String areaCode, @Param("date1") Date date1); + List<UsersStatisticsDTO> selectDailyAdd(@Param("createAt") String createAt, @Param("appId") String appId); + + List<UsersStatisticsDTO> selectActive(@Param("lastLoginTime") String lastLoginTime, @Param("appId") String appId); IndexDataVO indexDataCommunityBackstage(Long communityId); @@ -324,6 +328,13 @@ Integer selectOrgAdmin(@Param("phone") String phone); /** + * 查询绑定单位id + * @param phone + * @return + */ + Long selectOrgAdminId(@Param("phone") String phone); + + /** * 查询报道单位id * * @param phone @@ -379,6 +390,8 @@ List<StreetVOS> selectStreetByAreaCode(Integer code); + List<StreetVOStr> selectStreetByAreaCodeStr(Integer code); + List<StreetVO> selectStreetsByAreaCode(Integer code); ComActAcidCheckRecordVO selectComActAcidCheckRecordById(Long id); @@ -423,8 +436,34 @@ /** * 查询两个appid的用户做更新 + * * @param userId * @return */ List<SysUserDO> selectByUserId(@Param("userId") Long userId); + + /** + * 是否为党员 + */ + int isDpcMember(@Param("phone") String phone, @Param("name") String name); + + /** + * 是否为物业公司后台账号 + */ + Long isPropertyAccount(String phone); + + + String getCommunityAppId(Long communityId); + + /** + * 判读是否为自提点账号 + * + * @param phone + * @return + */ + int checkPoint(String phone); + + ComShopUserAddressVO selectDefaultAddressVO(@Param("userId") String userId); + + Long selectStoreIdIdByUserId(@Param("userId") Long userId); } -- Gitblit v1.7.1