feat: 税务APP的可信插件
This commit is contained in:
67
Libs/CredibleAuthSDK.framework/Headers/CAUserDefine.h
Normal file
67
Libs/CredibleAuthSDK.framework/Headers/CAUserDefine.h
Normal file
@@ -0,0 +1,67 @@
|
||||
//
|
||||
// CAUserDefine.h
|
||||
// CredibleAuthSDK
|
||||
//
|
||||
// Created by Tony on 2022/8/16.
|
||||
// Copyright © 2022 PublicJoker. All rights reserved.
|
||||
//
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
//@import XMGSqlite;
|
||||
#import <CredibleAuthSDK/XMGModelTool.h>
|
||||
|
||||
NS_ASSUME_NONNULL_BEGIN
|
||||
|
||||
//recordId uid identity loginTime
|
||||
@interface CAIndividualLoginRecord : NSObject<XMGSqliteModelToolDelegate>
|
||||
/// 三合一(用户名/手机号/身份证号)
|
||||
@property (nonatomic, copy) NSString *identity;//主键
|
||||
/// 自然人网络身份id
|
||||
@property (nonatomic, copy) NSString *uid;
|
||||
/// 登录时间
|
||||
@property (nonatomic, assign) double loginTime;
|
||||
/// 数据库记录id
|
||||
@property (nonatomic, copy) NSString *recordId;
|
||||
|
||||
@end
|
||||
|
||||
//recordId uid identity loginTime enterpriseName creditCode
|
||||
@interface CAEnterpriseLoginRecord : NSObject<XMGSqliteModelToolDelegate>
|
||||
/// 三合一(用户名/手机号/身份证号)
|
||||
@property (nonatomic, copy) NSString *identity;//主键
|
||||
/// 自然人网络身份id
|
||||
@property (nonatomic, copy) NSString *uid;
|
||||
/// 企业名称
|
||||
@property (nonatomic, copy) NSString *enterpriseName;
|
||||
/// 社会信用代码/纳税人识别号
|
||||
@property (nonatomic, copy) NSString *creditCode;
|
||||
/// 登录时间
|
||||
@property (nonatomic, assign) double loginTime;
|
||||
/// 数据库记录id
|
||||
@property (nonatomic, copy) NSString *recordId;
|
||||
|
||||
@end
|
||||
|
||||
// uid mobile password realName
|
||||
@interface CABiometricAuth : NSObject<XMGSqliteModelToolDelegate>
|
||||
/// 手机号
|
||||
@property (nonatomic, copy) NSString *mobile;
|
||||
/// 自然人网络身份id
|
||||
@property (nonatomic, copy) NSString *uid;//主键
|
||||
/// 登录时间
|
||||
@property (nonatomic, copy) NSString *password;
|
||||
/// 自然人姓名
|
||||
@property (nonatomic, copy) NSString *realName;
|
||||
|
||||
@end
|
||||
|
||||
// uid bioFlag
|
||||
@interface CABiometricRemind : NSObject<XMGSqliteModelToolDelegate>
|
||||
/// 是否跳过提示
|
||||
@property (nonatomic, assign) BOOL bioFlag;
|
||||
/// 自然人网络身份id
|
||||
@property (nonatomic, copy) NSString *uid;//主键
|
||||
|
||||
@end
|
||||
|
||||
NS_ASSUME_NONNULL_END
|
||||
Reference in New Issue
Block a user