You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.4 KiB
57 lines
1.4 KiB
1 year ago
|
//
|
||
|
// DialMsgModel.h
|
||
|
// tongxin
|
||
|
//
|
||
|
// Created by ecell on 2023/3/24.
|
||
|
// Copyright © 2023 xTT. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import "ZDBaseModel.h"
|
||
|
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
||
|
@interface DialMsgModel : ZDBaseModel
|
||
|
|
||
|
/// string example: 分类id
|
||
|
@property (nonatomic ,copy) NSString *categoryId;
|
||
|
|
||
|
/// string example: 所属分类名称
|
||
|
@property (nonatomic ,copy) NSString *categoryName;
|
||
|
|
||
|
/// string($date-time) example: 创建时间
|
||
|
@property (nonatomic ,copy) NSString *createTime;
|
||
|
|
||
|
/// string example: 表盘下载地址
|
||
|
@property (nonatomic ,copy) NSString *dialDownload;
|
||
|
|
||
|
/// string example: 表盘id
|
||
|
@property (nonatomic ,copy) NSString *dialId;
|
||
|
|
||
|
/// string example: 表盘名称
|
||
|
@property (nonatomic ,copy) NSString *dialName;
|
||
|
|
||
|
/// string example: 预览图
|
||
|
@property (nonatomic ,copy) NSString *dialPreView;
|
||
|
|
||
|
/// string example: 屏幕形状
|
||
|
@property (nonatomic ,copy) NSString *dialShape;
|
||
|
|
||
|
/// string example: 屏幕尺寸
|
||
|
@property (nonatomic ,copy) NSString *dialSize;
|
||
|
|
||
|
/// string example: 是否热门(0:普通,1:热门)
|
||
|
@property (nonatomic ,assign) NSInteger hotFlag;
|
||
|
|
||
|
/// string example: 表盘名称
|
||
|
@property (nonatomic ,copy) NSString *marketName;
|
||
|
|
||
|
/// number example: 定价
|
||
|
@property (nonatomic ,copy) NSString *price;
|
||
|
|
||
|
/// number example: 销售价格
|
||
|
@property (nonatomic ,copy) NSString *sellingPrice;
|
||
|
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|