| 123456789101112131415161718192021222324252627282930 |
- //
- // InventoryAnalysisSearchCel.h
- // IBOSS
- //
- // Created by ssl on 2018/1/4.
- // Copyright © 2018年 elongtian. All rights reserved.
- //
- #import "SideSlipBaseTableViewCell.h"
- #import "InventoryAnalysisSearchModel.h"
- @interface InventoryAnalysisSearchCel : SideSlipBaseTableViewCell
- /**
- 抽屉共有类
- */
- @property (nonatomic,strong)SideSlipModel * slideModel;
- /**
- 日志查询信息存储字典
- */
- @property (nonatomic,strong) NSMutableDictionary *mutDict;
- /**
- 搜索模型
- */
- @property (strong,nonatomic)InventoryAnalysisSearchModel *searchModel;
- @property (weak, nonatomic) IBOutlet UIButton *btnKind;
- @property (weak, nonatomic) IBOutlet UIButton *btnBrand;
- @end
|