
- Removed YuMi/Library/ (138 MB, not tracked) - Removed YuMi/Resources/ (23 MB, not tracked) - Removed old version assets (566 files, not tracked) - Excluded Pods/, xcuserdata/ and other build artifacts - Clean repository optimized for company server deployment
32 lines
694 B
Objective-C
32 lines
694 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;
|
|
@property (nonatomic, assign) NSInteger chargeGoldNum;
|
|
|
|
@end
|
|
|
|
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|