Files
peko-ios/YuMi/Modules/YMMine/View/DressUp/Model/CarModel.h

37 lines
883 B
C
Raw Normal View History

2023-07-06 16:54:13 +08:00
//
2023-07-14 18:50:55 +08:00
// CarModel.h
2023-07-06 16:54:13 +08:00
// YUMI
//
// Created by YUMI on 2021/12/16.
//
#import <Foundation/Foundation.h>
#import "YUMINNNN.h"
NS_ASSUME_NONNULL_BEGIN
typedef enum {
2023-07-14 18:50:55 +08:00
Dressup_Car_Status_Down = 1, //已下架
Dressup_Car_Status_Expire = 2, //已过期
Dressup_Car_Status_Ok = 3 //正常
2023-07-06 16:54:13 +08:00
}DressupCarStatus;
2023-11-15 17:25:09 +08:00
@interface CarModel : PIBaseModel
2023-07-14 18:50:55 +08:00
@property (nonatomic, assign) DressupCarStatus status; //状态
///座驾图片
2023-07-06 16:54:13 +08:00
@property (nonatomic, strong) NSString *pic;
2023-07-14 18:50:55 +08:00
///id
2023-07-06 16:54:13 +08:00
@property (nonatomic, strong) NSString *carID;
2023-07-14 18:50:55 +08:00
///座驾名称
2023-07-06 16:54:13 +08:00
@property (nonatomic, strong) NSString *name;
2023-07-14 18:50:55 +08:00
///失效时间
2023-07-06 16:54:13 +08:00
@property (nonatomic, assign) NSInteger expireDate;
2023-07-14 18:50:55 +08:00
///是否是赠送的
2023-07-06 16:54:13 +08:00
@property (nonatomic, assign) BOOL isGive;
2023-07-14 18:50:55 +08:00
///是否正在使用
2023-07-06 16:54:13 +08:00
@property (nonatomic, assign) BOOL isUsed;
2023-07-14 18:50:55 +08:00
///标签类型
@property (nonatomic, assign) DressUpLabelType labelType;
2023-07-06 16:54:13 +08:00
@end
NS_ASSUME_NONNULL_END