ผังบัญชีค่าจ้างลูกจ้างประจำ => บัญชีโครงสร้าง
This commit is contained in:
parent
64683fc074
commit
febf161d81
10 changed files with 896 additions and 12 deletions
7
src/modules/13_salary/interface/index/EmployeeChart.ts
Normal file
7
src/modules/13_salary/interface/index/EmployeeChart.ts
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
interface ObjectCharRef {
|
||||
name: object | null;
|
||||
group: object | null;
|
||||
|
||||
[key: string]: any;
|
||||
}
|
||||
export type { ObjectCharRef };
|
||||
10
src/modules/13_salary/interface/request/EmployeeChart.ts
Normal file
10
src/modules/13_salary/interface/request/EmployeeChart.ts
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
interface FormDataChar {
|
||||
name: string; //ชื่อผังบัญชีโครงสร้างอัตราค่าจ้างลูกจ้าง
|
||||
group: string; //*กลุ่มบัญชีค่าจ้าง
|
||||
isActive: boolean; //*สถานะการใช้งาน
|
||||
date: Date | null; //ให้ไว้ ณ วันที่
|
||||
startDate: Date | null; //วันที่มีผลบังคับใช้
|
||||
endDate: Date | null; //วันที่สิ้นสุดบังคับใช้
|
||||
details: string; //คำอธิบาย
|
||||
}
|
||||
export type { FormDataChar };
|
||||
Loading…
Add table
Add a link
Reference in a new issue