更换项目

This commit is contained in:
liyuhua
2023-07-14 18:50:55 +08:00
parent fff67e0aee
commit fc0480ea2c
9340 changed files with 236665 additions and 221827 deletions

View File

@@ -0,0 +1,37 @@
//
// XPBindExtractInfoModel.h
// YuMi
//
// Created by YuMi on 2022/11/18.
//
#import <Foundation/Foundation.h>
#import "XPWithdrawAccountModel.h"
NS_ASSUME_NONNULL_BEGIN
@interface XPBindExtractInfoModel : NSObject
///提現信息
@property (nonatomic,strong) XPWithdrawAccountModel *account;
//钱包当前金币数
@property (nonatomic,assign) double golds;
//周剩余次数
@property (nonatomic,assign) NSInteger remainTimes;
//手续费
@property (nonatomic,assign) double fee;
@property (nonatomic,assign) NSInteger minGolds;
@property (nonatomic,assign) NSInteger maxGolds;
//有没有密码
@property (nonatomic,assign) BOOL hasPayPwd;
@end
NS_ASSUME_NONNULL_END