RQHTTPService+RQCollections.h 569 B

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