42 lines
1018 B
Objective-C
42 lines
1018 B
Objective-C
//
|
|
// HeadwearModel.h
|
|
// YUMI
|
|
//
|
|
// Created by YUMI on 2021/12/16.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "YUMINNNN.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
typedef NS_ENUM(NSInteger, DressupHeadWearStatus) {
|
|
Dressup_Headwear_Status_Ok = 1, //有效
|
|
Dressup_Headwear_Status_Expire = 2,//已过期
|
|
Dressup_Headwear_Status_Down = 3//已下架
|
|
};
|
|
|
|
|
|
@interface HeadwearModel : PIBaseModel
|
|
///头饰id
|
|
@property (nonatomic, strong) NSString *headwearId;
|
|
///是否是赠送
|
|
@property (nonatomic, assign) BOOL isGive;
|
|
///是否正在使用
|
|
@property (nonatomic, assign) BOOL isUsed;
|
|
///标签类型
|
|
@property (nonatomic, assign) DressUpLabelType labelType;
|
|
///头饰的名字
|
|
@property (nonatomic, strong) NSString *headwearName;
|
|
///预览图链接
|
|
@property (nonatomic, strong) NSString *pic;
|
|
///效果
|
|
@property (nonatomic, strong) NSString *effect;
|
|
///还有过期
|
|
@property (nonatomic, strong) NSString *expireDays;
|
|
///状态
|
|
@property (nonatomic, assign) DressupHeadWearStatus status;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|