Files
peko-ios/YuMi/Modules/YMRoom/Api/Api+SuperAdmin.h
2025-01-22 21:22:58 +08:00

25 lines
819 B
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// Api+SuperAdmin.h
// YuMi
//
// Created by P on 2025/1/17.
//
#import "Api.h"
NS_ASSUME_NONNULL_BEGIN
@interface Api(SuperAdmin)
// type: 操作类型 1、解除进房限制2、锁麦3、闭麦4、抱TA下麦5、踢出房间6、加入黑名单7、关闭房间8、隐藏房间9、关闭公屏消息10、开启公屏消息11、移除黑名单
+ (void)superAdminOperate:(HttpRequestHelperCompletion)complection
uid:(NSString *)uid
roomUid:(NSString *)roomUid
targetUid:(NSString *)targetUid
operateType:(NSNumber *)type;
// type: 0.关闭隐藏 1.开启隐藏
+ (void)superAdminOperateRoom:(HttpRequestHelperCompletion)complection roomUid:(NSString *)roomUid type:(NSNumber *)type;
@end
NS_ASSUME_NONNULL_END