// // RQHTTPService+RQGetSelectMiQuestionInfoList.h // SDJK // // Created by 张嵘 on 2022/6/28. // #import "RQHTTPService.h" typedef NS_ENUM(NSUInteger, RQMiQuestionType) { /// 秘卷一 RQMiQuestionType_One = 3, /// 秘卷二 RQMiQuestionType_Two, }; NS_ASSUME_NONNULL_BEGIN @interface RQHTTPService (RQGetSelectMiQuestionInfoList) /** 查询秘密卷 @return Returns a signal which will send complete, or error. */ - (RACSignal *)getSelectMiQuestionInfoListWithCategory:(RQMiQuestionType)category gs:(NSString *)gs kemu:(NSString *)kemu; @end NS_ASSUME_NONNULL_END