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