|  | @@ -6,6 +6,7 @@ import com.baomidou.mybatisplus.core.conditions.update.LambdaUpdateWrapper;
 | 
	
		
			
				|  |  |  import com.baomidou.mybatisplus.core.metadata.IPage;
 | 
	
		
			
				|  |  |  import com.baomidou.mybatisplus.core.toolkit.CollectionUtils;
 | 
	
		
			
				|  |  |  import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
 | 
	
		
			
				|  |  | +import com.zanxiang.erp.security.util.SecurityUtil;
 | 
	
		
			
				|  |  |  import com.zanxiang.game.module.base.pojo.dto.H5GameConfigDTO;
 | 
	
		
			
				|  |  |  import com.zanxiang.game.module.base.pojo.enums.GameCategoryEnum;
 | 
	
		
			
				|  |  |  import com.zanxiang.game.module.manage.enums.GameStatusEnum;
 | 
	
	
		
			
				|  | @@ -232,7 +233,7 @@ public class GameServiceImpl extends ServiceImpl<GameMapper, Game> implements IG
 | 
	
		
			
				|  |  |              return Collections.emptyList();
 | 
	
		
			
				|  |  |          }
 | 
	
		
			
				|  |  |          return super.list(new LambdaQueryWrapper<Game>()
 | 
	
		
			
				|  |  | -                .in(Game::getId, tuple2.getT2())
 | 
	
		
			
				|  |  | +                .in(!SecurityUtil.isAdmin(), Game::getId, tuple2.getT2())
 | 
	
		
			
				|  |  |                  .select(Game::getId, Game::getName, Game::getCategory))
 | 
	
		
			
				|  |  |                  .stream()
 | 
	
		
			
				|  |  |                  .map(game -> BeanUtil.copy(game, GameChoiceVO.class))
 |