| 1234567891011121314151617181920 |
- //
- // manufactureDetailListViewController.h
- // IBOSS
- //
- // Created by 关宏厚 on 2018/11/15.
- // Copyright © 2018 elongtian. All rights reserved.
- //
- #import "BaseViewController.h"
- #import "ManufactureDetailListCell.h"
- #import "ManufactureDetailModel.h"
- @interface ManufactureDetailListViewController : BaseViewController<UITableViewDataSource,UITableViewDelegate>
- @property (nonatomic,strong) UITableView *vTableView;
- @property(nonatomic,strong) NSMutableArray *manuDetailArray;
- -(void)loadData:(NSMutableArray*)detailArray;
- @end
|