api ผังบัญชีค่าจ้างลูกจ้างประจำ => บัญชีโครงสร้าง
This commit is contained in:
parent
20ad3b34e7
commit
94e5e136e6
9 changed files with 648 additions and 107 deletions
|
|
@ -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 };
|
||||
Loading…
Add table
Add a link
Reference in a new issue