44 lines
1.0 KiB
Objective-C
44 lines
1.0 KiB
Objective-C
//
|
|
// WishGiftInfoModel.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2022/10/18.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
typedef NS_ENUM(int, WishGiftLevel) {
|
|
WishGiftLevel_Normal = 1,
|
|
WishGiftLevel_Middle = 2,
|
|
WishGiftLevel_High = 3
|
|
};
|
|
|
|
@interface WishGiftInfoModel : NSObject
|
|
/// 实际收到数量
|
|
@property (nonatomic, assign) NSInteger actualNum;
|
|
///礼物id
|
|
@property (nonatomic, assign) NSInteger giftId;
|
|
///礼物名称
|
|
@property (nonatomic, copy) NSString *giftName;
|
|
/// 礼物价值
|
|
@property (nonatomic, assign) NSInteger goldPrice;
|
|
/// 礼物心愿itemid
|
|
@property (nonatomic, assign) NSInteger itemId;
|
|
/// 目标数量
|
|
@property (nonatomic, assign) NSInteger targetNum;
|
|
///礼物图片
|
|
@property (nonatomic,copy) NSString *giftUrl;
|
|
///本地字段
|
|
@property (nonatomic,assign) NSInteger row;
|
|
///创建的时间
|
|
@property (nonatomic,strong) NSString *createTime;
|
|
///等级的名称
|
|
@property (nonatomic,copy) NSString *levelName;
|
|
///等级
|
|
@property (nonatomic,assign) WishGiftLevel level;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|