แก้ไขผลการพิจารณาทางวินัย

This commit is contained in:
setthawutttty 2023-12-01 15:44:16 +07:00
parent d1f0d753ba
commit 5a28025906
6 changed files with 361 additions and 193 deletions

View file

@ -7,4 +7,36 @@ interface FormRef {
[key: string]: any;
}
export type { FormData, FormRef };
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};