RQHTTPService+RQVipCode.h 505 B

123456789101112131415161718192021222324252627
  1. //
  2. // RQHTTPService+RQVipCode.h
  3. // SDJK
  4. //
  5. // Created by 张嵘 on 2021/10/12.
  6. //
  7. #import "RQHTTPService.h"
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface RQHTTPService (RQVipCode)
  10. /**
  11. 用户激活码激活
  12. @param vipCode 激活码
  13. @return Returns a signal which will send complete, or error.
  14. */
  15. - (RACSignal *)putVipCodeWithVipCode:(NSString *)vipCode;
  16. /**
  17. 查询激活码列表
  18. @return Returns a signal which will send complete, or error.
  19. */
  20. - (RACSignal *)getVipCodeList;
  21. @end
  22. NS_ASSUME_NONNULL_END