This commit is contained in:
AdisakKanthawilang 2024-04-23 17:06:16 +07:00
parent bdd2c9aa30
commit 5db5f445c8
4 changed files with 69 additions and 3 deletions

View file

@ -113,3 +113,8 @@ export class UpdateKpiUserPlanned {
@Column("uuid")
kpiPlanId: string;
}
export class KpiUserPlannedDataPoint {
id: string;
point: number;
}

View file

@ -115,4 +115,9 @@ export class UpdateKpiUserRole {
kpiUserEvaluationId: string;
@Column("uuid")
kpiRoleId: string;
}
}
export class KpiUserRoleDataPoint {
id: string;
point: number;
}