Files
real-e-party-iOS/YuMi/Modules/YMRoom/Api/Api+SuperAdmin.h
edwinQQQ a35a711be6 chore: Initial clean commit
- Removed YuMi/Library/ (138 MB, not tracked)
- Removed YuMi/Resources/ (23 MB, not tracked)
- Removed old version assets (566 files, not tracked)
- Excluded Pods/, xcuserdata/ and other build artifacts
- Clean repository optimized for company server deployment
2025-10-09 16:19:14 +08:00

25 lines
819 B
Objective-C
Raw Permalink 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