31 lines
792 B
Objective-C
31 lines
792 B
Objective-C
//
|
|
// TreasureFairyRewardModel.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2023/2/28.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "TreasureFairyInfoModel.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface TreasureFairyRewardModel : PIBaseModel
|
|
@property (nonatomic,assign) NSInteger itemId;
|
|
///奖励id
|
|
@property (nonatomic,assign) NSInteger rewardId;
|
|
///奖励的名称
|
|
@property (nonatomic,copy) NSString *rewardName;
|
|
///奖励的个数
|
|
@property (nonatomic,assign) NSInteger rewardNum;
|
|
///奖励的图片
|
|
@property (nonatomic,copy) NSString *rewardPicUrl;
|
|
///奖励的价值
|
|
@property (nonatomic,assign) NSInteger rewardShowValue;
|
|
///奖励的单位
|
|
@property (nonatomic,assign) NSInteger rewardUnit;
|
|
///类型
|
|
@property (nonatomic,assign) TreasureFairyStoreType level;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|