| 1234567891011121314151617181920 |
- //
- // NewSalesOutStorageGoodsDetailVC.h
- // IBOSSmini
- //
- // Created by guan hong hou on 2018/4/12.
- // Copyright © 2018年 elongtian. All rights reserved.
- //
- #import "BaseViewController.h"
- #import "NewSalesOutStorageGoodsListCell.h"
- #import "UpdateColorNumberVC.h"
- @interface NewSalesOutStorageGoodsDetailVC : BaseViewController<UITableViewDelegate,UITableViewDataSource,SalesOutStorageDelegate>
- @property (nonatomic,strong) UITableView *vTableView;
- @property(nonatomic,strong) NSMutableArray *goodsList;
- @property(nonatomic,strong) UINavigationController *nav;
- @property(nonatomic,strong)UIViewController *salesSlipListVc;
- @property(nonatomic,weak)id<SalesOutStorageDelegate> salesOutStorageDelegate;
- @end
|