no message
This commit is contained in:
parent
fde5f8d90a
commit
5a688215e7
9 changed files with 945 additions and 0 deletions
|
|
@ -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[];
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue