| 1234567891011121314151617181920212223242526 |
- //
- // InventoryFreezeGoodsDetailViewController.h
- // IBOSS
- //
- // Created by 关宏厚 on 2020/5/8.
- // Copyright © 2020 elongtian. All rights reserved.
- //
- #import "BaseViewController.h"
- #import "InventoryFreezeGoodsDetailModel.h"
- #import "InventoryFreezeGoodsDetailListCell.h"
- @interface InventoryFreezeGoodsDetailViewController : BaseViewController<UITableViewDelegate,UITableViewDataSource>
- @property(nonatomic,strong) NSString *freezeId;
- @property (nonatomic,strong) ASIDownManager *downManager;
- @property(nonatomic,strong) NSMutableArray *goodsDetailArray;
- @property (strong,nonatomic) NSMutableDictionary *heights;
- @property (nonatomic,strong) UITableView* tableView;
- @end
|