2023-11-24 16:52:10 +07:00
|
|
|
interface FormData {
|
2023-11-29 13:48:07 +07:00
|
|
|
resultDescription: string;
|
2023-11-24 16:52:10 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
interface FormRef {
|
2023-11-29 13:48:07 +07:00
|
|
|
resultDescription: object | null;
|
2023-11-24 16:52:10 +07:00
|
|
|
[key: string]: any;
|
|
|
|
|
}
|
|
|
|
|
|
2023-12-01 15:44:16 +07:00
|
|
|
interface DataOption {
|
|
|
|
|
id: string;
|
|
|
|
|
name: string;
|
|
|
|
|
}
|
|
|
|
|
interface DataOptionRes {
|
|
|
|
|
organizationId: string;
|
|
|
|
|
organizationName: string;
|
|
|
|
|
}
|
|
|
|
|
interface DataListRow {
|
|
|
|
|
id: string
|
|
|
|
|
idInvestigate: string
|
|
|
|
|
idComplaint: string
|
|
|
|
|
respondentType: string
|
|
|
|
|
persons: PersonType
|
|
|
|
|
organizationId: string
|
|
|
|
|
resultDescription: string
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
interface PersonType{
|
|
|
|
|
id: string
|
|
|
|
|
idcard: string
|
|
|
|
|
name: string
|
|
|
|
|
prefix: string
|
|
|
|
|
firstName: string
|
|
|
|
|
lastName: string
|
|
|
|
|
position: string
|
|
|
|
|
positionLevel: string
|
|
|
|
|
salary: number
|
|
|
|
|
personId: string
|
|
|
|
|
posNo: string
|
|
|
|
|
organization: string
|
|
|
|
|
}
|
|
|
|
|
export type { FormData, FormRef,DataOption,DataOptionRes,personType,DataListRow};
|