| 123456789101112131415161718192021222324252627 |
- //
- // RAOrderEditViewController.h
- // Apex And Drivers
- //
- // Created by Jack on 2018/6/4.
- // Copyright © 2018年 USAI. All rights reserved.
- //
- #import "RABaseViewController.h"
- @class RAEditBaseModel;
- @interface RAOrderEditViewController : RABaseViewController
- @property (nonatomic,copy) NSString *orderID;
- @property (nonatomic,assign) NSInteger actionID;
- @property (nonatomic,copy) NSString *actionTitle;
- @property (nonatomic,copy) NSString *orderType2;
- @property (nonatomic,strong) NSIndexPath *editingIndexPath;
- - (NSUInteger)editSectionCount;
- - (NSInteger)itemCountForSection:(NSInteger)section;
- - (NSString *)titleForSection:(NSInteger)section;
- - (RAEditBaseModel *)modelForIndexPath:(NSIndexPath *)indexPath;
- - (NSIndexPath *)indexPathForCell:(UITableViewCell *)cell;
- @end
|