// // RQHTTPService+RQGetActivation.h // jiaPei // // Created by 张嵘 on 2023/1/14. // Copyright © 2023 JCZ. All rights reserved. // #import "RQHTTPService.h" #define RQ_GET_Activation @"https://jsjp-admin.zzxcx.net/jsjp-admin/open-api/gzpt/userInfo/activa" @interface RQActivationModel : RQBaseModel /// 是否激活 0未激活 1已激活 2 已退款 @property (nonatomic , readwrite, assign) NSInteger isActive; /// 是否合作 0未合作 1已合作 @property (nonatomic , readwrite, assign) BOOL isShare; /// 用户ID @property (nonatomic , readwrite, assign) NSInteger userId; @end NS_ASSUME_NONNULL_BEGIN @interface RQHTTPService (RQGetActivation) /** 获取学员合作与激活状态 @param userId 用户Id @return Returns a signal which will send complete, or error. */ - (RACSignal *)getActivationWithUserId:(NSString *)userId; @end NS_ASSUME_NONNULL_END