2023-07-14 18:50:55 +08:00
|
|
|
|
//
|
|
|
|
|
// NobleInfo.h
|
|
|
|
|
// xplan-ios
|
|
|
|
|
//
|
|
|
|
|
// Created by GreenLand on 2022/1/3.
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
#import <Foundation/Foundation.h>
|
2024-03-29 19:18:58 +08:00
|
|
|
|
#import "PINobleRebateModel.h"
|
2023-07-14 18:50:55 +08:00
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
|
2023-11-15 17:25:09 +08:00
|
|
|
|
@interface NobleInfo : PIBaseModel
|
2023-07-14 18:50:55 +08:00
|
|
|
|
|
|
|
|
|
///是否敬请期待:1. 否 2.是
|
|
|
|
|
@property (nonatomic, assign) NSInteger comingSoon;
|
2024-04-11 15:47:44 +08:00
|
|
|
|
///VIP保级值
|
2023-07-14 18:50:55 +08:00
|
|
|
|
@property (nonatomic, assign) NSInteger levelKeepScore;
|
2024-04-11 15:47:44 +08:00
|
|
|
|
///VIP升级值
|
2023-07-14 18:50:55 +08:00
|
|
|
|
@property (nonatomic, assign) NSInteger levelUpScore;
|
|
|
|
|
|
|
|
|
|
@property (nonatomic, copy) NSString *ownAuthTypeStr;
|
|
|
|
|
///有用的权限type列表
|
|
|
|
|
@property (nonatomic, copy) NSArray<NSNumber *> *ownAuthTypes;
|
2024-04-11 15:47:44 +08:00
|
|
|
|
///VIPicon
|
2023-07-14 18:50:55 +08:00
|
|
|
|
@property (nonatomic, copy) NSString *vipIcon;
|
2024-04-11 15:47:44 +08:00
|
|
|
|
///VIP等级
|
2023-07-14 18:50:55 +08:00
|
|
|
|
@property (nonatomic, assign) NSInteger vipLevel;
|
2024-04-11 15:47:44 +08:00
|
|
|
|
///VIPlogo
|
2023-07-14 18:50:55 +08:00
|
|
|
|
@property (nonatomic, copy) NSString *vipLogo;
|
2024-04-11 15:47:44 +08:00
|
|
|
|
///VIP名称
|
2023-07-14 18:50:55 +08:00
|
|
|
|
@property (nonatomic, copy) NSString *vipName;
|
2024-03-29 19:18:58 +08:00
|
|
|
|
///返钻
|
|
|
|
|
@property(nonatomic,copy) NSArray<PINobleRebateModel *> *returnProfits;
|
2023-07-14 18:50:55 +08:00
|
|
|
|
|
2024-03-29 19:18:58 +08:00
|
|
|
|
@property(nonatomic,assign) BOOL isReturnProfit;
|
2024-09-02 19:28:36 +08:00
|
|
|
|
|
|
|
|
|
@property (nonatomic, assign) NSInteger buyAmount;
|
2024-09-27 11:17:04 +08:00
|
|
|
|
@property (nonatomic, assign) NSInteger remainSeconds;
|
2024-09-02 19:28:36 +08:00
|
|
|
|
|
2023-07-14 18:50:55 +08:00
|
|
|
|
@end
|
|
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|