38 lines
648 B
TypeScript
38 lines
648 B
TypeScript
|
|
interface listAppointType {
|
||
|
|
personalId:string
|
||
|
|
citizenId:number
|
||
|
|
fullname:string
|
||
|
|
organizationName:string
|
||
|
|
orgName:string
|
||
|
|
organizationShortName:string
|
||
|
|
positionNumber:string
|
||
|
|
positionPath:string
|
||
|
|
status:string
|
||
|
|
createdAt:string
|
||
|
|
birthday:string
|
||
|
|
}
|
||
|
|
|
||
|
|
interface resData {
|
||
|
|
id:string
|
||
|
|
citizenId:number
|
||
|
|
prefix:string
|
||
|
|
firstname:string
|
||
|
|
lastname:string
|
||
|
|
organizationName:string
|
||
|
|
organizationShortName:string
|
||
|
|
positionNumber:string
|
||
|
|
positionPath:string
|
||
|
|
status:string
|
||
|
|
createdAt:Date
|
||
|
|
dateOfBirth:Date
|
||
|
|
}
|
||
|
|
interface orgFilter{
|
||
|
|
orgName:string
|
||
|
|
status:string
|
||
|
|
}
|
||
|
|
|
||
|
|
export type {
|
||
|
|
listAppointType,
|
||
|
|
resData,
|
||
|
|
orgFilter
|
||
|
|
}
|