เปิดปิดรอบประเมิน

This commit is contained in:
Kittapath 2024-04-16 07:50:53 +07:00
parent 50f0e205f6
commit f75bd88f6b
3 changed files with 79 additions and 1 deletions

View file

@ -25,6 +25,12 @@ export class KpiPeriod extends EntityBase {
default: null,
})
endDate: Date;
@Column({
comment: "รอบ",
default: false,
})
isActive: boolean;
}
export class createKpi {
@Column()
@ -33,6 +39,8 @@ export class createKpi {
startDate: Date;
@Column()
endDate: Date;
@Column()
isActive: boolean;
}
export class updateKpi {
@ -42,4 +50,6 @@ export class updateKpi {
startDate: Date;
@Column()
endDate: Date;
@Column()
isActive: boolean;
}