| 12345678910111213141516171819 |
- //
- // OtherOutStorageListDetailVC.h
- // IBOSSmini
- //
- // Created by guan hong hou on 2018/4/27.
- // Copyright © 2018年 elongtian. All rights reserved.
- //
- #import "BaseViewController.h"
- #import "OtherOutStorageListDetailModel.h"
- #import "OtherOutStorageListDetailCell.h"
- @interface OtherOutStorageListDetailVC : BaseViewController<UITableViewDelegate,UITableViewDataSource>
- @property(nonatomic,strong) NSString *deliveryId;
- @property(nonatomic,strong) NSString *deliveryNo;
- @property(nonatomic,strong) NSMutableArray *dataList;
- @property (nonatomic,strong) ASIDownManager *downManager;
- @property (nonatomic,strong) UITableView *vTableView;
- @end
|