รายละเอียดรับโอน
This commit is contained in:
parent
b4ac343685
commit
1a7b4bf418
11 changed files with 1283 additions and 142 deletions
|
|
@ -1,5 +1,3 @@
|
|||
import { type } from "os";
|
||||
|
||||
interface ResponseTitle {
|
||||
fullname: string;
|
||||
organizationPositionOld: string;
|
||||
|
|
@ -7,4 +5,53 @@ interface ResponseTitle {
|
|||
positionTypeOld: string;
|
||||
}
|
||||
|
||||
export type { ResponseTitle };
|
||||
interface ResponseRow {
|
||||
personalId: string;
|
||||
citizenId: string;
|
||||
fullname: string;
|
||||
organizationName: string;
|
||||
orgName: string;
|
||||
organizationShortName: string;
|
||||
positionNumber: string;
|
||||
positionPath: string;
|
||||
birthday: string | null;
|
||||
status: string;
|
||||
}
|
||||
|
||||
interface ResponseData {
|
||||
citizenId: string;
|
||||
createdAt: Date;
|
||||
dateOfBirth: Date;
|
||||
educationOld: string;
|
||||
firstname: string;
|
||||
gender: string;
|
||||
id: string;
|
||||
isActive: boolean;
|
||||
lastname: string;
|
||||
organizationName: string;
|
||||
organizationPositionId: string;
|
||||
organizationPositionOld: string;
|
||||
organizationShortName: string;
|
||||
posNoId: string;
|
||||
positionId: string;
|
||||
positionLevel: string;
|
||||
positionLevelId: string;
|
||||
positionLevelOld: string;
|
||||
positionLine: string;
|
||||
positionLineId: string;
|
||||
positionNumber: string;
|
||||
positionNumberOld: string;
|
||||
positionPath: string;
|
||||
positionPathSide: string;
|
||||
positionPathSideId: string;
|
||||
positionType: string;
|
||||
positionTypeId: string;
|
||||
positionTypeOld: string;
|
||||
prefix: string;
|
||||
reason: string;
|
||||
recruitDate: Date;
|
||||
salary: number;
|
||||
status: string;
|
||||
}
|
||||
|
||||
export type { ResponseTitle, ResponseData, ResponseRow };
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue