RQHTTPService+RQBakWrongs.h 553 B

1234567891011121314151617181920212223
  1. //
  2. // RQHTTPService+RQBakWrongs.h
  3. // NiuBi
  4. //
  5. // Created by 张嵘 on 2023/3/30.
  6. // 备份本机错题到云端
  7. #import "RQHTTPService.h"
  8. #define RQ_POST_BakWrongs @"/sdjk-admin/student/question/wrong/bakWrongs"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface RQHTTPService (RQBakWrongs)
  11. /**
  12. 备份本机错题到云端
  13. @param subject 考试科目(1、2、3、4)
  14. @return Returns a signal which will send complete, or error.
  15. */
  16. - (RACSignal *)postBakWrongsWithSubject:(RQHomePageSubjectType)subject;
  17. @end
  18. NS_ASSUME_NONNULL_END