SignDelegate.h 495 B

12345678910111213141516171819202122232425
  1. //
  2. // SignDelegate.h
  3. // IBOSS-HJ
  4. //
  5. // Created by 关宏厚 on 2021/2/2.
  6. // Copyright © 2021 elongtian. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @protocol SignDelegate <NSObject>
  10. @optional
  11. -(void)getSignImg:(UIImage*)img;
  12. -(void)updateReceiptFlag:(NSUInteger)position receiptFlag:(NSString*)flag;
  13. -(void)saveData:(NSUInteger)position;
  14. -(void)goNavigation:(NSUInteger)position;
  15. -(void)updateTruckNumber:(NSUInteger)position truckNumber:(NSString*)truckNumber;
  16. @end