31 lines
639 B
Objective-C
31 lines
639 B
Objective-C
//
|
|
// RechargeListModel.h
|
|
// YUMI
|
|
//
|
|
// Created by YUMI on 2021/9/24.
|
|
//
|
|
|
|
#import "NSObject+MJExtension.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface RechargeListModel : PIBaseModel
|
|
///充值的id
|
|
@property(nonatomic, strong) NSString *chargeProdId;
|
|
@property(nonatomic, strong) NSString *prodName;
|
|
@property (copy, nonatomic) NSString *prodDesc;
|
|
@property(nonatomic, strong) NSNumber *money;
|
|
@property(nonatomic, strong) NSNumber *giftGoldNum;
|
|
@property(nonatomic, strong) NSString *channel;
|
|
//充值banner位数据
|
|
@property(nonatomic,copy) NSString *bannerUrl;
|
|
@property(nonatomic,copy) NSString *linkUrl;
|
|
|
|
@end
|
|
|
|
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|