แก้ไขข้อมูลตำแหน่ง
This commit is contained in:
parent
06fb09afa2
commit
fc5f28ee36
7 changed files with 1403 additions and 1 deletions
|
|
@ -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[];
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue