แก้ สืบ สอบ

This commit is contained in:
setthawutttty 2023-12-15 17:29:47 +07:00
parent 749113a3cc
commit 480393efe3
8 changed files with 375 additions and 31 deletions

View file

@ -1,7 +1,18 @@
interface FormData {
resultDescription: string;
disciplineType: string;
titleType: string;
oc: string;
file: any
disciplineComplaint_Appeal_Docs: [FileArray]
year: number | null;
}
interface FileArray {
id:string
fileName:string
pathName:string
}
interface FormRef {
resultDescription: object | null;
[key: string]: any;
@ -39,4 +50,4 @@ interface PersonType {
posNo: string
organization: string
}
export type { FormData, FormRef, DataOption, DataOptionRes, PersonType, DataListRow };
export type { FormData, FormRef, DataOption, DataOptionRes, PersonType, DataListRow ,FileArray};