OtherOutStorageListDetailVC.h 649 B

12345678910111213141516171819
  1. //
  2. // OtherOutStorageListDetailVC.h
  3. // IBOSSmini
  4. //
  5. // Created by guan hong hou on 2018/4/27.
  6. // Copyright © 2018年 elongtian. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. #import "OtherOutStorageListDetailModel.h"
  10. #import "OtherOutStorageListDetailCell.h"
  11. @interface OtherOutStorageListDetailVC : BaseViewController<UITableViewDelegate,UITableViewDataSource>
  12. @property(nonatomic,strong) NSString *deliveryId;
  13. @property(nonatomic,strong) NSString *deliveryNo;
  14. @property(nonatomic,strong) NSMutableArray *dataList;
  15. @property (nonatomic,strong) ASIDownManager *downManager;
  16. @property (nonatomic,strong) UITableView *vTableView;
  17. @end