34 lines
796 B
Objective-C
34 lines
796 B
Objective-C
//
|
|
// XPMineGiveDiamondModel.h
|
|
// YuMi
|
|
//
|
|
// Created by YuMi on 2022/10/19.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface XPMineGiveDiamondModel : PIBaseModel
|
|
///记录 id
|
|
@property (nonatomic, copy) NSString *recordId;
|
|
///用户uid
|
|
@property (nonatomic, copy) NSString *fromUid;
|
|
///对方用户uid
|
|
@property (nonatomic, copy) NSString *targetUid;
|
|
///对方平台id
|
|
@property (nonatomic, copy) NSString *targetErbanNo;
|
|
///对方用户名
|
|
@property (nonatomic, copy) NSString *targetNick;
|
|
///头像
|
|
@property (nonatomic, copy) NSString *targetAvatar;
|
|
///转赠给对方的数量
|
|
@property (nonatomic, assign) NSInteger diamondNum;
|
|
///转赠实际支出的数量,包含手续费
|
|
@property (nonatomic, assign) double realDiamondNum;
|
|
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|