首次提交

This commit is contained in:
启星
2025-08-08 11:05:33 +08:00
parent 1b3bb91b4a
commit adc1a2a25d
8803 changed files with 708874 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
//
// 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