// // RAOrderDetailViewController.h // Apex And Drivers // // Created by Jack on 2018/6/2. // Copyright © 2018年 USAI. All rights reserved. // #import "RABaseViewController.h" @class RADetailBaseModel; @interface RAOrderDetailViewController : RABaseViewController @property (nonatomic,copy) NSString *orderID; @property (nonatomic,assign) NSInteger orderType; @property (nonatomic,copy) NSString *orderType2; @property (nonatomic,copy) NSString *status_no; @property (weak, nonatomic) IBOutlet UILabel *label_cache; @property (nonatomic,strong,readonly) UITableView *tableView; - (NSInteger)sectionNumber; - (NSString *)titleForSection:(NSInteger)section; - (NSInteger)numberOfItemForSection:(NSInteger)section; - (RADetailBaseModel *)modelForIndexPath:(NSIndexPath *)indexPath; - (void)reloadData; @end