This commit is contained in:
Warunee Tamkoo 2024-08-01 12:12:28 +07:00
parent 46533bbd62
commit 15d3ac574d
128 changed files with 347 additions and 322 deletions

View file

@ -0,0 +1,54 @@
interface EmployeeHistory {
createdAt: string;
createdFullName: string;
createdUserId: string;
employeeMoneyAllowance: string;
employeeMoneyEmployee: string;
employeeMoneyEmployer: string;
employeeMoneyIncrease: string;
employeeOc: string;
employeeTypeIndividual: string;
employeeWage: string;
id: string;
lastUpdateFullName: string;
lastUpdateUserId: string;
lastUpdatedAt: string;
positionEmployeeGroupId: string;
positionEmployeeLineId: string;
positionEmployeePositionId: string;
}
interface Employment {
command: string;
date: string | Date;
id: string;
}
interface EmploymentHistory {
command: string;
createdAt: string | Date;
createdFullName: string;
createdUserId: string;
date: string | Date;
id: string;
lastUpdateFullName: string;
lastUpdateUserId: string;
lastUpdatedAt: string | Date;
profileEmployeeEmploymentId: string;
}
interface ResEmployee {
id: string;
positionEmployeeGroupId: string;
positionEmployeeLineId: string;
positionEmployeePositionId: string;
employeeOc: string;
employeeTypeIndividual: string;
employeeWage: string;
employeeMoneyIncrease: string;
employeeMoneyAllowance: string;
employeeMoneyEmployee: string;
employeeMoneyEmployer: string;
}
export type { Employment, EmploymentHistory, EmployeeHistory, ResEmployee };