api รอบการขึ้นเงินเดือน
This commit is contained in:
parent
d9a1462cfc
commit
2a88403f6a
5 changed files with 746 additions and 5 deletions
|
|
@ -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 };
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue