完成 getAllGroupIds 逻辑
This commit is contained in:
parent
5c28ec5f27
commit
12f3e2be88
|
|
@ -112,6 +112,7 @@ public class GroupServiceImpl implements IGroupService
|
||||||
@Override
|
@Override
|
||||||
public List<Long> getAllGroupIds()
|
public List<Long> getAllGroupIds()
|
||||||
{
|
{
|
||||||
return null;
|
List<Group> groupList = groupDomain.selectGroupList(new Group());
|
||||||
|
return groupList.stream().map(Group::getGroupId).toList();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Loading…
Reference in New Issue