Popup โครงสร้างอัตรากำลังใหม่
This commit is contained in:
parent
18b7a3b4e6
commit
1d77c2315e
5 changed files with 623 additions and 3 deletions
|
|
@ -7,4 +7,35 @@ interface DataOption {
|
|||
name: string;
|
||||
}
|
||||
|
||||
export type { Pagination, DataOption };
|
||||
interface FormDataAgency {
|
||||
ocName:string
|
||||
shortName:string
|
||||
ocNo:string
|
||||
ocLevel:string
|
||||
telOut:string
|
||||
telIn:string
|
||||
tel:string
|
||||
}
|
||||
interface FormDataPosition {
|
||||
prefixNo:string
|
||||
positionNo:string
|
||||
suffixNo:string
|
||||
confirm:boolean
|
||||
}
|
||||
|
||||
interface FormAgencyRef {
|
||||
ocName: object | null;
|
||||
shortName: object | null;
|
||||
ocNo: object | null;
|
||||
ocLevel: object | null;
|
||||
telOut: object | null;
|
||||
telIn: object | null;
|
||||
tel: object | null;
|
||||
[key: string]: any;
|
||||
}
|
||||
interface FormPositionRef {
|
||||
prefixNo: object | null;
|
||||
positionNo: object | null;
|
||||
[key: string]: any;
|
||||
}
|
||||
export type { Pagination, DataOption,FormDataAgency,FormDataPosition,FormAgencyRef,FormPositionRef };
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue