40 lines
1.1 KiB
Objective-C
40 lines
1.1 KiB
Objective-C
//
|
|
// TreasureFairyFragmentModel.h
|
|
// xplan-ios
|
|
//
|
|
// Created by XY on 2023/2/28.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface TreasureFairyFragmentModel : NSObject
|
|
|
|
/// 消耗数量
|
|
@property (nonatomic, assign) NSInteger expendNum;
|
|
/// 兑换项id
|
|
@property (nonatomic, assign) NSInteger itemId;
|
|
/// 兑换等级
|
|
@property (nonatomic, assign) NSInteger level;
|
|
/// 奖励id
|
|
@property (nonatomic, assign) NSInteger rewardId;
|
|
/// 奖励名称
|
|
@property (nonatomic, copy) NSString *rewardName;
|
|
/// 奖励数量
|
|
@property (nonatomic, assign) NSInteger rewardNum;
|
|
/// 奖励图片url
|
|
@property (nonatomic, copy) NSString *rewardPicUrl;
|
|
/// 奖励价值
|
|
@property (nonatomic, copy) NSString *rewardShowValue;
|
|
/// 奖励类型 activityProps:活动道具;gift:礼物;namePlate:铭牌;car:座驾;headwear:头饰;chatBubble:气泡;infoCard:资料卡;
|
|
@property (nonatomic, copy) NSString *rewardType;
|
|
/// 奖励单位
|
|
@property (nonatomic, copy) NSString *rewardUnit;
|
|
/// 兑换类型
|
|
@property (nonatomic, assign) NSInteger type;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|