RQVideoVipModel.h 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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 到期时间
  21. @property (nonatomic , readwrite, copy) NSString * subject1;
  22. /// 科目2 到期时间
  23. @property (nonatomic , readwrite, copy) NSString * subject2;
  24. /// 科目3 到期时间
  25. @property (nonatomic , readwrite, copy) NSString * subject3;
  26. /// 科目4 到期时间
  27. @property (nonatomic , readwrite, copy) NSString * subject4;
  28. /// 用户ID
  29. @property (nonatomic , readwrite, assign) NSInteger userId;
  30. /// 用户名
  31. @property (nonatomic , readwrite, copy) NSString * userName;
  32. /// 密文
  33. @property (nonatomic , readwrite, copy) NSString * sign;
  34. @end
  35. NS_ASSUME_NONNULL_END