// // RQHTTPService+RQGetPlaceVipList.h // JiaPei // // Created by 张嵘 on 2023/4/20. // 查询当前用户考试会员列表 #import "RQHTTPService.h" NS_ASSUME_NONNULL_BEGIN #define RQ_GET_PlaceVipList @"https://jsjp-admin.zzxcx.net/jsjp-admin/open-api/vip/exam/list" @interface RQPlaceVipListModel : RQBaseModel @property (nonatomic , copy) NSString * createTime; @property (nonatomic , copy) NSString * updateTime; @property (nonatomic , assign) NSInteger id; @property (nonatomic , assign) NSInteger isVip; @property (nonatomic , assign) NSInteger userId; @property (nonatomic , copy) NSString * unionId; @property (nonatomic , assign) NSInteger examId; @property (nonatomic , copy) NSString * examName; @end @interface RQHTTPService (RQGetPlaceVipList) /** 查询当前用户考试会员列表 @return Returns a signal which will send complete, or error. */ - (RACSignal *)getPlaceVipList; @end NS_ASSUME_NONNULL_END