Files
peko-ios/YuMi/Modules/YMMine/Model/Recharge/RechargeListModel.h

30 lines
638 B
C
Raw Normal View History

2023-07-06 16:54:13 +08:00
//
2023-07-14 18:50:55 +08:00
// RechargeListModel.h
2023-07-06 16:54:13 +08:00
// YUMI
//
// Created by YUMI on 2021/9/24.
//
#import "NSObject+MJExtension.h"
NS_ASSUME_NONNULL_BEGIN
2023-11-15 17:25:09 +08:00
@interface RechargeListModel : PIBaseModel
2023-07-14 18:50:55 +08:00
///充值的id
2023-07-06 16:54:13 +08:00
@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;
2023-09-12 17:48:18 +08:00
//充值banner位数据
@property(nonatomic,copy) NSString *bannerUrl;
@property(nonatomic,copy) NSString *linkUrl;
2023-07-06 16:54:13 +08:00
@end
2023-09-12 17:48:18 +08:00
2023-07-06 16:54:13 +08:00
NS_ASSUME_NONNULL_END