API รายการผังบัญชีเงินเดือน
This commit is contained in:
parent
3b0dea6b52
commit
7ca7518c23
7 changed files with 461 additions and 129 deletions
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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 };
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue