更换项目
This commit is contained in:
@@ -0,0 +1,66 @@
|
||||
//
|
||||
// XPMineGiveDiamondDetailsModel.h
|
||||
// YuMi
|
||||
//
|
||||
// Created by YuMi on 2022/11/1.
|
||||
//
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
NS_ASSUME_NONNULL_BEGIN
|
||||
|
||||
@interface XPMineGiveDiamondDetailsModel : NSObject
|
||||
|
||||
///记录 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, copy) NSString *diamondNum;
|
||||
|
||||
///转赠实际支出的数量,包含手续费
|
||||
@property (nonatomic, assign) double realDiamondNum;
|
||||
|
||||
///创建时间
|
||||
@property (nonatomic, assign) NSInteger createTime;
|
||||
|
||||
///更新时间
|
||||
@property (nonatomic, assign) NSInteger updateTime;
|
||||
///转赠类型: 0转赠钻石 1转赠礼物
|
||||
@property (nonatomic, copy) NSString *type;
|
||||
|
||||
///转赠礼物id
|
||||
@property (nonatomic, copy) NSString *giftId;
|
||||
|
||||
///转赠礼物数
|
||||
@property (nonatomic, copy) NSString *giftNum;
|
||||
|
||||
///转赠礼物单价
|
||||
@property (nonatomic, copy) NSString *giftGoldNum;
|
||||
///转赠礼物总价值
|
||||
@property (nonatomic, copy) NSString *totalGiftGoldNum;
|
||||
///礼物图片
|
||||
@property (nonatomic, copy) NSString *giftUrl;
|
||||
///礼物名字
|
||||
@property (nonatomic,copy) NSString * giftName;
|
||||
|
||||
|
||||
@end
|
||||
|
||||
NS_ASSUME_NONNULL_END
|
Reference in New Issue
Block a user