รายการรับโอน

This commit is contained in:
STW_TTTY\stwtt 2024-05-02 16:36:46 +07:00
parent e9a4ff1d31
commit 8b9228a308
2 changed files with 40 additions and 64 deletions

View file

@ -233,6 +233,36 @@ interface TreeMain {
totalRootPositionNextVacant: number;
}
interface DataProfile {
child1: string | null;
child1ShortName: string | null;
child2: string | null;
child2ShortName: string | null;
child3: string | null;
child3ShortName: string | null;
child4: string | null;
child4ShortName: string | null;
createdAt: string | Date;
dateEnd: string | Date;
dateStart: string | Date;
firstName: string;
id: string;
isActive: boolean;
lastName: string;
organization: string;
organizationPositionOld: string;
posLevelName: string;
posMasterNo: number | null;
posTypeName: string;
position: string;
prefix: string;
profileId: string;
reason: string;
root: string;
rootShortName: string | null;
status: string;
}
export type {
ResponseTitle,
ResponseData,
@ -246,4 +276,5 @@ export type {
Positions,
DataPositionNo,
TreeMain,
DataProfile,
};