StockingViewController.h 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. //
  2. // StockingViewController.h
  3. // IBOSSmini
  4. //
  5. // Created by apple on 2017/5/15.
  6. // Copyright © 2017年 elongtian. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. #import "StockingModel.h"
  10. #import "RefreshTableView.h"
  11. #import "SideSlipFilterController.h"
  12. @interface StockingViewController : BaseViewController
  13. // 查询条件
  14. @property(copy, nonatomic)NSString *stockNo;
  15. @property(copy, nonatomic)NSString *onlyCode;
  16. @property(copy, nonatomic)NSString *warehouse;
  17. /**
  18. 数据源dic数据
  19. */
  20. @property (strong, nonatomic) NSMutableArray *dataList;
  21. /**
  22. 数据源高度数据
  23. */
  24. @property (strong, nonatomic) NSMutableDictionary *heights;
  25. /**
  26. 数据源model数据
  27. */
  28. @property (strong, nonatomic) NSMutableArray *newdataList;
  29. /**
  30. model数据
  31. */
  32. @property(nonatomic,strong) StockingModel *infoModel;
  33. /**
  34. ASIDownManager
  35. */
  36. @property (nonatomic,strong) ASIDownManager *downManager;
  37. /**
  38. TableView
  39. */
  40. @property (nonatomic,strong) RefreshTableView *customTableView;
  41. /**
  42. 抽屉对象
  43. */
  44. @property (strong, nonatomic) SideSlipFilterController *filterController;
  45. @end