เพิ่มฟิว governant
This commit is contained in:
parent
884fe694d0
commit
ae947a48c0
2 changed files with 66 additions and 3 deletions
|
|
@ -45,6 +45,44 @@ export class ProfileEmployee extends EntityBase {
|
|||
})
|
||||
avatarName: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
type: "datetime",
|
||||
comment: "วันที่บรรจุ",
|
||||
default: null,
|
||||
})
|
||||
dateAppoint: Date;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
type: "datetime",
|
||||
comment: "วันที่เริ่มปฏิบัติราชการ",
|
||||
default: null,
|
||||
})
|
||||
dateStart: Date;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "ขาดราชการ",
|
||||
default: null,
|
||||
})
|
||||
govAgeAbsent: number;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "อายุราชการเกื้อกูล",
|
||||
default: null,
|
||||
})
|
||||
govAgePlus: number;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "เหตุผลกรณีวันไม่ตรงกัน",
|
||||
length: 255,
|
||||
default: null,
|
||||
})
|
||||
reasonSameDate: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "ประเภทลูกจ้าง (perm->ลูกจ้างประจำ temp->ลูกจ้างชั่วคราว)",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue