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