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

@ -9,13 +9,14 @@ export class PosExecutive extends EntityBase {
nullable: true,
comment: "ชื่อตำแหน่งทางการบริหาร",
length: 255,
default: "string",
default: null,
})
posExecutiveName: string;
@Column({
nullable: true,
comment: "ลำดับความสำคัญ",
default: null,
})
posExecutivePriority: number;
@ -34,4 +35,4 @@ export class CreatePosExecutive {
posExecutivePriority: number;
}
export type UpdatePosExecutive = Partial<CreatePosExecutive>;
export type UpdatePosExecutive = Partial<CreatePosExecutive>;