Skip to content

Commit e29404f

Browse files
colorful3juzi214032
authored andcommitted
refactor(GroupServiceImpl): 补充完整泛型参数
1 parent 9432d13 commit e29404f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/io/github/talelin/latticy/service/impl/GroupServiceImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public List<Integer> getUserGroupIdsByUserId(Integer userId) {
4646

4747
@Override
4848
public IPage<GroupDO> getGroupPage(int page, int count) {
49-
Page pager = new Page(page, count);
49+
Page<GroupDO> pager = new Page<>(page, count);
5050
return this.baseMapper.selectPage(pager, null);
5151
}
5252

0 commit comments

Comments
 (0)