28 lines
749 B
Objective-C
28 lines
749 B
Objective-C
//
|
|
// FirstRechargeModel.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2021/12/23.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "FirstRechargeRewardModel.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface FirstRechargeModel : NSObject
|
|
///充值的额度
|
|
@property(nonatomic, assign) NSInteger chargeMoney;
|
|
@property(nonatomic, strong) NSString *chargeProdId;
|
|
@property(nonatomic, strong) NSString *chargeProdDesc;
|
|
@property(nonatomic, strong) NSString *chargeProdTitle;
|
|
@property(nonatomic, strong) NSArray<FirstRechargeRewardModel *> *firstChargeRewardList;
|
|
@property (nonatomic, assign) NSInteger giveMoney;
|
|
|
|
///新用户充值优惠使用----
|
|
///是否完成当前档位的充值
|
|
@property (nonatomic, assign) BOOL finishCharge;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|