tabel OrgGroup

This commit is contained in:
AdisakKanthawilang 2024-01-24 17:22:41 +07:00
parent 688e94e26a
commit 0069c3f491
7 changed files with 71 additions and 37 deletions

View file

@ -99,14 +99,14 @@ export class OrgRoot extends EntityBase {
@OneToMany(() => OrgChild1, orgChild1 => orgChild1.orgRoot)
orgChild1s: OrgChild1[];
@OneToMany(() => OrgChild2, orgChild2 => orgChild2.orgRoot)
orgChild2s: OrgChild2[];
// @OneToMany(() => OrgChild2, orgChild2 => orgChild2.orgRoot)
// orgChild2s: OrgChild2[];
@OneToMany(() => OrgChild3, orgChild3 => orgChild3.orgRoot)
orgChild3s: OrgChild3[];
// @OneToMany(() => OrgChild3, orgChild3 => orgChild3.orgRoot)
// orgChild3s: OrgChild3[];
@OneToMany(() => OrgChild4, orgChild4 => orgChild4.orgRoot)
orgChild4s: OrgChild4[];
// @OneToMany(() => OrgChild4, orgChild4 => orgChild4.orgRoot)
// orgChild4s: OrgChild4[];
}