เงินเดือน => ปรีบ code รอบการขึ้นเงินเดือน

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-04-30 15:19:32 +07:00
parent 6bf2247962
commit b0b2f0a8d4
3 changed files with 285 additions and 322 deletions

View file

@ -42,13 +42,13 @@ interface SalaryPosLevel {
interface RowList {
id: string;
period: string|null;
isActive: boolean|null;
isClose: boolean|null;
effectiveDate: Date|null|string;
year: number|null;
status: string|null;
revisionId: string|null;
period: string | null;
isActive: boolean | null;
isClose: boolean | null;
effectiveDate: Date | null | string;
year: number | null;
status: string | null;
revisionId: string | null;
}
interface Row {
@ -56,11 +56,12 @@ interface Row {
total: number;
}
interface ObjectRef {
period: object | null;
effectiveDate: object | null;
year: object | null;
[key: string]: any;
}
export type { Salary, SalaryRate, SalaryPosType, SalaryPosLevel,RowList,Row,ObjectRef,DataOption };
export type {
Salary,
SalaryRate,
SalaryPosType,
SalaryPosLevel,
RowList,
Row,
DataOption,
};