Commit 6725c425 by guojuxing

如果分组查询没有数据,则返回空

parent ac7457e8
......@@ -330,7 +330,7 @@ public class UserApiServiceImpl implements UserApiService {
params.setUserIdList(userIdList);
}
//如果是空的,则返回空
if (CollectionUtils.isNotEmpty(params.getUserIdList())) {
if (CollectionUtils.isEmpty(params.getUserIdList())) {
return ServiceResponse.success(new Page<>());
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment