| 123456789101112131415161718192021222324 |
- //
- // CommodityClassModel.h
- // yunbaolive
- //
- // Created by ybRRR on 2020/3/2.
- // Copyright © 2020 cat. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface CommodityClassModel : NSObject
- @property (nonatomic, strong)NSString *gc_isshow;
- @property (nonatomic, strong)NSString *nameStr;
- @property (nonatomic, strong)NSString *idStr;
- @property (nonatomic, strong)NSString *isexists;
- -(instancetype)initWithDic:(NSDictionary *)dic;
- +(instancetype)modelWithDic:(NSDictionary *)subdic;
- @end
- NS_ASSUME_NONNULL_END
|