migrate
This commit is contained in:
parent
2f1053c7dc
commit
21c72f2a1e
4 changed files with 293 additions and 0 deletions
|
|
@ -101,6 +101,41 @@ export class KpiUserPlanned extends EntityBase {
|
|||
default: null,
|
||||
})
|
||||
endDate: Date;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "ผลสำเร็จของงาน 1",
|
||||
default: null,
|
||||
})
|
||||
achievement1: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "ผลสำเร็จของงาน 2",
|
||||
default: null,
|
||||
})
|
||||
achievement2: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "ผลสำเร็จของงาน 3",
|
||||
default: null,
|
||||
})
|
||||
achievement3: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "ผลสำเร็จของงาน 4",
|
||||
default: null,
|
||||
})
|
||||
achievement4: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "ผลสำเร็จของงาน 5",
|
||||
default: null,
|
||||
})
|
||||
achievement5: string;
|
||||
}
|
||||
|
||||
export class CreateKpiUserPlanned {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue