RQHTTPService+RQAppWrongByUser.h 640 B

123456789101112131415161718192021222324
  1. //
  2. // RQHTTPService+RQAppWrongByUser.h
  3. // NiuBi
  4. //
  5. // Created by 张嵘 on 2023/3/30.
  6. // app恢复云端错题到本机(根据用户获取错题)
  7. #import "RQHTTPService.h"
  8. #define RQ_GET_AppWrongByUser @"/sdjk-admin/student/question/wrong/wrongByUser"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface RQHTTPService (RQAppWrongByUser)
  11. /**
  12. app恢复云端错题到本机(根据用户获取错题)
  13. @param subject 考试科目(1、2、3、4)
  14. @return Returns a signal which will send complete, or error.
  15. */
  16. - (RACSignal *)getAppWrongByUserWithSubject:(RQHomePageSubjectType)subject;
  17. @end
  18. NS_ASSUME_NONNULL_END