// // RQHTTPService+RQGetMyQuestionFavs.h // jiaPei // // Created by 张嵘 on 2022/8/23. // Copyright © 2022 JCZ. All rights reserved. // #import "RQHTTPService.h" /// 新增题目记录 #define RQ_POST_GetMyQuestionFavs @"student/getMyQuestionFavs" NS_ASSUME_NONNULL_BEGIN @interface RQHTTPService (RQGetMyQuestionFavs) /** 获取题目记录 @return Returns a signal which will send complete, or error. */ - (RACSignal *)getMyQuestionFavs; @end NS_ASSUME_NONNULL_END