RQVideoVipModel.h 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. //
  2. // RQVideoVipModel.h
  3. // jiaPei
  4. //
  5. // Created by 张嵘 on 2022/3/4.
  6. // Copyright © 2022 JCZ. All rights reserved.
  7. //
  8. #import "RQBaseModel.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface RQVideoVipModel : RQBaseModel
  11. @property (nonatomic , readwrite, assign) NSInteger id;
  12. /// 科目1 0未开通 1已开通
  13. @property (nonatomic , readwrite, assign) NSInteger subject1Int;
  14. /// 科目2 0未开通 1已开通
  15. @property (nonatomic , readwrite, assign) NSInteger subject2Int;
  16. /// 科目3 0未开通 1已开通
  17. @property (nonatomic , readwrite, assign) NSInteger subject3Int;
  18. /// 科目4 0未开通 1已开通
  19. @property (nonatomic , readwrite, assign) NSInteger subject4Int;
  20. /// 科目1特训 0未开通 1已开通
  21. @property (nonatomic , readwrite, assign) NSInteger spSubject1Int;
  22. /// 科目4特训 0未开通 1已开通
  23. @property (nonatomic , readwrite, assign) NSInteger spSubject4Int;
  24. /// 科目1 到期时间
  25. @property (nonatomic , readwrite, copy) NSString * subject1;
  26. /// 科目2 到期时间
  27. @property (nonatomic , readwrite, copy) NSString * subject2;
  28. /// 科目3 到期时间
  29. @property (nonatomic , readwrite, copy) NSString * subject3;
  30. /// 科目4 到期时间
  31. @property (nonatomic , readwrite, copy) NSString * subject4;
  32. /// 科目1特训包 到期时间
  33. @property (nonatomic , readwrite, copy) NSString * spSubject1;
  34. /// 科目4特训包 到期时间
  35. @property (nonatomic , readwrite, copy) NSString * spSubject4;
  36. /// 用户ID
  37. @property (nonatomic , readwrite, assign) NSInteger userId;
  38. /// 用户名
  39. @property (nonatomic , readwrite, copy) NSString * userName;
  40. /// 密文
  41. @property (nonatomic , readwrite, copy) NSString * sign;
  42. @end
  43. NS_ASSUME_NONNULL_END