洛阳学员端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
677 B

7 months ago
  1. //
  2. // APBToygerUploadTask.h
  3. // APBToygerFacade
  4. //
  5. // Created by Dan Cong on 29/1/2018.
  6. // Copyright © 2018 DTF. All rights reserved.
  7. //
  8. #import <APBToygerFacade/APBToygerBaseTask.h>
  9. /**
  10. UI()
  11. */
  12. @interface APBToygerUploadTask : APBToygerBaseTask
  13. - (void)uploadImage;
  14. - (void)didFinishUploadWithSuccess:(BOOL)success
  15. retCode:(NSString *)retCode
  16. retMessage:(NSString *)msg
  17. extInfo:(NSString *)ext;
  18. - (void)handleFailWithRetCodeSub:(NSString *)retCodeSub retMessageSub:(NSString *)retMessageSub;
  19. - (void)requestAgain;
  20. @end