RQHTTPService+RQGetSelectMiQuestionInfoList.h 607 B

123456789101112131415161718192021222324252627
  1. //
  2. // RQHTTPService+RQGetSelectMiQuestionInfoList.h
  3. // SDJK
  4. //
  5. // Created by 张嵘 on 2022/6/28.
  6. //
  7. #import "RQHTTPService.h"
  8. typedef NS_ENUM(NSUInteger, RQMiQuestionType) {
  9. /// 秘卷一
  10. RQMiQuestionType_One = 3,
  11. /// 秘卷二
  12. RQMiQuestionType_Two,
  13. };
  14. NS_ASSUME_NONNULL_BEGIN
  15. @interface RQHTTPService (RQGetSelectMiQuestionInfoList)
  16. /**
  17. 查询秘密卷
  18. @return Returns a signal which will send complete, or error.
  19. */
  20. - (RACSignal *)getSelectMiQuestionInfoListWithCategory:(RQMiQuestionType)category gs:(NSString *)gs kemu:(NSString *)kemu;
  21. @end
  22. NS_ASSUME_NONNULL_END