StockingViewController.h 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. //
  2. // StockingViewController.h
  3. // IBOSS
  4. //
  5. // Created by apple on 2017/5/15.
  6. // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
  7. //
  8. // 功能描述:盘点控制器
  9. //
  10. #import "BaseViewController.h"
  11. #import "StockingModel.h"
  12. #import "RefreshTableView.h"
  13. #import "SideSlipFilterController.h"
  14. @interface StockingViewController : BaseViewController
  15. // 查询条件
  16. /**
  17. 盘点单号
  18. */
  19. @property (copy, nonatomic) NSString *stockNo;
  20. /**
  21. 唯一编码
  22. */
  23. @property (copy, nonatomic) NSString *onlyCode;
  24. /**
  25. 库区
  26. */
  27. @property (copy, nonatomic) NSString *warehouse;
  28. /**
  29. 数据源dic数据
  30. */
  31. @property (strong,nonatomic) NSMutableArray *arrDataList;
  32. /**
  33. 数据源model数据
  34. */
  35. @property (strong,nonatomic) NSMutableArray *arrNewDataList;
  36. /**
  37. model数据
  38. */
  39. @property (nonatomic,strong) StockingModel *infoModel;
  40. /**
  41. ASIDownManager
  42. */
  43. @property (nonatomic,strong) ASIDownManager *downManager;
  44. /**
  45. TableView
  46. */
  47. @property (nonatomic,strong) RefreshTableView *customTableView;
  48. /**
  49. 抽屉对象
  50. */
  51. @property (strong,nonatomic) SideSlipFilterController *filterController;
  52. @end