hrms-mgt/src/modules/05_placement/interface/response/AppointMent.ts

38 lines
648 B
TypeScript
Raw Normal View History

2023-09-22 11:16:25 +07:00
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
}