29 lines
902 B
Objective-C
29 lines
902 B
Objective-C
//
|
|
// LMTixianRecordDetailModel.h
|
|
// SweetParty
|
|
//
|
|
// Created by Xmac on 2024/9/25.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface LMTixianRecordDetailModel : NSObject
|
|
|
|
@property (nonatomic, strong) NSString *wid;
|
|
@property (nonatomic, assign) NSInteger type; //'提现类型 1支付宝 2银行卡',
|
|
@property (nonatomic, strong) NSString *general_money; //到账金额',
|
|
@property (nonatomic, strong) NSString *money; // 提现金额',
|
|
@property (nonatomic, strong) NSString *surplus_money; //钱包剩余
|
|
@property (nonatomic, strong) NSString *server_money; //服务费',
|
|
@property (nonatomic, assign) NSInteger status; //1待审核 2已到账3打款失败
|
|
@property (nonatomic, strong) NSString *add_time; //
|
|
@property (nonatomic, strong) NSString *remarke; // 备注',
|
|
@property (nonatomic, strong) NSString *account; //提现账号
|
|
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|