oa小程序 - 通讯录查询部门添加新接口。用于显示部门

This commit is contained in:
Echo 2025-07-08 09:24:23 +08:00
parent 09c68cb3fe
commit f9ff1be782

View File

@ -339,6 +339,8 @@ public class AdminUserServiceImpl implements AdminUserService {
Set<Long> set = null ;
if(deptIds == null) {
set = getDeptCondition(reqVO.getDeptId());
}else {
set = new HashSet<>(deptIds) ;
}
return userMapper.selectPage(reqVO,set );
}