完成 getAllGroupIds 逻辑

This commit is contained in:
孙小云 2026-01-20 14:44:54 +08:00
parent 5c28ec5f27
commit 12f3e2be88
1 changed files with 2 additions and 1 deletions

View File

@ -112,6 +112,7 @@ public class GroupServiceImpl implements IGroupService
@Override
public List<Long> getAllGroupIds()
{
return null;
List<Group> groupList = groupDomain.selectGroupList(new Group());
return groupList.stream().map(Group::getGroupId).toList();
}
}