修正接口字段遗漏

This commit is contained in:
easonzhu 2025-03-04 13:51:24 +08:00
parent d3fadf8bbe
commit 6d22c8c3a1

View File

@ -226,7 +226,7 @@ public class AdminGroupCollectService {
String nickName = query.getNickName();
Integer isOnline = query.getIsOnline();
Integer customerStatus = query.getCustomerStatus();
Integer commentBlackStatus = query.getIsForbidden();
Integer isForbidden = query.getIsForbidden();
Set<Integer> moduleIdSet = groupCommonService.getModuleIds(groupId);
if (CollUtil.isEmpty(moduleIdSet)) {
return Pager.emptyPager();
@ -264,7 +264,7 @@ public class AdminGroupCollectService {
return vo;
}).collect(Collectors.toList());
Stream<GroupCustomerVO> voStream = list.stream();
if (nickName != null) {
if (StrUtil.isNotEmpty(nickName)) {
voStream = voStream.filter(vo -> nickName.equals(vo.getNickName()));
}
if (isOnline != null) {
@ -273,8 +273,8 @@ public class AdminGroupCollectService {
if (customerStatus != null) {
voStream = voStream.filter(vo -> customerStatus.equals(vo.getCustomerStatus()));
}
if (commentBlackStatus != null) {
voStream = voStream.filter(vo -> commentBlackStatus.equals(vo.getIsForbidden()));
if (isForbidden != null) {
voStream = voStream.filter(vo -> isForbidden.equals(vo.getIsForbidden()));
}
List<GroupCustomerVO> voList = voStream.collect(Collectors.toList());
List<GroupCustomerVO> pageList = CollUtil.page(query.getCurrent() - 1, query.getSize(), voList);