แก้ไข component ทะเบียนประวัติ
This commit is contained in:
parent
98bcbe1bb1
commit
6730765a42
54 changed files with 3659 additions and 32 deletions
61
src/components/information/interface/response/Salary.ts
Normal file
61
src/components/information/interface/response/Salary.ts
Normal file
|
|
@ -0,0 +1,61 @@
|
|||
//ข้อมูล
|
||||
interface ResponseObject {
|
||||
id: string;
|
||||
date: Date;
|
||||
amount: number;
|
||||
positionSalaryAmount: number;
|
||||
mouthSalaryAmount: number;
|
||||
oc: string;
|
||||
ocId: string;
|
||||
position: string;
|
||||
positionId: string;
|
||||
posNo: string;
|
||||
posNoId: string;
|
||||
positionLine: string;
|
||||
positionLineId: string;
|
||||
positionPathSide: string;
|
||||
positionPathSideId: string;
|
||||
positionType: string;
|
||||
positionTypeId: string;
|
||||
positionLevel: string;
|
||||
positionLevelId: string;
|
||||
positionExecutive: string;
|
||||
positionExecutiveId: string;
|
||||
positionExecutiveSide: string;
|
||||
positionExecutiveSideId: string;
|
||||
salaryClass: string;
|
||||
salaryRef: string;
|
||||
refCommandNo: string;
|
||||
// refCommandDate: Date | null;
|
||||
createdFullName: string;
|
||||
createdAt: Date;
|
||||
}
|
||||
|
||||
interface ResponseObjectEmployee {
|
||||
amount: number;
|
||||
createdAt: Date;
|
||||
createdFullName: string;
|
||||
date: Date;
|
||||
id: string;
|
||||
mouthSalaryAmount: number;
|
||||
oc: string | null;
|
||||
ocId: string;
|
||||
posNo: string | null;
|
||||
posNoId: string | null;
|
||||
posNoEmployee: string | null;
|
||||
positionEmployeeGroup: string | null;
|
||||
positionEmployeeGroupId: string | null;
|
||||
positionEmployeeLevel: string | null;
|
||||
positionEmployeeLevelId: string | null;
|
||||
positionEmployeePosition: string | null;
|
||||
positionEmployeePositionId: string | null;
|
||||
positionEmployeePositionSide: string | null;
|
||||
positionEmployeePositionSideId: string | null;
|
||||
positionSalaryAmount: number;
|
||||
salaryClass: string | null;
|
||||
salaryRef: string | null;
|
||||
refCommandNo: string;
|
||||
// refCommandDate: Date | null;
|
||||
}
|
||||
|
||||
export type { ResponseObject, ResponseObjectEmployee };
|
||||
Loading…
Add table
Add a link
Reference in a new issue