ผู้ถูกร้องเรียน

This commit is contained in:
setthawutttty 2023-12-01 11:44:11 +07:00
parent 97fde66a79
commit 62ad5673c6
5 changed files with 31 additions and 8 deletions

View file

@ -12,6 +12,20 @@ interface ListData {
}
interface ArrayPerson {
id:string
idcard:string
name:string
prefix:string
firstName:string
lastName:string
posNo:string
position:string
positionLevel:string
salary:number|null
organization:string
}
interface ArrayPersonAdd {
personId:string
idcard:string
name:string
@ -24,8 +38,9 @@ interface ArrayPerson {
salary:number|null
organization:string
}
interface ocListType{
organizationId:string
organizationName:string
}
export type { ListData,ArrayPerson,ocListType };
export type { ListData,ArrayPerson,ocListType,ArrayPersonAdd };