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

@ -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 };