1234567891011121314151617181920212223 |
- //
- // RQHTTPService+RQGetPassRate.h
- // jiaPei
- //
- // Created by 张嵘 on 2022/8/22.
- // Copyright © 2022 JCZ. All rights reserved.
- //
- #import "RQHTTPService.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface RQHTTPService (RQGetPassRate)
- /**
- 获取考试通过率
- @return Returns a signal which will send complete, or error.
- */
- - (RACSignal *)getPassRate;
- - (RACSignal *)getPassRateWithSubject:(RQHomePageSubjectType)subject carType:(RQHomePageCarType)carType;
- @end
- NS_ASSUME_NONNULL_END
|