โครงสร้างเพิ่มอัพโหลด user
This commit is contained in:
parent
be703f8e3b
commit
422b0f3b87
7 changed files with 636 additions and 70 deletions
|
|
@ -24,7 +24,7 @@ export class DevelopmentHistory extends EntityBase {
|
|||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "ชื่อย่ิหน่วยงาน",
|
||||
comment: "ชื่อย่อหน่วยงาน",
|
||||
default: null,
|
||||
})
|
||||
orgRootShortName: string;
|
||||
|
|
@ -36,6 +36,14 @@ export class DevelopmentHistory extends EntityBase {
|
|||
})
|
||||
orgRevisionId: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "id profile",
|
||||
length: 40,
|
||||
default: null,
|
||||
})
|
||||
profileId: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "ประเภทราชการ",
|
||||
|
|
@ -155,6 +163,14 @@ export class DevelopmentHistory extends EntityBase {
|
|||
@JoinColumn({ name: "developmentId" })
|
||||
development: Development;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "จำนวนวันที่อบรม",
|
||||
default: null,
|
||||
length: 255,
|
||||
})
|
||||
trainingDays: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "เลขที่คำสั่ง/เลขที่หนังสืออนุมัติ",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue