ตำแหน่ง/เงินเดือน

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-02-09 14:16:14 +07:00
parent 7623a1e762
commit 3b0f85fea1
5 changed files with 75 additions and 29 deletions

View file

@ -47,6 +47,48 @@ interface RequestItemsObject {
salaryStatus: string | null;
createdFullName: string;
createdAt: Date;
postionTypeName: string;
positionLevelName: string;
}
interface RequestItemsHistory {
id: string;
date: Date;
amount: number;
positionSalaryAmount: number;
mouthSalaryAmount: number;
oc: string;
ocId: string;
position: string;
positionName: string;
positionId: string;
posNo: string;
posNoId: string;
positionLine: string;
positionLineName: string;
positionLineId: string;
positionPathSide: string;
positionPathSideId: string;
positionPathSideName: string;
positionType: string;
positionTypeId: string;
positionLevel: string;
positionLevelId: string;
positionExecutive: string;
positionExecutiveName: string;
positionExecutiveId: string;
positionExecutiveSide: string;
positionExecutiveSideId: string;
salaryClass: string;
salaryRef: string;
refCommandNo: string;
orgName: string;
agencyName: string;
cLevel: string;
// refCommandDate: Date | null;
salaryStatus: string | null;
createdFullName: string;
createdAt: Date;
}
interface RequestItemsEmployee {
@ -96,4 +138,5 @@ export type {
DataProps,
RequestItemsEmployee,
DataPropsEmployee,
RequestItemsHistory
};