| 123456789101112131415161718192021222324 |
- //
- // 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;
- - (NSInteger)sectionNumber;
- - (NSString *)titleForSection:(NSInteger)section;
- - (NSInteger)numberOfItemForSection:(NSInteger)section;
- - (RADetailBaseModel *)modelForIndexPath:(NSIndexPath *)indexPath;
- @end
|