44 lines
1.3 KiB
Objective-C
44 lines
1.3 KiB
Objective-C
//
|
|
// DDGiftWallModel.h
|
|
// DingDangApp
|
|
//
|
|
// Created by apple on 2023/5/30.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface DDGiftWallModel : NSObject
|
|
@property (nonatomic, copy) NSString * gift_id;
|
|
@property (nonatomic, copy) NSString * gift_num;
|
|
@property (nonatomic, copy) NSString * ext_int;
|
|
@property (nonatomic, copy) NSString * title;
|
|
@property (nonatomic, copy) NSString * user_id;
|
|
@property (nonatomic, copy) NSString * id;
|
|
@property (nonatomic, copy) NSString * type;
|
|
@property (nonatomic, copy) NSString * price;
|
|
@property (nonatomic, copy) NSString * big_img;
|
|
@property (nonatomic, copy) NSString * nickname;
|
|
@property (nonatomic, copy) NSString * nobility_id;
|
|
@property (nonatomic, copy) NSString * screen_img;
|
|
@property (nonatomic, copy) NSString * charm;
|
|
@property (nonatomic, copy) NSString * gift_name;
|
|
@property (nonatomic, copy) NSString *random_gift_name;
|
|
///目标用户的uid
|
|
@property (nonatomic,copy) NSString *uid;
|
|
///价格
|
|
@property (nonatomic,assign) NSInteger giftPrice;
|
|
///id
|
|
@property (nonatomic,assign) NSInteger giftId;
|
|
///名称
|
|
@property (nonatomic,copy) NSString *giftName;
|
|
///礼物
|
|
@property (nonatomic,copy) NSString *picUrl;
|
|
///个数
|
|
@property (nonatomic,assign) NSInteger reciveCount;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|