แก้ฟิวขอทุน
This commit is contained in:
parent
7e9aa4e0fa
commit
de746486d1
5 changed files with 451 additions and 410 deletions
|
|
@ -4,6 +4,7 @@ import { PosLevel } from "./PosLevel";
|
|||
import { ActualGoal } from "./ActualGoal";
|
||||
import { PlannedGoal } from "./PlannedGoal";
|
||||
import { DevelopmentHistory } from "./DevelopmentHistory";
|
||||
import { DevelopmentScholarship } from "./DevelopmentScholarship";
|
||||
|
||||
@Entity("posType")
|
||||
export class PosType extends EntityBase {
|
||||
|
|
@ -34,6 +35,18 @@ export class PosType extends EntityBase {
|
|||
|
||||
@OneToMany(() => DevelopmentHistory, (developmentHistory) => developmentHistory.posType)
|
||||
developmentHistorys: DevelopmentHistory[];
|
||||
|
||||
@OneToMany(
|
||||
() => DevelopmentScholarship,
|
||||
(developmentScholarship) => developmentScholarship.posType,
|
||||
)
|
||||
developmentScholars: DevelopmentScholarship[];
|
||||
|
||||
@OneToMany(
|
||||
() => DevelopmentScholarship,
|
||||
(developmentScholarship) => developmentScholarship.posTypeguarantor,
|
||||
)
|
||||
developmentScholarGuarantors: DevelopmentScholarship[];
|
||||
}
|
||||
|
||||
export class CreatePosType {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue