no message
This commit is contained in:
parent
ac9e184ee7
commit
b7aa867f82
12 changed files with 99 additions and 24 deletions
|
|
@ -217,4 +217,5 @@ export class UpdateKpiSpecial {
|
|||
export class KpiUserSpecialDataPoint {
|
||||
id: string;
|
||||
point: number;
|
||||
summary: number;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -19,6 +19,14 @@ export class KpiUserEvaluationReasonCapacity extends EntityBase {
|
|||
})
|
||||
reason: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "คะแนน",
|
||||
length: 255,
|
||||
default: null,
|
||||
})
|
||||
score: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "หมายเหตุ ผู้ประเมิน",
|
||||
|
|
@ -77,7 +85,9 @@ export class KpiUserEvaluationReasonCapacity extends EntityBase {
|
|||
|
||||
export class updateKpiUserReasonEvaluation {
|
||||
@Column()
|
||||
reason: string;
|
||||
reason?: string | null;
|
||||
@Column()
|
||||
topic?: string | null;
|
||||
@Column()
|
||||
score?: string | null;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -19,6 +19,14 @@ export class KpiUserEvaluationReasonDevelopment extends EntityBase {
|
|||
})
|
||||
reason: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "คะแนน",
|
||||
length: 255,
|
||||
default: null,
|
||||
})
|
||||
score: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "หมายเหตุ ผู้ประเมิน",
|
||||
|
|
|
|||
|
|
@ -19,6 +19,14 @@ export class KpiUserEvaluationReasonPlan extends EntityBase {
|
|||
})
|
||||
reason: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "คะแนน",
|
||||
length: 255,
|
||||
default: null,
|
||||
})
|
||||
score: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "หมายเหตุ ผู้ประเมิน",
|
||||
|
|
|
|||
|
|
@ -19,6 +19,14 @@ export class KpiUserEvaluationReasonRole extends EntityBase {
|
|||
})
|
||||
reason: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "คะแนน",
|
||||
length: 255,
|
||||
default: null,
|
||||
})
|
||||
score: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "หมายเหตุ ผู้ประเมิน",
|
||||
|
|
|
|||
|
|
@ -19,6 +19,14 @@ export class KpiUserEvaluationReasonSpecial extends EntityBase {
|
|||
})
|
||||
reason: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "คะแนน",
|
||||
length: 255,
|
||||
default: null,
|
||||
})
|
||||
score: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "หมายเหตุ ผู้ประเมิน",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue