แก้ไขฟอร์มสืบสวน และผู้ถูกร้องเรียนของวินัย

This commit is contained in:
Warunee Tamkoo 2023-12-01 16:15:33 +07:00
parent ab15f989cc
commit 7af8370b08
8 changed files with 153 additions and 200 deletions

View file

@ -10,6 +10,7 @@ interface Persons {
salary: number; //เงินเดือน
organization: string; //สังกัด
name: string;
report?: boolean;
}
interface PersonsArray {
id: string; //id อ้างอิง profile
@ -23,6 +24,7 @@ interface PersonsArray {
salary: number; //เงินเดือน
organization: string; //สังกัด
name: string;
report?: boolean;
}
interface Director {
directorId?: string;
@ -128,4 +130,4 @@ interface DisciplinaryRef {
[key: string]: any;
}
export type { FormData, DisciplinaryRef, Persons, Director,PersonsArray };
export type { FormData, DisciplinaryRef, Persons, Director, PersonsArray };