Files
featherVoice/QXLive/Mine(音域)/Model/QXCoinDetailModel.h
2025-10-20 09:43:10 +08:00

50 lines
1.3 KiB
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// 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;
/// 状态1待处理2已通过3已拒绝 4打款中[云账户]5打款失败[云账户]6已打款[云账户]
@property (nonatomic,strong)NSString *status;
/// 状态说明
@property (nonatomic,strong)NSString *status_str;
/// 提现时间
@property (nonatomic,strong)NSString *createtime;
/// 手续费/服务费
@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;
@end
NS_ASSUME_NONNULL_END