42 lines
1.0 KiB
C
42 lines
1.0 KiB
C
|
|
//
|
||
|
|
// 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;
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|