2023-10-16 18:07:42 +07:00
|
|
|
interface DataOption {
|
|
|
|
|
id: string;
|
|
|
|
|
name: string;
|
|
|
|
|
}
|
2023-10-18 11:46:28 +07:00
|
|
|
interface investigatefactsDataRowType {
|
2023-10-18 13:39:17 +07:00
|
|
|
subject: string;
|
|
|
|
|
interrogated: string;
|
|
|
|
|
fault: string;
|
|
|
|
|
status: string;
|
|
|
|
|
active: string;
|
|
|
|
|
}
|
2023-10-18 13:34:58 +07:00
|
|
|
interface MyObjectRef {
|
|
|
|
|
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 14:41:11 +07:00
|
|
|
interface MyObjectComplaintsRef {
|
|
|
|
|
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 11:46:28 +07:00
|
|
|
|
2023-10-16 13:28:48 +07:00
|
|
|
export type {
|
2023-10-18 13:34:58 +07:00
|
|
|
DataOption,
|
2023-10-18 13:39:17 +07:00
|
|
|
investigatefactsDataRowType,
|
|
|
|
|
MyObjectRef,
|
2023-10-18 14:41:11 +07:00
|
|
|
MyObjectComplaintsRef,
|
2023-10-16 13:28:48 +07:00
|
|
|
};
|
2023-10-18 13:39:17 +07:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|