|
@@ -257,7 +257,7 @@ public class GameUserRoleServiceImpl extends ServiceImpl<GameUserRoleMapper, Gam
|
|
|
//下载查询
|
|
|
WebExcelUtil.httpExport(response, "玩家角色", GameUserRoleExcelVO.class, ((pageNumber, pageSize) -> {
|
|
|
//查询订单
|
|
|
- return page(param.toPage(), new QueryWrapper<GameUserRole>().lambda()
|
|
|
+ return page(new Page<>(pageNumber, pageSize), new QueryWrapper<GameUserRole>().lambda()
|
|
|
.in(CollectionUtils.isNotEmpty(userIdSet), GameUserRole::getUserId, userIdSet)
|
|
|
.in(CollectionUtils.isNotEmpty(serverIdList), GameUserRole::getServerId, serverIdList)
|
|
|
.in(gameMap != null, GameUserRole::getGameId, gameMap != null ? gameMap.keySet() : null)
|