123456789101112131415161718192021222324 |
- //
- // RQHTTPService+RQCollections.h
- // NiuBi
- //
- // Created by 张嵘 on 2023/3/30.
- // 合并本机和云端收藏
- #import "RQHTTPService.h"
- #define RQ_POST_Collections @"/sdjk-admin/student/question/collection/collections"
- NS_ASSUME_NONNULL_BEGIN
- @interface RQHTTPService (RQCollections)
- /**
- 合并本机和云端收藏
- @param subject 考试科目(1、2、3、4)
- @return Returns a signal which will send complete, or error.
- */
- - (RACSignal *)postCollectionsWithSubject:(RQHomePageSubjectType)subject;
- @end
- NS_ASSUME_NONNULL_END
|