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

41 lines
766 B

7 months ago
  1. //
  2. // APBioBisConfigManager.h
  3. // APFaceDetectBiz
  4. //
  5. // Created by 晗羽 on 1/7/16.
  6. // Copyright © 2016 DTF. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "APBToygerRemoteConfig.h"
  10. @interface APBToygerBioBisConfigManager : NSObject
  11. /**
  12. * biscfg
  13. *
  14. * @param biscfg pbjson格式
  15. *
  16. * @return
  17. */
  18. - (instancetype)initWithBisConfig:(NSString *)biscfg;
  19. /**
  20. * bisToken
  21. *
  22. * @return bistokenID
  23. */
  24. - (NSString * )bisToken;
  25. - (NSString * )ioscfg;
  26. - (NSString * )iosvoicecfg;
  27. - (APBToygerRemoteConfig *)bisConfig;
  28. - (int) sampleMode;
  29. - (BOOL) isLogin;
  30. - (NSString *) apBioSecPublicKey;
  31. + (NSDictionary *)getDictfrom:(NSString *) jsonStr;
  32. @end