RQHTTPService+RQGetPlaceVipList.h 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // RQHTTPService+RQGetPlaceVipList.h
  3. // JiaPei
  4. //
  5. // Created by 张嵘 on 2023/4/20.
  6. // 查询当前用户考试会员列表
  7. #import "RQHTTPService.h"
  8. NS_ASSUME_NONNULL_BEGIN
  9. #define RQ_GET_PlaceVipList @"https://jsjp-admin.zzxcx.net/jsjp-admin/open-api/vip/exam/list"
  10. @interface RQPlaceVipListModel : RQBaseModel
  11. @property (nonatomic , copy) NSString * createTime;
  12. @property (nonatomic , copy) NSString * updateTime;
  13. @property (nonatomic , assign) NSInteger id;
  14. @property (nonatomic , assign) NSInteger isVip;
  15. @property (nonatomic , assign) NSInteger userId;
  16. @property (nonatomic , copy) NSString * unionId;
  17. @property (nonatomic , assign) NSInteger examId;
  18. @property (nonatomic , copy) NSString * examName;
  19. @end
  20. @interface RQHTTPService (RQGetPlaceVipList)
  21. /**
  22. 查询当前用户考试会员列表
  23. @return Returns a signal which will send complete, or error.
  24. */
  25. - (RACSignal *)getPlaceVipList;
  26. @end
  27. NS_ASSUME_NONNULL_END