2022-05-14 19:05:35 +08:00
|
|
|
//
|
|
|
|
// EnterpriseRechargeInfoModel.h
|
|
|
|
// xplan-ios
|
|
|
|
//
|
|
|
|
// Created by 冯硕 on 2022/5/14.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@class EnterpriseRechargeInfoModel;
|
2022-05-16 16:51:31 +08:00
|
|
|
typedef NS_ENUM(NSInteger, RechargeDefaultPayType) {
|
|
|
|
///支付宝
|
2022-05-16 22:36:18 +08:00
|
|
|
RechargeDefaultPayType_ZFB = 1,
|
|
|
|
///微信
|
|
|
|
RechargeDefaultPayType_WX,
|
2022-05-16 16:51:31 +08:00
|
|
|
///支付宝 微信
|
|
|
|
RechargeDefaultPayType_ZFB_WX,
|
|
|
|
///微信支付宝
|
2022-10-28 15:47:02 +08:00
|
|
|
RechargeDefaultPayType_WX_ZFB,
|
|
|
|
///金币
|
|
|
|
RechargeDefaultPayType_Coin,
|
2022-05-14 19:05:35 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
@interface EnterpriseRechargeListInfoModel : NSObject
|
|
|
|
///大额充值
|
|
|
|
@property(nonatomic,strong) NSArray <EnterpriseRechargeInfoModel *> *bigList;
|
|
|
|
///充值列表
|
|
|
|
@property(nonatomic,strong) NSArray <EnterpriseRechargeInfoModel *> *list;
|
|
|
|
///默认的支付方式
|
2022-05-16 16:51:31 +08:00
|
|
|
@property(nonatomic,assign) RechargeDefaultPayType defaultPay;
|
2022-05-14 19:05:35 +08:00
|
|
|
@end
|
|
|
|
|
|
|
|
|
|
|
|
@interface EnterpriseRechargeInfoModel : NSObject
|
|
|
|
@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;
|
|
|
|
///是否选中
|
|
|
|
@property (nonatomic,assign) BOOL isSelect;
|
|
|
|
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|