linwe
2023-12-23 55d677758efadb6d42e6d4e595cecc2c50c20d5a
src/main/java/org/springblade/modules/system/mapper/UserMapper.java
@@ -22,6 +22,7 @@
import org.apache.ibatis.annotations.Param;
import org.springblade.modules.system.excel.UserExcel;
import org.springblade.modules.system.entity.User;
import org.springblade.modules.system.vo.UserVO;
import java.util.List;
@@ -61,4 +62,17 @@
    */
   List<UserExcel> exportUser(@Param("ew") Wrapper<User> queryWrapper);
   /**
    * 按条件查询用户信息
    * @param user
    * @return
    */
    List<UserVO> getUserListByParam(@Param("user") UserVO user);
   /**
    * 通过小区Id搜索用户
    * @param districtId
    * @return
    */
    List<User> searchUserByDistrictId(String districtId);
}