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

@ -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 };