คอัพเดทคะแนน
This commit is contained in:
parent
751341a11c
commit
3d0f2c3245
2 changed files with 51 additions and 5 deletions
|
|
@ -156,13 +156,37 @@ export class KpiUserEvaluation extends EntityBase {
|
|||
})
|
||||
capacityPoint: number;
|
||||
|
||||
@Column({
|
||||
type: "double",
|
||||
nullable: true,
|
||||
default: null,
|
||||
comment: "คะแนนประเมินองค์ประกอบที่ 1",
|
||||
})
|
||||
totalPoint1: number;
|
||||
|
||||
@Column({
|
||||
type: "double",
|
||||
nullable: true,
|
||||
default: null,
|
||||
comment: "คะแนนประเมินองค์ประกอบที่ 2.1",
|
||||
})
|
||||
totalPoint2_1: number;
|
||||
|
||||
@Column({
|
||||
type: "double",
|
||||
nullable: true,
|
||||
default: null,
|
||||
comment: "คะแนนประเมินองค์ประกอบที่ 2.2",
|
||||
})
|
||||
totalPoint2_2: number;
|
||||
|
||||
@Column({
|
||||
type: "double",
|
||||
nullable: true,
|
||||
default: null,
|
||||
comment: "คะแนนประเมิน",
|
||||
})
|
||||
totalPoint: number;
|
||||
summaryPoint: number;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
|
|
@ -251,13 +275,13 @@ export class updateKpiUserCheckEvaluation {
|
|||
|
||||
export class updateKpiUserPointEvaluation {
|
||||
@Column()
|
||||
plannedPoint: number | null;
|
||||
totalPoint1?: number | null;
|
||||
@Column()
|
||||
rolePoint: number | null;
|
||||
totalPoint2_1?: number | null;
|
||||
@Column()
|
||||
specialPoint: number | null;
|
||||
totalPoint2_2?: number | null;
|
||||
@Column()
|
||||
capacityPoint: number | null;
|
||||
summaryPoint?: number | null;
|
||||
}
|
||||
|
||||
export class updateKpiUserReqEditEvaluation {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue