RQHTTPService+RQGetPassRate.h 487 B

1234567891011121314151617181920212223
  1. //
  2. // RQHTTPService+RQGetPassRate.h
  3. // jiaPei
  4. //
  5. // Created by 张嵘 on 2022/8/22.
  6. // Copyright © 2022 JCZ. All rights reserved.
  7. //
  8. #import "RQHTTPService.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface RQHTTPService (RQGetPassRate)
  11. /**
  12. 获取考试通过率
  13. @return Returns a signal which will send complete, or error.
  14. */
  15. - (RACSignal *)getPassRate;
  16. - (RACSignal *)getPassRateWithSubject:(RQHomePageSubjectType)subject carType:(RQHomePageCarType)carType;
  17. @end
  18. NS_ASSUME_NONNULL_END