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