SalesOrderBusinessDepartmentVC.h 805 B

123456789101112131415161718192021
  1. //
  2. // SalesOrderBusinessDepartmentVC.h
  3. // IBOSSmini
  4. //
  5. // Created by guan hong hou on 2018/1/31.
  6. // Copyright © 2018年 elongtian. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. #import "BusinessDepartmentModel.h"
  10. #import "DepartmentFrame.h"
  11. #import "SalesOrderDepartmentCell.h"
  12. @interface SalesOrderBusinessDepartmentVC : BaseViewController<UITableViewDataSource,UITableViewDelegate,OrderListDelegate>
  13. @property (nonatomic,strong) ASIDownManager *downManager;
  14. @property (nonatomic,strong) UITableView *vTableView;
  15. @property (strong, nonatomic) NSMutableArray *departmentList;
  16. @property(nonatomic,strong) BusinessDepartmentModel *departmentModel;
  17. @property(nonatomic,weak) id<OrderListDelegate> departmentDelegate;
  18. @property (strong, nonatomic) NSMutableArray *departmentCheckedList;
  19. @end