Merge branch 'develop' of github.com:Frappet/bma-ehr-kpi into develop
This commit is contained in:
commit
e29c7c127f
5 changed files with 312 additions and 171 deletions
|
|
@ -23,3 +23,24 @@ export class KpiLink extends EntityBase {
|
|||
@OneToMany(() => Position, (position) => position.kpiLink)
|
||||
positions: Position[];
|
||||
}
|
||||
export class createKpiLink {
|
||||
@Column()
|
||||
kpiGroupId: string;
|
||||
|
||||
@Column()
|
||||
positions: string[];
|
||||
|
||||
@Column()
|
||||
kpiCapacityIds: string[];
|
||||
}
|
||||
|
||||
export class updateKpiLink {
|
||||
@Column()
|
||||
kpiGroupId: string;
|
||||
|
||||
@Column()
|
||||
positions: string[];
|
||||
|
||||
@Column()
|
||||
kpiCapacityIds: string[];
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue