PhoneTimeInfoModel.h 1006 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. //
  2. // PhoneTimeInfoModel.h
  3. // VclustersGemini
  4. //
  5. // Created by APPLE on 2020/10/9.
  6. // Copyright © 2020 APPLE. All rights reserved.
  7. //
  8. #import "SuperModel.h"
  9. #import "BGFMDB.h" //添加该头文件,本类就具有了存储功能.
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface PhoneTimeInfoModel : SuperModel
  12. /**
  13. * @brief 云机剩余时长 单位秒S
  14. */
  15. @property (nonatomic, assign) NSInteger cloudPhoneTime;
  16. /**
  17. * @brief 赠送时长 单位秒S
  18. */
  19. @property(nonatomic, assign)NSInteger experienceTime;
  20. /**
  21. * @brief 弹窗提醒多少天回收云机
  22. */
  23. @property(nonatomic, assign)NSInteger expirationReminder;
  24. /**
  25. * @brief 特权信息
  26. */
  27. @property(nonatomic, copy)NSArray *privilegeList;
  28. /**
  29. * @brief 云机状态( 0:不存在 1:有效时间 2:有效时间不足 3:过期未回收 )
  30. */
  31. @property(nonatomic, assign)NSInteger whetherPhoneStatus;
  32. @end
  33. @interface PhoneTimeInfoDataModel : SuperModel
  34. @property(nonatomic, copy)PhoneTimeInfoModel *data;
  35. @end
  36. NS_ASSUME_NONNULL_END