更换项目

This commit is contained in:
liyuhua
2023-07-14 18:50:55 +08:00
parent fff67e0aee
commit fc0480ea2c
9340 changed files with 236665 additions and 221827 deletions

View File

@@ -0,0 +1,33 @@
//
// DressUpShopModel.h
// YUMI
//
// Created by YUMI on 2022/7/28.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface DressUpShopModel : NSObject
///座驾图片
@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;
@end
NS_ASSUME_NONNULL_END