|
@@ -11,7 +11,6 @@ export interface UserInfoResponse {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
export interface UserInfoItem {
|
|
export interface UserInfoItem {
|
|
|
- eidResult: EidResult
|
|
|
|
|
deptName: string
|
|
deptName: string
|
|
|
deptId: string
|
|
deptId: string
|
|
|
managementFlag: boolean
|
|
managementFlag: boolean
|
|
@@ -23,9 +22,7 @@ export interface UserInfoItem {
|
|
|
realname: string
|
|
realname: string
|
|
|
avatar: string | null
|
|
avatar: string | null
|
|
|
idCardNumber: string
|
|
idCardNumber: string
|
|
|
- bankName: string
|
|
|
|
|
- bankPhone: string
|
|
|
|
|
- bankCardNumber: string
|
|
|
|
|
|
|
+
|
|
|
unpaid: number
|
|
unpaid: number
|
|
|
paid: number
|
|
paid: number
|
|
|
roles: number[]
|
|
roles: number[]
|
|
@@ -34,66 +31,47 @@ export interface UserInfoItem {
|
|
|
subjectLocationList: string[]
|
|
subjectLocationList: string[]
|
|
|
subjectLocationEid: Record<string, boolean>
|
|
subjectLocationEid: Record<string, boolean>
|
|
|
|
|
|
|
|
- /** 签约/认证记录 */
|
|
|
|
|
certList: CertItem[]
|
|
certList: CertItem[]
|
|
|
|
|
|
|
|
- /** 已签协议(动态 code) */
|
|
|
|
|
signedAgreement: string[]
|
|
signedAgreement: string[]
|
|
|
-
|
|
|
|
|
- /** 是否重新签署 */
|
|
|
|
|
reSignedAgreement: number
|
|
reSignedAgreement: number
|
|
|
-
|
|
|
|
|
- /** 协议签名状态 */
|
|
|
|
|
taxHelperAgreementSignature: number
|
|
taxHelperAgreementSignature: number
|
|
|
|
|
|
|
|
- /** 是否通过活体 */
|
|
|
|
|
- asignIsLivenessAuth: boolean
|
|
|
|
|
-
|
|
|
|
|
- /** 年龄相关 */
|
|
|
|
|
ageLimit: boolean
|
|
ageLimit: boolean
|
|
|
ageReminder: boolean
|
|
ageReminder: boolean
|
|
|
ageReminderInfo: string | null
|
|
ageReminderInfo: string | null
|
|
|
|
|
|
|
|
- /** 动态子模块 / 菜单 */
|
|
|
|
|
subList: string[]
|
|
subList: string[]
|
|
|
-
|
|
|
|
|
- /** 动态任务模板 */
|
|
|
|
|
hasTaskTypeTemplate: string[]
|
|
hasTaskTypeTemplate: string[]
|
|
|
|
|
|
|
|
- /** 认证相关 */
|
|
|
|
|
certStatus: string | null
|
|
certStatus: string | null
|
|
|
rljCertStatus: string | null
|
|
rljCertStatus: string | null
|
|
|
certRemark: string | null
|
|
certRemark: string | null
|
|
|
certToken: string
|
|
certToken: string
|
|
|
|
|
|
|
|
- /** 操作状态 */
|
|
|
|
|
waitApprove: string
|
|
waitApprove: string
|
|
|
onTheWay: string
|
|
onTheWay: string
|
|
|
jumpFlag: string
|
|
jumpFlag: string
|
|
|
|
|
|
|
|
- /** 最近密码修改时间 */
|
|
|
|
|
latestChangePwdTime: string
|
|
latestChangePwdTime: string
|
|
|
|
|
|
|
|
- /** 套餐 */
|
|
|
|
|
packageList: PackageItem[]
|
|
packageList: PackageItem[]
|
|
|
-
|
|
|
|
|
- /** 客户成功经理 */
|
|
|
|
|
csm: CsmInfo
|
|
csm: CsmInfo
|
|
|
|
|
|
|
|
- /** eid 是否已存在 */
|
|
|
|
|
- existEidResult: boolean
|
|
|
|
|
|
|
+ faceAuthStatus: boolean
|
|
|
|
|
|
|
|
- /** 临时/扩展字段(保持原样) */
|
|
|
|
|
temp1: string | null
|
|
temp1: string | null
|
|
|
temp2: string | null
|
|
temp2: string | null
|
|
|
temp3: string | null
|
|
temp3: string | null
|
|
|
temp4: string | null
|
|
temp4: string | null
|
|
|
temp5: string | null
|
|
temp5: string | null
|
|
|
-}
|
|
|
|
|
|
|
|
|
|
-export interface EidResult {
|
|
|
|
|
- idCardFrontUrl: string
|
|
|
|
|
- idCardBackUrl: string
|
|
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 当前返回里没有,可能来自旧接口或其他业务场景
|
|
|
|
|
+ */
|
|
|
|
|
+ bankName?: string
|
|
|
|
|
+ bankPhone?: string
|
|
|
|
|
+ bankCardNumber?: string
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
export interface CertItem {
|
|
export interface CertItem {
|
|
@@ -103,18 +81,22 @@ export interface CertItem {
|
|
|
gigType: string
|
|
gigType: string
|
|
|
gigChannel: string
|
|
gigChannel: string
|
|
|
subjectLocation: string
|
|
subjectLocation: string
|
|
|
- callbackStatus: string
|
|
|
|
|
- certStatus: string
|
|
|
|
|
|
|
+
|
|
|
|
|
+ callbackStatus: string | null
|
|
|
|
|
+ certStatus: string | null
|
|
|
certStatusDisplay: string | null
|
|
certStatusDisplay: string | null
|
|
|
certRemark: string | null
|
|
certRemark: string | null
|
|
|
|
|
+
|
|
|
userType: string | null
|
|
userType: string | null
|
|
|
bankPhone: string | null
|
|
bankPhone: string | null
|
|
|
bankCardNumber: string | null
|
|
bankCardNumber: string | null
|
|
|
|
|
+
|
|
|
idCardFrontUrl: string | null
|
|
idCardFrontUrl: string | null
|
|
|
idCardBackUrl: string | null
|
|
idCardBackUrl: string | null
|
|
|
certVideo1Url: string | null
|
|
certVideo1Url: string | null
|
|
|
certVideo2Url: string | null
|
|
certVideo2Url: string | null
|
|
|
agreementUrl: string | null
|
|
agreementUrl: string | null
|
|
|
|
|
+
|
|
|
createTime: string
|
|
createTime: string
|
|
|
updateTime: string
|
|
updateTime: string
|
|
|
createUser: number
|
|
createUser: number
|