RQHTTPService+RQSaveBetchFavQuestion.h 645 B

1234567891011121314151617181920212223242526
  1. //
  2. // RQHTTPService+RQSaveBetchFavQuestion.h
  3. // jiaPei
  4. //
  5. // Created by 张嵘 on 2022/8/25.
  6. // Copyright © 2022 JCZ. All rights reserved.
  7. //
  8. #import "RQHTTPService.h"
  9. #define RQ_POST_SaveBetchFavQuestion @"student/saveBetchFavQuestion"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface RQHTTPService (RQSaveBetchFavQuestion)
  12. /**
  13. 新增题目记录
  14. @param questionId 题目ID
  15. @param type 1是收藏,2是错题,3是排除的题
  16. @return Returns a signal which will send complete, or error.
  17. */
  18. - (RACSignal *)saveBetchFavQuestionWithQuestionId:(NSInteger)questionId type:(RQSaveFavQuestionType)type;
  19. @end
  20. NS_ASSUME_NONNULL_END