RQHTTPService+RQRecommendCode.h 524 B

123456789101112131415161718192021222324
  1. //
  2. // RQHTTPService+RQRecommendCode.h
  3. // SDJK
  4. //
  5. // Created by 张嵘 on 2022/10/12.
  6. //
  7. #import "RQHTTPService.h"
  8. /// 用户推荐码绑定
  9. #define RQ_GET_Recommend_Code @"student/recommend/code"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface RQHTTPService (RQRecommendCode)
  12. /**
  13. 用户推荐码绑定
  14. @param recommendCode 推荐码
  15. @return Returns a signal which will send complete, or error.
  16. */
  17. - (RACSignal *)getRecommendCodeWithRecommendCode:(NSString *)recommendCode;
  18. @end
  19. NS_ASSUME_NONNULL_END