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-10-18 11:46:28 +07:00
|
|
|
interface investigatefactsDataRowType {
|
2023-11-06 15:13:36 +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;
|
|
|
|
|
status: string | undefined;
|
|
|
|
|
active: string | undefined;
|
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 {
|
|
|
|
|
nameDirector: string;
|
|
|
|
|
position: string;
|
|
|
|
|
duty: string;
|
|
|
|
|
email: string;
|
|
|
|
|
telephone: string;
|
2023-11-07 12:13:42 +07:00
|
|
|
role: 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,
|
|
|
|
|
investigatefactsDataRowType,
|
|
|
|
|
investigateDisDataRowType,
|
|
|
|
|
directorType,
|
|
|
|
|
};
|