zrj
2024-07-03 0b1e9e70818f0e3eb32dd6c029d42d93236ecdc6
src/main/java/org/springblade/modules/system/mapper/UserMapper.java
@@ -66,6 +66,7 @@
   /**
    * 按条件查询用户信息
    *
    * @param user
    * @return
    */
@@ -73,6 +74,7 @@
   /**
    * 通过小区Id搜索用户
    *
    * @param districtId
    * @return
    */
@@ -80,6 +82,7 @@
   /**
    * 根据手机号查询对应账号和手机号的用户信息
    *
    * @param phoneNumber
    * @return
    */
@@ -87,6 +90,7 @@
   /**
    * 用户详情接口
    *
    * @param userId
    * @return
    */
@@ -99,4 +103,23 @@
   UserVO searchUserById(Long id);
   List<UserEntity> getUserInfoByDistrictId(String districtId, String building);
   /**
    * 查询没有匹配的数据
    *
    * @return
    */
   List<User> getNotBindUserDept();
   List<User> getUserListByDeptIds(@Param("deptIds") String receiveDept);
   List<User> getUserInfoByPropertyId(String deptId, String roleId);
   /**
    *
    * 多个小区id查询用户
    * @param list
    * @return
    */
   List<User> getUserInfoByDistrictIds(@Param("list") List<String> list);
}