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

38 lines
853 B

7 months ago
  1. //
  2. // DTFMonitorCommonData.h
  3. // BioAuthEngine
  4. //
  5. // Created by richard on 19/03/2018.
  6. // Copyright © 2018 DTF. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface DTFMonitorCommonData : NSObject
  10. @property (nonatomic,strong) NSString* serviceLevel;
  11. // 端侧上报UUID: init、verify、OCR
  12. @property (nonatomic,strong) NSString* beginTraceIDValue;
  13. @property (nonatomic,strong) NSString* verifyTraceIDValue;
  14. @property (nonatomic,strong) NSString* ocrTraceIDValue;
  15. @property (nonatomic,strong) NSString* beginTraceIDKey;
  16. @property (nonatomic,strong) NSString* verifyTraceIDKey;
  17. @property (nonatomic,strong) NSString* ocrTraceIDKey;
  18. + (instancetype)getInstance;
  19. - (NSString *)getToken;
  20. - (NSInteger)getIndex;
  21. - (void)resetValue;
  22. - (NSDictionary *)getCommonMonitorData;
  23. - (NSDictionary *)getBase64CommonMonitorData;
  24. @end