PhonePackageModel.h 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. //
  2. // PhonePackageModel.h
  3. // VclustersGemini
  4. //
  5. // Created by APPLE on 2020/7/27.
  6. // Copyright © 2020 APPLE. All rights reserved.
  7. //
  8. #import "SuperModel.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface PhonePackageModel : SuperModel
  11. @property (nonatomic,assign) CGFloat actualPrice;/*实际价格*/
  12. @property (nonatomic,assign) CGFloat originalPrice;/*原价*/
  13. @property (nonatomic,assign) NSInteger effectiveTime;/*时长*/
  14. @property (nonatomic,copy) NSString *createTime;/*创建时间*/
  15. @property (nonatomic,copy) NSString *title;/*标签*/
  16. @property (nonatomic,assign) NSInteger ID;/*套餐id*/
  17. @end
  18. @protocol PhonePackageModel;
  19. @interface PhonePackageListModel : SuperModel
  20. @property (nonatomic,copy) NSArray <PhonePackageModel>*menuRuleVOList;/*套餐列表*/
  21. /**
  22. * @brief 特权信息
  23. */
  24. @property(nonatomic, copy)NSArray *privilegeList;
  25. /**
  26. * @brief 云机剩余时长 单位秒S
  27. */
  28. @property (nonatomic, assign) NSInteger cloudPhoneTime;
  29. /**
  30. * @brief 过期时间yyyy-mm-dd hh:MM:SS
  31. */
  32. @property(nonatomic, copy)NSString *exceptSourceTime;
  33. /**
  34. * @brief 过期时间yyyy-mm-dd
  35. */
  36. @property(nonatomic, copy)NSString *exceptTime;
  37. @end
  38. @interface PhonePackageDataModel : SuperModel
  39. @property(nonatomic, copy)PhonePackageListModel *data;
  40. @end
  41. NS_ASSUME_NONNULL_END