2023-10-16 18:07:42 +07:00
|
|
|
interface DataOption {
|
2023-10-18 16:02:45 +07:00
|
|
|
id: string;
|
|
|
|
|
name: string;
|
2023-10-16 18:07:42 +07:00
|
|
|
}
|
2023-11-08 15:25:01 +07:00
|
|
|
|
|
|
|
|
interface DataNumberOption {
|
|
|
|
|
id: number;
|
|
|
|
|
name: string;
|
|
|
|
|
}
|
|
|
|
|
|
2023-11-23 15:47:14 +07:00
|
|
|
interface InvestigatefactsDataRowType {
|
2023-11-06 15:13:36 +07:00
|
|
|
id:string,
|
2023-11-24 17:49:25 +07:00
|
|
|
title: string;
|
|
|
|
|
respondentType: string;
|
|
|
|
|
offenseDetails: string,
|
2023-11-23 15:47:14 +07:00
|
|
|
investigationDetail: string,
|
|
|
|
|
dateInvestigate: string,
|
2023-11-24 17:49:25 +07:00
|
|
|
investigationStatusResult: string,
|
2023-11-23 15:47:14 +07:00
|
|
|
status: string
|
2023-10-18 13:39:17 +07:00
|
|
|
}
|
2023-10-19 15:37:39 +07:00
|
|
|
|
2023-10-18 16:02:45 +07:00
|
|
|
interface investigateDisDataRowType {
|
2023-11-07 09:52:03 +07:00
|
|
|
id:string
|
2023-10-18 16:02:45 +07:00
|
|
|
subject: string;
|
|
|
|
|
interrogated: string;
|
2023-10-19 16:22:56 +07:00
|
|
|
fault: string | undefined;
|
|
|
|
|
penaltyLevel: string | undefined;
|
2023-11-02 16:44:02 +07:00
|
|
|
caseFault: string;
|
|
|
|
|
dateInvestigate: string | null;
|
2023-10-19 16:22:56 +07:00
|
|
|
status: string | undefined;
|
|
|
|
|
active: string | undefined;
|
2023-10-18 16:02:45 +07:00
|
|
|
}
|
2023-10-18 13:39:17 +07:00
|
|
|
|
2023-10-18 16:02:45 +07:00
|
|
|
interface directorType {
|
2023-11-24 17:49:25 +07:00
|
|
|
id:string
|
|
|
|
|
prefix:string
|
|
|
|
|
firstName:string
|
|
|
|
|
lastName:string
|
2023-10-18 16:02:45 +07:00
|
|
|
position: string;
|
|
|
|
|
email: string;
|
2023-11-24 17:49:25 +07:00
|
|
|
phone: string;
|
|
|
|
|
}
|
|
|
|
|
interface responseType {
|
|
|
|
|
id:string
|
|
|
|
|
name:string
|
|
|
|
|
prefix:string
|
|
|
|
|
firstName:string
|
|
|
|
|
lastName:string
|
|
|
|
|
position:string
|
|
|
|
|
email:string
|
|
|
|
|
phone:string
|
2023-10-18 16:02:45 +07:00
|
|
|
}
|
2023-10-18 13:39:17 +07:00
|
|
|
|
2023-10-18 16:02:45 +07:00
|
|
|
export type {
|
|
|
|
|
DataOption,
|
2023-11-23 15:47:14 +07:00
|
|
|
InvestigatefactsDataRowType,
|
2023-10-18 16:02:45 +07:00
|
|
|
investigateDisDataRowType,
|
|
|
|
|
directorType,
|
2023-11-24 17:49:25 +07:00
|
|
|
DataNumberOption,
|
|
|
|
|
responseType
|
2023-10-18 16:02:45 +07:00
|
|
|
};
|