| 12345678910111213141516171819202122232425 |
- //
- // SignDelegate.h
- // IBOSS-HJ
- //
- // Created by 关宏厚 on 2021/2/2.
- // Copyright © 2021 elongtian. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @protocol SignDelegate <NSObject>
- @optional
- -(void)getSignImg:(UIImage*)img;
- -(void)updateReceiptFlag:(NSUInteger)position receiptFlag:(NSString*)flag;
- -(void)saveData:(NSUInteger)position;
- -(void)goNavigation:(NSUInteger)position;
- -(void)updateTruckNumber:(NSUInteger)position truckNumber:(NSString*)truckNumber;
- @end
|