Files
peko-ios/YuMi/Modules/YMMine/View/DressUp/Model/DressUpShopModel.h
2024-11-18 19:39:38 +08:00

55 lines
1.3 KiB
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// DressUpShopModel.h
// YUMI
//
// Created by YUMI on 2022/7/28.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface DressUpShopModel : PIBaseModel
///座驾图片
@property (nonatomic, strong) NSString *pic;
///id
@property (nonatomic, strong) NSString *dressUpId;
///
@property (nonatomic, copy) NSString *dressId;
///座驾名称
@property (nonatomic, strong) NSString *name;
///天数
@property (nonatomic, assign) NSInteger dressDay;
///价格
@property (nonatomic, assign) NSInteger dressPrice;
///装扮类型
@property (nonatomic, assign) NSInteger dressType;
///是否限时 0限时1不限时
@property (nonatomic, assign) NSInteger dressLimitStatus;
//"装扮动效图片"
@property (nonatomic, copy) NSString *effect;
// "折扣价格"
@property (nonatomic, assign) CGFloat discountPrice;
// "vip等级", 0 表示当前用户不是 VIP
@property (nonatomic, assign) NSInteger vipLevel;
// "vip等级对应的折扣百分比 * 100"
@property (nonatomic, assign) CGFloat discount;
// "贵族限定0-无限制,1,2,3,4..."
@property (nonatomic, assign) NSInteger vipLimit;
// "获得方式1-普通2-活动"
@property (nonatomic, assign) NSInteger obtainWay;
- (NSMutableAttributedString *)pricePerDay;
- (NSMutableAttributedString *)pricePerDayForVIP;
@end
NS_ASSUME_NONNULL_END