RAOrderDetailViewController.h 817 B

1234567891011121314151617181920212223242526272829
  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 (weak, nonatomic) IBOutlet UILabel *label_cache;
  16. @property (nonatomic,strong,readonly) UITableView *tableView;
  17. - (NSInteger)sectionNumber;
  18. - (NSString *)titleForSection:(NSInteger)section;
  19. - (NSInteger)numberOfItemForSection:(NSInteger)section;
  20. - (RADetailBaseModel *)modelForIndexPath:(NSIndexPath *)indexPath;
  21. - (void)reloadData;
  22. @end