| 1234567891011121314151617181920212223 |
- //
- // ApexDriverUploadCell.h
- // Apex And Drivers
- //
- // Created by Jack on 2018/6/6.
- // Copyright © 2018年 USAI. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface ApexDriverUploadCell : UITableViewCell
- @property (nonatomic,copy) NSString *orderID;
- @property (nonatomic,copy) NSString *photoName;
- @property (nonatomic,copy) NSString *action;
- @property (nonatomic,copy) NSString *datetime;
- @property (nonatomic,copy) NSString *status;
- @property (nonatomic,copy) NSString *errMsg;
- @property (nonatomic,assign) float progress;
- - (void)reset;
- @end
|