This commit is contained in:
setthawutttty 2024-01-26 12:07:49 +07:00
parent ab7513d8a2
commit ad17f85efd
4 changed files with 169 additions and 13 deletions

View file

@ -8,19 +8,26 @@ interface DataOption {
}
interface FormDataAgency {
ocName:string
shortName:string
ocNo:string
ocLevel:string
telOut:string
telIn:string
tel:string
ocName: string
shortName: string
ocNo: string
ocLevel: string
telOut: string
telIn: string
tel: string
}
interface FormDataPosition {
prefixNo:string
positionNo:string
suffixNo:string
confirm:boolean
prefixNo: string
positionNo: string
suffixNo: string
confirm: boolean
}
interface FormDataNewStructure {
orgRevisionName: string
type: string
}
interface FormAgencyRef {
@ -42,4 +49,9 @@ interface FormDateTimeRef {
dateTime: object | null;
[key: string]: any;
}
export type { Pagination, DataOption,FormDataAgency,FormDataPosition,FormAgencyRef,FormPositionRef,FormDateTimeRef };
interface FormNewStructureRef {
orgRevisionName: object | null;
type: object | null;
[key: string]: any;
}
export type { Pagination, DataOption, FormDataAgency, FormDataPosition, FormAgencyRef, FormPositionRef, FormDateTimeRef,FormDataNewStructure,FormNewStructureRef };