หมายเหตุ ผู้ประเมิน

This commit is contained in:
Kittapath 2024-06-26 12:41:38 +07:00
parent 468d8d8865
commit ae87b678d1
3 changed files with 302 additions and 0 deletions

View file

@ -188,6 +188,75 @@ export class KpiUserEvaluation extends EntityBase {
})
summaryPoint: number;
@Column({
nullable: true,
comment: "ชื่อเรื่อง/เนื้อหา/หัวข้อการพัฒนา",
length: 255,
default: null,
})
topicEvaluator: string;
@Column({
nullable: true,
comment: "วิธีการพัฒนา",
length: 255,
default: null,
})
developEvaluator: string;
@Column({
nullable: true,
comment: "ช่วงเวลาการพัฒนา",
length: 255,
default: null,
})
timeEvaluator: string;
@Column({
nullable: true,
comment: "ความเห็นของผู้ประเมิน",
length: 255,
default: null,
})
reasonEvaluator: string;
@Column({
nullable: true,
comment: "หมายเหตุ ผู้บังคับบัญชาเหนือขึ้นไป",
default: false,
})
isReasonCommander: boolean;
@Column({
nullable: true,
comment: "หมายเหตุ ผู้บังคับบัญชาเหนือขึ้นไป",
length: 255,
default: null,
})
reasonCommander: string;
@Column({
nullable: true,
comment: "หมายเหตุ ผู้บังคับบัญชาเหนือขึ้นไปอีกชั้นหนึ่ง",
default: false,
})
isReasonCommanderHigh: boolean;
@Column({
nullable: true,
comment: "หมายเหตุ ผู้บังคับบัญชาเหนือขึ้นไปอีกชั้นหนึ่ง",
length: 255,
default: null,
})
reasonCommanderHigh: string;
@Column({
nullable: true,
comment: "การรับทราบผลการประเมิน",
default: false,
})
isOpen: boolean;
@Column({
nullable: true,
length: 40,