This commit is contained in:
AdisakKanthawilang 2024-05-08 16:41:35 +07:00
parent 45b460a095
commit eeb70570c8
4 changed files with 22 additions and 22 deletions

View file

@ -285,8 +285,8 @@ export class createKpiRole {
meaning: string | null;
@Column()
formula: string | null;
@Column()
kpiPeriodId: string | null;
// @Column()
// kpiPeriodId: string | null;
@Column()
documentInfoEvidence: string | null;
}
@ -328,8 +328,8 @@ export class updateKpiRole {
meaning: string | null;
@Column()
formula: string | null;
@Column()
kpiPeriodId: string | null;
// @Column()
// kpiPeriodId: string | null;
@Column()
documentInfoEvidence: string | null;
}

View file

@ -155,10 +155,10 @@ export class CreateKpiUserPlanned {
kpiPlanId: string;
@Column()
documentInfoEvidence: string;
@Column()
startDate: Date;
@Column()
endDate: Date;
@Column({ nullable: true })
startDate?: Date;
@Column({ nullable: true })
endDate?: Date;
@Column()
achievement1: string;
@Column()
@ -188,10 +188,10 @@ export class UpdateKpiUserPlanned {
kpiPlanId: string;
@Column()
documentInfoEvidence: string;
@Column()
startDate: Date;
@Column()
endDate: Date;
@Column({ nullable: true })
startDate?: Date;
@Column({ nullable: true })
endDate?: Date;
@Column()
achievement1: string;
@Column()