RAOrderDetailViewController.h 758 B

12345678910111213141516171819202122232425262728
  1. //
  2. // RAOrderDetailViewController.h
  3. // Apex And Drivers
  4. //
  5. // Created by Jack on 2018/6/2.
  6. // Copyright © 2018年 USAI. All rights reserved.
  7. //
  8. #import "RABaseViewController.h"
  9. @class RADetailBaseModel;
  10. @interface RAOrderDetailViewController : RABaseViewController
  11. @property (nonatomic,copy) NSString *orderID;
  12. @property (nonatomic,assign) NSInteger orderType;
  13. @property (nonatomic,copy) NSString *orderType2;
  14. @property (nonatomic,copy) NSString *status_no;
  15. @property (nonatomic,strong,readonly) UITableView *tableView;
  16. - (NSInteger)sectionNumber;
  17. - (NSString *)titleForSection:(NSInteger)section;
  18. - (NSInteger)numberOfItemForSection:(NSInteger)section;
  19. - (RADetailBaseModel *)modelForIndexPath:(NSIndexPath *)indexPath;
  20. - (void)reloadData;
  21. @end