แก้ไขข้อมูลตำแหน่ง

This commit is contained in:
mamoss 2025-03-19 17:51:01 +07:00
parent 06fb09afa2
commit fc5f28ee36
7 changed files with 1403 additions and 1 deletions

View file

@ -36,6 +36,7 @@ import { DevelopmentRequest } from "./DevelopmentRequest";
import { RoleKeycloak } from "./RoleKeycloak";
import { StateOperatorUser } from "./StateOperatorUser";
import { EmployeeTempPosMaster } from "./EmployeeTempPosMaster";
import { ProfileSalaryTemp } from "./ProfileSalaryTemp";
@Entity("profileEmployee")
export class ProfileEmployee extends EntityBase {
@ -663,6 +664,13 @@ export class ProfileEmployee extends EntityBase {
})
leaveType: string;
@Column({
comment: "สถานะการตรวจสอบ",
length: 40,
default: "PENDING",
})
statusCheckEdit: string;
@OneToMany(() => ProfileEmployeeInformationHistory, (v) => v.profileEmployeeInformation)
information_histories: ProfileEmployeeInformationHistory[];
@ -684,6 +692,9 @@ export class ProfileEmployee extends EntityBase {
@OneToMany(() => ProfileSalary, (v) => v.profileEmployee)
profileSalary: ProfileSalary[];
@OneToMany(() => ProfileSalaryTemp, (v) => v.profileEmployee)
profileSalaryTemp: ProfileSalaryTemp[];
@OneToMany(() => ProfileCertificate, (v) => v.profileEmployee)
profileCertificates: ProfileCertificate[];