เพิ่มฟิวตำแหน่งในแบบประเมิน
This commit is contained in:
parent
0a6760a276
commit
0d292ee22b
3 changed files with 77 additions and 1 deletions
|
|
@ -32,6 +32,38 @@ export class KpiUserEvaluation extends EntityBase {
|
|||
})
|
||||
lastName: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "ตำแหน่ง",
|
||||
length: 255,
|
||||
default: null,
|
||||
})
|
||||
position: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "ประเภทตำแหน่ง",
|
||||
length: 100,
|
||||
default: null,
|
||||
})
|
||||
posTypeName: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "ระดับตำแหน่ง",
|
||||
length: 100,
|
||||
default: null,
|
||||
})
|
||||
posLevelName: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "ตำแหน่งทางการบริหาร",
|
||||
length: 255,
|
||||
default: null,
|
||||
})
|
||||
posExecutiveName: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
length: 40,
|
||||
|
|
@ -160,6 +192,14 @@ export class createKpiUserEvaluation {
|
|||
@Column()
|
||||
lastName: string;
|
||||
@Column()
|
||||
position: string | null;
|
||||
@Column()
|
||||
posTypeName: string | null;
|
||||
@Column()
|
||||
posLevelName: string | null;
|
||||
@Column()
|
||||
posExecutiveName: string | null;
|
||||
@Column()
|
||||
kpiPeriodId: string;
|
||||
@Column()
|
||||
profileId: string;
|
||||
|
|
@ -179,6 +219,14 @@ export class updateKpiUserEvaluation {
|
|||
@Column()
|
||||
lastName: string;
|
||||
@Column()
|
||||
position: string | null;
|
||||
@Column()
|
||||
posTypeName: string | null;
|
||||
@Column()
|
||||
posLevelName: string | null;
|
||||
@Column()
|
||||
posExecutiveName: string | null;
|
||||
@Column()
|
||||
kpiPeriodId: string;
|
||||
@Column()
|
||||
profileId: string;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue