หมายเหตุ ผู้ประเมิน
This commit is contained in:
parent
468d8d8865
commit
ae87b678d1
3 changed files with 302 additions and 0 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue