|  | @@ -124,6 +124,14 @@ public class TeacherImLiveBroadcastRoomController extends BaseController {
 | 
	
		
			
				|  |  |          return succeed(imLiveBroadcastRoomService.queryRoomLimitOnlineUserInfo(roomUid));
 | 
	
		
			
				|  |  |      }
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | +    @ApiOperation("设置是否允许连麦")
 | 
	
		
			
				|  |  | +    @GetMapping("/whetherMic")
 | 
	
		
			
				|  |  | +    public HttpResponseResult<Object> whetherMic(@ApiParam(value = "房间uid", required = true) String roomUid,
 | 
	
		
			
				|  |  | +                                                 @ApiParam(value = "是否连麦 0:是 1否", required = true) Integer whetherMic) {
 | 
	
		
			
				|  |  | +        imLiveBroadcastRoomService.whetherMic(roomUid,whetherMic);
 | 
	
		
			
				|  |  | +        return succeed();
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |      @ApiOperation("查询直播间商品订单列表")
 | 
	
		
			
				|  |  |      @GetMapping("/queryLiveRoomGoodsOrderList")
 | 
	
		
			
				|  |  |      public HttpResponseResult<PageInfo<LiveRoomGoodsOrderVo>> queryLiveRoomGoodsOrderList(LiveRoomGoodsOrderQueryInfo queryInfo) {
 |