2025-08-08 10:49:36 +08:00
|
|
|
|
//
|
|
|
|
|
|
// QXCoinDetailModel.h
|
|
|
|
|
|
// QXLive
|
|
|
|
|
|
//
|
|
|
|
|
|
// Created by 启星 on 2025/7/8.
|
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
|
|
|
|
|
|
|
@interface QXCoinDetailModel : NSObject
|
|
|
|
|
|
/// 用户id
|
|
|
|
|
|
@property (nonatomic,strong)NSString *user_id;
|
|
|
|
|
|
/// 变动类型
|
|
|
|
|
|
@property (nonatomic,strong)NSString *change_type;
|
|
|
|
|
|
/// 变动类型
|
|
|
|
|
|
@property (nonatomic,strong)NSString *change_type_name;
|
|
|
|
|
|
/// 变动金额
|
|
|
|
|
|
@property (nonatomic,strong)NSString *change_value;
|
|
|
|
|
|
/// 备注
|
|
|
|
|
|
@property (nonatomic,strong)NSString *remarks;
|
|
|
|
|
|
/// 时间
|
|
|
|
|
|
@property (nonatomic,strong)NSString *createtime;
|
|
|
|
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
|
|
|
|
@interface QXWithDrawRecordModel :NSObject
|
|
|
|
|
|
/// 用户id
|
|
|
|
|
|
@property (nonatomic,strong)NSString *name;
|
|
|
|
|
|
/// 变动类型
|
|
|
|
|
|
@property (nonatomic,strong)NSString *money;
|
2025-10-20 09:43:10 +08:00
|
|
|
|
/// 状态:1待处理2已通过3已拒绝 4打款中[云账户]5打款失败[云账户]6已打款[云账户]
|
2025-08-08 10:49:36 +08:00
|
|
|
|
@property (nonatomic,strong)NSString *status;
|
2025-10-20 09:43:10 +08:00
|
|
|
|
/// 状态说明
|
2025-08-08 10:49:36 +08:00
|
|
|
|
@property (nonatomic,strong)NSString *status_str;
|
2025-10-20 09:43:10 +08:00
|
|
|
|
/// 提现时间
|
2025-08-08 10:49:36 +08:00
|
|
|
|
@property (nonatomic,strong)NSString *createtime;
|
2025-10-20 09:43:10 +08:00
|
|
|
|
/// 手续费/服务费
|
|
|
|
|
|
@property (nonatomic,strong)NSString *withdraw_fee;
|
|
|
|
|
|
/// 税率
|
|
|
|
|
|
@property (nonatomic,strong)NSString *personal_tax_rate;
|
|
|
|
|
|
/// 税款(个人所得税)
|
|
|
|
|
|
@property (nonatomic,strong)NSString *received_tax_amount;
|
|
|
|
|
|
/// 实际到账金额
|
|
|
|
|
|
@property (nonatomic,strong)NSString *surplus_money;
|
2025-08-08 10:49:36 +08:00
|
|
|
|
@end
|
|
|
|
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|