85 lines
1.4 KiB
Plaintext
Raw Normal View History

2025-02-17 14:20:40 +08:00
export interface RegistrationDeviceNoRsp {
registrationDeviceNoRsp: RegistrationDeviceNoRspDetails;
}
interface RegistrationDeviceNoRspDetails {
head: Head;
}
interface Head {
resultCode: string;
time: string;
resultMessage: string;
}
2025-02-19 13:24:07 +08:00
interface ImageCompareRsp {
head: Head;
body: ESObject
2025-02-18 13:43:20 +08:00
}
2025-02-19 13:24:07 +08:00
2025-02-18 13:22:38 +08:00
export interface FaceCompareResp {
imageCompareRsp?: ImageCompareRsp
}
export interface ResponseDataType {
initializationRsp?: ImageCompareRsp
2025-02-18 13:22:38 +08:00
}
2025-02-19 13:30:32 +08:00
export interface ExaminerLoginInfo {
2025-02-18 13:43:20 +08:00
carId?: string;
examinationRoomId?: string;
examinerName?: string;
examinerPwd?: string;
username?: string;
2025-02-19 13:24:07 +08:00
kgxm?: string;
ksyh?: string;
2025-02-19 10:22:59 +08:00
}
2025-02-19 13:24:07 +08:00
2025-02-19 14:32:59 +08:00
export interface SpzdType {
2025-02-18 13:43:20 +08:00
carId?: string;
examinationRoomId?: string;
examinerName?: string;
examinerPwd?: string;
username?: string;
2025-02-19 13:30:32 +08:00
kgxm?: string;
ksyh?: string;
2025-02-19 13:22:02 +08:00
}
2025-02-19 13:30:32 +08:00
export interface IdCard {
2025-02-19 13:22:02 +08:00
name?: string;
sex?: string;
nation?: string;
born?: string;
address?: string;
2025-02-19 13:30:32 +08:00
idCard?: string;
photo?: string;
}
2025-02-19 13:24:07 +08:00
export interface TimeInfo {
mode: string;
url: string;
paraKdid: string;
kdid: string;
carid: string;
ksdd: string;
}
2025-02-19 14:32:59 +08:00
export interface CarConfigurationInfoResponse {
body: CarConfigurationInfoResponseBody
}
interface CarConfigurationInfoResponseBody {
ES_CHECK_CAR_ITEM: Array<ES_CHECK_CAR_ITEMItem>;
}
interface ES_CHECK_CAR_ITEMItem {
ITEMS: string;
}
export interface ObtainCarExamInfoParams {
time: string
deviceNo: string
}