checkpoint

This commit is contained in:
AdisakKanthawilang 2024-04-19 16:19:09 +07:00
parent b70f447174
commit 85f39a55a6
3 changed files with 260 additions and 166 deletions

View file

@ -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[];
}