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-10-18 16:02:45 +07:00
|
|
|
subject: string;
|
|
|
|
|
interrogated: string;
|
|
|
|
|
fault: string;
|
|
|
|
|
status: string;
|
|
|
|
|
active: string;
|
2023-10-18 13:39:17 +07:00
|
|
|
}
|
2023-10-18 13:34:58 +07:00
|
|
|
interface MyObjectRef {
|
2023-10-18 16:02:45 +07:00
|
|
|
orderType: any;
|
|
|
|
|
orderBy: any;
|
|
|
|
|
listInvestigation: any;
|
|
|
|
|
authority: any;
|
|
|
|
|
orderNumber: any;
|
|
|
|
|
dateYear: any;
|
|
|
|
|
date: any;
|
|
|
|
|
authorityPosition: any;
|
|
|
|
|
subject: any;
|
|
|
|
|
mistakeDetail: any;
|
|
|
|
|
[key: string]: any;
|
2023-10-18 13:34:58 +07:00
|
|
|
}
|
2023-10-18 14:41:11 +07:00
|
|
|
interface MyObjectComplaintsRef {
|
2023-10-18 16:02:45 +07:00
|
|
|
complainantType: any;
|
|
|
|
|
complainant: any;
|
|
|
|
|
office: any;
|
|
|
|
|
agency: any;
|
|
|
|
|
topicComplaint: any;
|
|
|
|
|
datereceive: any;
|
|
|
|
|
dateconsideration: any;
|
|
|
|
|
offenseDescription: any;
|
|
|
|
|
considerationLevel: any;
|
|
|
|
|
datewarn: any;
|
|
|
|
|
receivecomplaints: any;
|
|
|
|
|
petitioner: any;
|
|
|
|
|
files: any;
|
|
|
|
|
[key: string]: any;
|
2023-10-18 14:41:11 +07:00
|
|
|
}
|
2023-10-18 11:46:28 +07:00
|
|
|
|
2023-10-18 16:02:45 +07:00
|
|
|
interface investigateDisDataRowType {
|
|
|
|
|
subject: string;
|
|
|
|
|
interrogated: string;
|
|
|
|
|
fault: string;
|
|
|
|
|
penaltyLevel: string;
|
|
|
|
|
caseFault: string;
|
|
|
|
|
dateInvestigate: string;
|
|
|
|
|
status: string;
|
|
|
|
|
active: string;
|
|
|
|
|
}
|
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-10-18 13:39:17 +07:00
|
|
|
|
2023-10-18 16:02:45 +07:00
|
|
|
export type {
|
|
|
|
|
DataOption,
|
|
|
|
|
investigatefactsDataRowType,
|
|
|
|
|
MyObjectRef,
|
|
|
|
|
MyObjectComplaintsRef,
|
|
|
|
|
investigateDisDataRowType,
|
|
|
|
|
directorType,
|
|
|
|
|
};
|