洛阳学员端
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.

21 lines
371 B

7 months ago
  1. //
  2. // APRiskSyncHandlerProtocol.h
  3. // APPSecuritySDK
  4. //
  5. // Created by eric on 2020/10/15.
  6. // Copyright © 2020 Alipay. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @protocol APRiskSyncHandlerProtocol <NSObject>
  11. @required
  12. -(void) handleWithBizType: (NSString *) bizType andData: (NSString *) data;
  13. @end
  14. NS_ASSUME_NONNULL_END