This commit is contained in:
Bright 2024-04-23 16:34:13 +07:00
parent 133fc76f66
commit bdd2c9aa30
2 changed files with 37 additions and 4 deletions

View file

@ -58,3 +58,8 @@ export class KpiUserCapacity extends EntityBase {
@JoinColumn({ name: "kpiCapacityId" })
kpiCapacity: KpiCapacity;
}
export class KpiUserCapacityDataPoint {
id: string;
point: number;
}