UI Salary

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-02-16 11:12:16 +07:00
parent d1eab09ee4
commit 18ad7b102e
5 changed files with 612 additions and 8 deletions

View file

@ -27,4 +27,22 @@ interface ObjectSalaryRef {
[key: string]: any;
}
export type { DataOption, NewPagination, ItemsMenu, ObjectSalaryRef };
interface ObjectSalaryRateRef {
salary: object | null;
salaryHalf: object | null;
salaryHalfSpecial: object | null;
salaryFull: object | null;
salaryFullSpecial: object | null;
salaryFullHalf: object | null;
salaryFullHalfSpecial: object | null;
[key: string]: any;
}
export type {
DataOption,
NewPagination,
ItemsMenu,
ObjectSalaryRef,
ObjectSalaryRateRef,
};

View file

@ -14,4 +14,16 @@ interface Salary {
detail: string;
}
export type { Salary };
interface SalaryRate {
id: string;
salary: number;
salaryHalf: number;
salaryHalfSpecial: number;
salaryFull: number;
salaryFullSpecial: number;
salaryFullHalf: number;
salaryFullHalfSpecial: number;
isNext: boolean;
}
export type { Salary, SalaryRate };