MySetViewController.h 436 B

1234567891011121314151617181920
  1. //
  2. // MySetViewController.h
  3. // 双子星云手机
  4. //
  5. // Created by APPLE on 2023/8/17.
  6. //
  7. #import "BaseViewController.h"
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface MySetViewController : BaseViewController
  10. /**
  11. * @brief 云机状态( 0:不存在 1:有效时间 2:有效时间不足 3:过期未回收 ) 1、2为VIP状态 0、3 非VIP状态
  12. */
  13. @property(nonatomic, assign)NSInteger whetherPhoneStatus;
  14. @end
  15. NS_ASSUME_NONNULL_END