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