ออกคำสั่ง
This commit is contained in:
parent
505baa7bba
commit
40f45b01e6
5 changed files with 203 additions and 3 deletions
|
|
@ -64,6 +64,70 @@ export class KpiUserEvaluation extends EntityBase {
|
|||
})
|
||||
posExecutiveName: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "สังกัด",
|
||||
length: 255,
|
||||
default: null,
|
||||
})
|
||||
org: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "คำนำหน้าผู้ประเมิน",
|
||||
length: 255,
|
||||
default: null,
|
||||
})
|
||||
prefixEvaluator: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "ชื่อผู้ประเมิน",
|
||||
length: 255,
|
||||
default: null,
|
||||
})
|
||||
firstNameEvaluator: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "สกุลผู้ประเมิน",
|
||||
length: 255,
|
||||
default: null,
|
||||
})
|
||||
lastNameEvaluator: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "ตำแหน่งผู้ประเมิน",
|
||||
length: 255,
|
||||
default: null,
|
||||
})
|
||||
positionEvaluator: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "ประเภทตำแหน่งผู้ประเมิน",
|
||||
length: 100,
|
||||
default: null,
|
||||
})
|
||||
posTypeNameEvaluator: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "ระดับตำแหน่งผู้ประเมิน",
|
||||
length: 100,
|
||||
default: null,
|
||||
})
|
||||
posLevelNameEvaluator: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "สังกัดผู้ประเมิน",
|
||||
length: 255,
|
||||
default: null,
|
||||
})
|
||||
orgEvaluator: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
length: 40,
|
||||
|
|
@ -281,6 +345,14 @@ export class KpiUserEvaluation extends EntityBase {
|
|||
})
|
||||
isOpen: boolean;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
type: "datetime",
|
||||
comment: "วันที่การรับทราบผลการประเมิน",
|
||||
default: null,
|
||||
})
|
||||
openDate: Date | null;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
length: 40,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue