api ผังบัญชีค่าจ้างลูกจ้างประจำ => บัญชีโครงสร้าง

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-03-13 15:07:10 +07:00
parent 20ad3b34e7
commit 94e5e136e6
9 changed files with 648 additions and 107 deletions

View file

@ -0,0 +1,17 @@
interface EmployeeSalary {
date: Date;
details: string;
endDate: Date;
group: number;
id: string;
isActive: boolean;
name: string;
startDate: Date;
}
interface EmployeeRateSalary {
id: string;
salaryDay: number;
salaryMonth: number;
step: number;
}
export type { EmployeeSalary, EmployeeRateSalary };