api รอบการขึ้นเงินเดือน

This commit is contained in:
setthawutttty 2024-02-23 10:53:16 +07:00
parent d9a1462cfc
commit 2a88403f6a
5 changed files with 746 additions and 5 deletions

View file

@ -40,4 +40,23 @@ interface SalaryPosLevel {
posLevelRank: number;
}
export type { Salary, SalaryRate, SalaryPosType, SalaryPosLevel };
interface RowList {
id: string;
period: string|null;
isActive: boolean|null;
effectiveDate: Date|null|string;
status: string|null;
}
interface Row {
data: [Row];
total: number;
}
interface ObjectRef {
period: object | null;
effectiveDate: object | null;
[key: string]: any;
}
export type { Salary, SalaryRate, SalaryPosType, SalaryPosLevel,RowList,Row,ObjectRef,DataOption };