api ผังบัญชีค่าจ้างลูกจ้างประจำ => บัญชีโครงสร้าง
This commit is contained in:
parent
20ad3b34e7
commit
94e5e136e6
9 changed files with 648 additions and 107 deletions
|
|
@ -4,4 +4,12 @@ interface ObjectCharRef {
|
|||
|
||||
[key: string]: any;
|
||||
}
|
||||
export type { ObjectCharRef };
|
||||
|
||||
interface ObjectReteRef {
|
||||
salaryNo: object | null;
|
||||
salaryMonth: object | null;
|
||||
salaryDay: object | null;
|
||||
|
||||
[key: string]: any;
|
||||
}
|
||||
export type { ObjectCharRef, ObjectReteRef };
|
||||
|
|
|
|||
|
|
@ -7,4 +7,18 @@ interface FormDataChar {
|
|||
endDate: Date | null; //วันที่สิ้นสุดบังคับใช้
|
||||
details: string; //คำอธิบาย
|
||||
}
|
||||
export type { FormDataChar };
|
||||
|
||||
interface FormFilter {
|
||||
page: number;
|
||||
pageSize: number;
|
||||
keyword: string;
|
||||
}
|
||||
|
||||
interface FormDataRate {
|
||||
salaryEmployeeId: string | undefined;
|
||||
step: number;
|
||||
salaryMonth: number;
|
||||
salaryDay: number;
|
||||
}
|
||||
|
||||
export type { FormDataChar, FormFilter, FormDataRate };
|
||||
|
|
|
|||
|
|
@ -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