// // RQHTTPService+RQVipCode.h // SDJK // // Created by 张嵘 on 2021/10/12. // #import "RQHTTPService.h" NS_ASSUME_NONNULL_BEGIN @interface RQHTTPService (RQVipCode) /** 用户激活码激活 @param vipCode 激活码 @return Returns a signal which will send complete, or error. */ - (RACSignal *)putVipCodeWithVipCode:(NSString *)vipCode; /** 查询激活码列表 @return Returns a signal which will send complete, or error. */ - (RACSignal *)getVipCodeList; @end NS_ASSUME_NONNULL_END