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

@ -28,6 +28,7 @@ import { ProfileChildren } from "./ProfileChildren";
import { ProfileDiscipline } from "./ProfileDiscipline";
import { ProfileEmployee } from "./ProfileEmployee";
import { ProfileEdit } from "./ProfileEdit";
import { ProfileDevelopment } from "./ProfileDevelopment";
@Entity("profile")
export class Profile extends EntityBase {
@ -338,6 +339,9 @@ export class Profile extends EntityBase {
@OneToMany(() => ProfileOther, (profileOther) => profileOther.profile)
profileOthers: ProfileOther[];
@OneToMany(() => ProfileDevelopment, (profileDevelopment) => profileDevelopment.profile)
profileDevelopments: ProfileDevelopment[];
@OneToMany(() => ProfileAvatar, (profileAvatar) => profileAvatar.profile)
profileAvatars: ProfileAvatar[];