|
@@ -517,7 +517,7 @@ public class GameServiceImpl extends ServiceImpl<GameMapper, Game> implements Ga
|
|
|
.eq(cpId != null, Game::getCpId, cpId)
|
|
|
.eq(gameId != null, Game::getId, gameId)
|
|
|
.eq(gameCategoryId != null, Game::getCategory, gameCategoryId)
|
|
|
- .select(Game::getId, Game::getCpId, Game::getName)
|
|
|
+ .select(Game::getId, Game::getCpId, Game::getName, Game::getCategory)
|
|
|
);
|
|
|
return BeanUtils.copyList(gameList, GameDTO.class);
|
|
|
}
|