From cdca957e4835e359a89fe4c7c9833ab0c78ee4e3 Mon Sep 17 00:00:00 2001 From: lidongdong <1459917685@qq.com> Date: 星期一, 01 四月 2024 11:18:10 +0800 Subject: [PATCH] 修改西区uu洗车登录接口500 7 --- springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/dao/UserDao.java | 32 ++++++++++++++++++++++++++++++++ 1 files changed, 32 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..999487c 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); @@ -379,6 +383,8 @@ List<StreetVOS> selectStreetByAreaCode(Integer code); + List<StreetVOStr> selectStreetByAreaCodeStr(Integer code); + List<StreetVO> selectStreetsByAreaCode(Integer code); ComActAcidCheckRecordVO selectComActAcidCheckRecordById(Long id); @@ -423,8 +429,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