แก้ defult value

This commit is contained in:
Kittapath 2024-02-01 11:02:35 +07:00
parent 9ac7517518
commit c89126a8a2
16 changed files with 381 additions and 110 deletions

View file

@ -10,7 +10,7 @@ export class PosDict extends EntityBase {
nullable: true,
comment: "ชื่อตำแหน่งในสายงาน (ชื่อตำแหน่ง)",
length: 255,
default: "string",
default: null,
})
posDictName: string;
@ -18,21 +18,19 @@ export class PosDict extends EntityBase {
nullable: true,
comment: "สายงาน",
length: 255,
default: "string",
default: null,
})
posDictField: string;
@Column({
length: 40,
comment: "ตำแหน่งประเภท",
default: "00000000-0000-0000-0000-000000000000",
})
posTypeId: string;
@Column({
length: 40,
comment: "ระดับตำแหน่ง",
default: "00000000-0000-0000-0000-000000000000",
})
posLevelId: string;
@ -40,7 +38,7 @@ export class PosDict extends EntityBase {
nullable: true,
length: 40,
comment: "ตำแหน่งทางการบริหาร",
default: "00000000-0000-0000-0000-000000000000",
default: null,
})
posExecutiveId: string;
@ -48,7 +46,7 @@ export class PosDict extends EntityBase {
nullable: true,
length: 255,
comment: "ด้านทางการบริหาร",
default: "string",
default: null,
})
posDictExecutiveField: string;
@ -56,7 +54,7 @@ export class PosDict extends EntityBase {
nullable: true,
length: 255,
comment: "ด้าน/สาขา",
default: "string",
default: null,
})
posDictArea: string;