| 12345678910111213141516171819202122232425262728293031 |
- //
- // CustomerTraceListVc.h
- // IBOSS
- //
- // Created by 关宏厚 on 2019/4/10.
- // Copyright © 2019 elongtian. All rights reserved.
- //
- #import "BaseViewController.h"
- #import "CustomerTraceListSearchModel.h"
- #import "CustomerTraceListModel.h"
- #import "CustomerTraceListCell.h"
- #import "CustomerTraceListDetailVc.h"
- @interface CustomerTraceListVc : BaseViewController<UITableViewDataSource,
- UITableViewDelegate>
- @property (strong,nonatomic) SideSlipFilterController *filterController;
- @property (nonatomic,strong) UITableView *vTableView;
- @property (nonatomic,strong) ASIDownManager *downManager;
- @property (strong,nonatomic) NSMutableArray *dataList;
- @property(nonatomic,strong) CustomerTraceListSearchModel *searchModel;
- @end
|