เปิดปิดรอบประเมิน
This commit is contained in:
parent
50f0e205f6
commit
f75bd88f6b
3 changed files with 79 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue