12345678910111213141516171819202122232425262728293031 |
- //
- // ModelBrand.h
- //
- // Created by on 2021/8/9
- // Copyright (c) 2021 __MyCompanyName__. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface ModelBrand : NSObject
- @property (nonatomic, strong) NSString *name;
- @property (nonatomic, strong) NSString *internalBaseClassIdentifier;
- //qb
- @property (nonatomic, strong) NSString *brief;
- @property (nonatomic, strong) NSString *content;
- @property (nonatomic, strong) NSString *state;
- @property (nonatomic, strong) NSString *productId;
- @property (nonatomic, strong) NSString *machineTypeName;
- @property (nonatomic, strong) NSString *productName;
- @property (nonatomic, strong) NSString *machineTypeId;
- @property (nonatomic, strong) NSString *icon;
- @property (nonatomic, strong) NSString *createTime;
- + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
- - (instancetype)initWithDictionary:(NSDictionary *)dict;
- - (NSDictionary *)dictionaryRepresentation;
- @end
|