1234567891011121314151617181920 |
- //
- // KBTodayModelView.h
- // YouHuiProject
- //
- // Created by 小花 on 2018/7/11.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "KBChildGoodModel.h"
- @interface KBTodayModelView : UIView
- - (void)setGoodData:(NSArray *)data;
- - (instancetype)initWithFrame:(CGRect)frame titleNumOfLine:(NSInteger)num;
- @property (nonatomic, strong) NSString *name;
- @property (nonatomic, strong) NSString *Id;
- @property (nonatomic, assign) BOOL isOhterPage;//是否是other分类
- @end
|