แก้ 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

@ -3,7 +3,6 @@ import { EntityBase } from "./base/Base";
import { PosType } from "./PosType";
import { Position } from "./Position";
import { PosDict } from "./PosDict";
// ENUM PosLevelAuthority
enum PosLevelAuthority {
HEAD = "HEAD",
DEPUTY = "DEPUTY",
@ -15,13 +14,14 @@ export class PosLevel extends EntityBase {
nullable: true,
comment: "ชื่อระดับตำแหน่ง",
length: 255,
default: "string",
default: null,
})
posLevelName: string;
@Column({
nullable: true,
comment: "ระดับของระดับตำแหน่ง",
default: null,
})
posLevelRank: number;
@ -31,13 +31,13 @@ export class PosLevel extends EntityBase {
"ผู้มีอำนาจสั่งบรรจุของระดับนี้ head = หัวหน้าหน่วยงาน , deputy = ปลัด , governor = ผู้ว่าฯ",
type: "enum",
enum: PosLevelAuthority,
default: null,
})
posLevelAuthority: PosLevelAuthority;
@Column({
length: 40,
comment: "เป็นระดับของประเภทตำแหน่งใด",
default: "00000000-0000-0000-0000-000000000000",
})
posTypeId: string;