API รายการผังบัญชีเงินเดือน

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-02-16 15:57:30 +07:00
parent 3b0dea6b52
commit 7ca7518c23
7 changed files with 461 additions and 129 deletions

View file

@ -18,8 +18,8 @@ interface ItemsMenu {
}
interface ObjectSalaryRef {
salaryType: object | null;
posTyp: object | null;
posLevel: object | null;
posTypId: object | null;
posLevelId: object | null;
date: object | null;
startDate: object | null;
endDate: object | null;

View file

@ -26,4 +26,17 @@ interface SalaryRate {
isNext: boolean;
}
export type { Salary, SalaryRate };
interface SalaryPosType {
id: string;
posTypeName: string;
posTypeRank: string;
}
interface SalaryPosLevel {
id: string;
posLevelAuthority: string;
posLevelName: string;
posLevelRank: number;
}
export type { Salary, SalaryRate, SalaryPosType, SalaryPosLevel };