SalesOutStorageSalesSlipGoodsListVC.h 921 B

123456789101112131415161718192021222324
  1. //
  2. // SalesSlipGoodsDetailVC.h
  3. // IBOSSmini
  4. //
  5. // Created by guan hong hou on 2018/4/17.
  6. // Copyright © 2018年 elongtian. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. #import "SalesOutStorageSalesSlipGoodsListModel.h"
  10. #import "SalesOutStorageGoodsListCell.h"
  11. #import "SalesOutStorageSalesSlipGoodsDetailVC.h"
  12. @interface SalesOutStorageSalesSlipGoodsListVC : BaseViewController<UITableViewDelegate,UITableViewDataSource,SalesOutStorageDelegate>
  13. @property(nonatomic,strong) SalesOutStorageSalesSlipModel *salesSlipModel;
  14. @property (nonatomic,strong) ASIDownManager *downManager;
  15. @property (nonatomic,strong) UITableView *vTableView;
  16. @property(nonatomic,strong) UIView *bottomView;
  17. @property(nonatomic,strong)UIButton *sureBtn;
  18. @property(nonatomic,strong)UIButton *btnCheckAll;
  19. @property(nonatomic,assign) NSInteger position;
  20. @property(nonatomic,weak) id<SalesOutStorageDelegate> goodsListDelegate;
  21. @end