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

//
// DTFMonitorCommonData.h
// BioAuthEngine
//
// Created by richard on 19/03/2018.
// Copyright © 2018 DTF. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface DTFMonitorCommonData : NSObject
@property (nonatomic,strong) NSString* serviceLevel;
// 端侧上报UUID: init、verify、OCR
@property (nonatomic,strong) NSString* beginTraceIDValue;
@property (nonatomic,strong) NSString* verifyTraceIDValue;
@property (nonatomic,strong) NSString* ocrTraceIDValue;
@property (nonatomic,strong) NSString* beginTraceIDKey;
@property (nonatomic,strong) NSString* verifyTraceIDKey;
@property (nonatomic,strong) NSString* ocrTraceIDKey;
+ (instancetype)getInstance;
- (NSString *)getToken;
- (NSInteger)getIndex;
- (void)resetValue;
- (NSDictionary *)getCommonMonitorData;
- (NSDictionary *)getBase64CommonMonitorData;
@end