fix
This commit is contained in:
parent
42264be4a2
commit
245e7f9df5
3 changed files with 242 additions and 16 deletions
|
|
@ -48,19 +48,19 @@ export class KpiUserEvaluation extends EntityBase {
|
|||
profileId: string;
|
||||
|
||||
@Column({
|
||||
// PENDING = รอการประเมิน , INPROGRESS = กําลังประเมิน , DONE = ประเมินเสร็จสิ้น
|
||||
// "สถานะการประเมินผล ดังนี้ PENDING = รอดำเนินการ, INPROGRESS = กําลังดำเนินการ, DONE = ประเมินเสร็จสิ้น",
|
||||
nullable: true,
|
||||
length: 40,
|
||||
comment: "สถานะการประเมินผล",
|
||||
comment: "สถานะการประเมินผล ดังนี้ PENDING = รอดำเนินการ, INPROGRESS = กําลังดำเนินการ, DONE = ประเมินเสร็จสิ้น",
|
||||
default: null,
|
||||
})
|
||||
evaluationStatus: string;
|
||||
|
||||
@Column({
|
||||
// PASSED = ผ่านการประเมิน , NOTPASSED = ไม่ผ่านการประเมิน
|
||||
// "ผลการประเมิน ดังนี้ PENDING = รอดำเนินการ, PASSED = ผ่านการประเมิน, NOTPASSED = ไม่ผ่านการประเมิน",
|
||||
nullable: true,
|
||||
length: 40,
|
||||
comment: "ผลการประเมิน",
|
||||
comment: "ผลการประเมิน ดังนี้ PENDING = รอดำเนินการ, PASSED = ผ่านการประเมิน, NOTPASSED = ไม่ผ่านการประเมิน",
|
||||
default: null,
|
||||
})
|
||||
evaluationResults: string;
|
||||
|
|
@ -93,10 +93,6 @@ export class createKpiUserEvaluation {
|
|||
kpiPeriodId: string;
|
||||
@Column()
|
||||
profileId: string;
|
||||
@Column()
|
||||
evaluationStatus: string;
|
||||
@Column()
|
||||
evaluationResults: string;
|
||||
}
|
||||
|
||||
export class updateKpiUserEvaluation {
|
||||
|
|
@ -110,8 +106,4 @@ export class updateKpiUserEvaluation {
|
|||
kpiPeriodId: string;
|
||||
@Column()
|
||||
profileId: string;
|
||||
@Column()
|
||||
evaluationStatus: string;
|
||||
@Column()
|
||||
evaluationResults: string;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue