updated format code

This commit is contained in:
Warunee Tamkoo 2024-09-03 11:28:01 +07:00
parent b75d69ea08
commit b14bad2249
241 changed files with 14012 additions and 13811 deletions

View file

@ -3,15 +3,15 @@ interface FormData {
disciplineType: string;
titleType: string;
oc: string;
file: any
disciplineDisciplinary_DocResults: any
file: any;
disciplineDisciplinary_DocResults: any;
year: number | null;
}
interface FileArray {
id:string
fileName:string
pathName:string
id: string;
fileName: string;
pathName: string;
}
interface FormRef {
resultDescription: object | null;
@ -27,27 +27,35 @@ interface DataOptionRes {
organizationName: string;
}
interface DataListRow {
id: string
idInvestigate: string
idComplaint: string
respondentType: string
persons: PersonType
organizationId: string
resultDescription: string
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
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 ,FileArray};
export type {
FormData,
FormRef,
DataOption,
DataOptionRes,
PersonType,
DataListRow,
FileArray,
};