| 123456789101112131415161718192021222324252627282930 |
- //
- // BusinessInfoViewController.h
- // IBOSSmini
- //
- // Created by guan hong hou on 2017/5/3.
- // Copyright © 2017年 elongtian. All rights reserved.
- //
- #import "BaseViewController.h"
- #import "BusinessModel.h"
- #import "OrderHomeViewController.h"
- #import "SalesOutStorageListVC.h"
- #import "OtherOutStorageListVC.h"
- #import "OtherInStorageListVC.h"
- @interface BusinessInfoViewController : BaseViewController<UICollectionViewDataSource,UICollectionViewDelegate>
- @property(nonatomic,strong) UICollectionView *businessCollectionView;
- @property(nonatomic,strong) UILabel *lblAllBusiness;
- @property(nonatomic,strong) NSMutableArray *businessArray;
- @property(nonatomic,strong) BusinessModel *businessModel;
- /**
- content view
- */
- @property(nonatomic,strong) UIView *contentView;
- /**
- 分隔线
- */
- @property(nonatomic,strong) UIView *separatorView;
- @end
|