CustomerTraceListVc.h 740 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // CustomerTraceListVc.h
  3. // IBOSS
  4. //
  5. // Created by 关宏厚 on 2019/4/10.
  6. // Copyright © 2019 elongtian. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. #import "CustomerTraceListSearchModel.h"
  10. #import "CustomerTraceListModel.h"
  11. #import "CustomerTraceListCell.h"
  12. #import "CustomerTraceListDetailVc.h"
  13. @interface CustomerTraceListVc : BaseViewController<UITableViewDataSource,
  14. UITableViewDelegate>
  15. @property (strong,nonatomic) SideSlipFilterController *filterController;
  16. @property (nonatomic,strong) UITableView *vTableView;
  17. @property (nonatomic,strong) ASIDownManager *downManager;
  18. @property (strong,nonatomic) NSMutableArray *dataList;
  19. @property(nonatomic,strong) CustomerTraceListSearchModel *searchModel;
  20. @end