12345678910111213141516171819202122232425 |
- //
- // LDTodayGoodModel.h
- // YouHuiProject
- //
- // Created by 小花 on 2018/12/13.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import "LDChildGoodModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface LDTodayGoodModel : NSObject
- @property (nonatomic, copy) NSString *Id;
- @property (nonatomic, copy) NSString *type;
- @property (nonatomic, copy) NSString *name;
- @property (nonatomic, strong) LDChildGoodModel *goods;
- @property (nonatomic, strong) NSArray *goodsList;
- @property (nonatomic, copy) NSString *adv_background_img;
- //name
- @end
- NS_ASSUME_NONNULL_END
|