OrderDetailListViewController.h 495 B

1234567891011121314151617181920
  1. //
  2. // OrderDetailListViewController.h
  3. // IBOSS
  4. //
  5. // Created by 关宏厚 on 2018/11/15.
  6. // Copyright © 2018 elongtian. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. #import "OrderAuditDetailListCell.h"
  10. @interface OrderDetailListViewController : BaseViewController<UITableViewDataSource,UITableViewDelegate>
  11. @property (nonatomic,strong) UITableView *vTableView;
  12. @property(nonatomic,strong) NSMutableArray *orderDetailArray;
  13. -(void)loadData:(NSMutableArray*)detailArray;
  14. @end