no message

This commit is contained in:
kittapath 2024-08-27 09:21:22 +07:00
parent fde5f8d90a
commit 5a688215e7
9 changed files with 945 additions and 0 deletions

View file

@ -31,6 +31,7 @@ import { SubDistrict } from "./SubDistrict";
import { ProfileEmployeeInformationHistory } from "./ProfileEmployeeInformationHistory";
import { ProfileEmployeeEmployment } from "./ProfileEmployeeEmployment";
import { ProfileEdit } from "./ProfileEdit";
import { ProfileDevelopment } from "./ProfileDevelopment";
@Entity("profileEmployee")
export class ProfileEmployee extends EntityBase {
@ -626,6 +627,9 @@ export class ProfileEmployee extends EntityBase {
@OneToMany(() => ProfileOther, (v) => v.profileEmployee)
profileOthers: ProfileOther[];
@OneToMany(() => ProfileDevelopment, (v) => v.profileEmployee)
profileDevelopments: ProfileDevelopment[];
@OneToMany(() => ProfileAvatar, (v) => v.profileEmployee)
profileAvatars: ProfileAvatar[];