ApexDriverUploadCell.h 562 B

1234567891011121314151617181920212223
  1. //
  2. // ApexDriverUploadCell.h
  3. // Apex And Drivers
  4. //
  5. // Created by Jack on 2018/6/6.
  6. // Copyright © 2018年 USAI. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface ApexDriverUploadCell : UITableViewCell
  10. @property (nonatomic,copy) NSString *orderID;
  11. @property (nonatomic,copy) NSString *photoName;
  12. @property (nonatomic,copy) NSString *action;
  13. @property (nonatomic,copy) NSString *datetime;
  14. @property (nonatomic,copy) NSString *status;
  15. @property (nonatomic,copy) NSString *errMsg;
  16. @property (nonatomic,assign) float progress;
  17. - (void)reset;
  18. @end