puhanshu
2022-04-14 7bfa6a85ad6a6c537b0f7ddb9f6a8795c8e8c866
springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/dao/UserDao.java
@@ -232,7 +232,7 @@
     * @param userId
     * @return
     */
    int countSocialOrg(Long userId);
    Long countSocialOrg(Long userId);
    /**
@@ -242,4 +242,33 @@
     * @return
     */
    int countFmsMember(@Param("phone") String phone, @Param("communityId") Long userCommunityId);
    /**
     * 查询街道信息
     * @param streetId
     * @return
     */
    ComStreetVO selectStreetById(@Param("streetId") Long streetId);
    /**
     * 查询是否是社会组织成员
     * @param userId
     * @return
     */
    int countSocialOrgMember(@Param("userId") Long userId);
    /**
     * 查询是否社会组织联系人
     * @param phone
     * @return
     */
    int countOrgNum(@Param("phone") String phone);
    /**
     * 查询是否人大代表
     * @param phone
     * @param userCommunityId
     * @return
     */
    int selectCountDpc(@Param("phone") String phone, @Param("userCommunityId") Long userCommunityId);
}