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

24 lines
829 B

7 months ago
  1. //
  2. // APBRequest.h
  3. // BioAuthEngine
  4. //
  5. // Created by yukun.tyk on 11/9/15.
  6. // Copyright © 2015 DTF. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @class UIViewController;
  10. extern NSString *const kKeepUploadPageKey; //extInfo key: 生物识别产品是否要保持上传界面,默认不保持
  11. @interface APBRequest : NSObject
  12. @property(nonatomic, weak, readonly)UIViewController *vc; //显示的viewController
  13. @property(nonatomic, copy, readonly)NSString *protocol; //服务端下发的配置参数
  14. @property(nonatomic, strong, readonly)NSDictionary *extInfo; //扩展业务参数
  15. - (instancetype)initWithViewController:(UIViewController *)vc
  16. protocolInfo:(NSString *)protocol
  17. extInfo:(NSDictionary *)ext;
  18. @end