api คำขอแก้ไข
This commit is contained in:
parent
0696672f86
commit
85c6093970
8 changed files with 546 additions and 30 deletions
|
|
@ -27,6 +27,7 @@ import { ProfileFamilyCouple } from "./ProfileFamilyCouple";
|
|||
import { ProfileChildren } from "./ProfileChildren";
|
||||
import { ProfileDiscipline } from "./ProfileDiscipline";
|
||||
import { ProfileEmployee } from "./ProfileEmployee";
|
||||
import { ProfileEdit } from "./ProfileEdit";
|
||||
|
||||
@Entity("profile")
|
||||
export class Profile extends EntityBase {
|
||||
|
|
@ -340,6 +341,9 @@ export class Profile extends EntityBase {
|
|||
@OneToMany(() => ProfileAvatar, (profileAvatar) => profileAvatar.profile)
|
||||
profileAvatars: ProfileAvatar[];
|
||||
|
||||
@OneToMany(() => ProfileEdit, (profileEdit) => profileEdit.profile)
|
||||
profileEdits: ProfileEdit[];
|
||||
|
||||
@OneToMany(() => ProfileFamilyHistory, (profileFamily) => profileFamily.profile)
|
||||
profileFamily: ProfileFamilyHistory[];
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue