// // RQHTTPService+RQAppCollectionByUser.h // NiuBi // // Created by 张嵘 on 2023/3/30. // app恢复云端收藏到本机(根据用户获取收藏题) #import "RQHTTPService.h" #define RQ_GET_AppCollectionByUser @"/sdjk-admin/student/question/collection/collectionByUser" NS_ASSUME_NONNULL_BEGIN @interface RQHTTPService (RQAppCollectionByUser) /** app恢复云端收藏到本机(根据用户获取收藏题) @param subject 考试科目(1、2、3、4) @return Returns a signal which will send complete, or error. */ - (RACSignal *)getAppCollectionByUserWithSubject:(RQHomePageSubjectType)subject; @end NS_ASSUME_NONNULL_END