| 123456789101112131415161718192021 |
- //
- // SalesOrderBusinessDepartmentVC.h
- // IBOSSmini
- //
- // Created by guan hong hou on 2018/1/31.
- // Copyright © 2018年 elongtian. All rights reserved.
- //
- #import "BaseViewController.h"
- #import "BusinessDepartmentModel.h"
- #import "DepartmentFrame.h"
- #import "SalesOrderDepartmentCell.h"
- @interface SalesOrderBusinessDepartmentVC : BaseViewController<UITableViewDataSource,UITableViewDelegate,OrderListDelegate>
- @property (nonatomic,strong) ASIDownManager *downManager;
- @property (nonatomic,strong) UITableView *vTableView;
- @property (strong, nonatomic) NSMutableArray *departmentList;
- @property(nonatomic,strong) BusinessDepartmentModel *departmentModel;
- @property(nonatomic,weak) id<OrderListDelegate> departmentDelegate;
- @property (strong, nonatomic) NSMutableArray *departmentCheckedList;
- @end
|