From b9124e9d22e7098b0f1696956a697f0e042cff81 Mon Sep 17 00:00:00 2001 From: Kittapath Date: Wed, 12 Jun 2024 10:41:48 +0700 Subject: [PATCH] no message --- src/entities/EmployeePosMaster.ts | 12 ++++++++++++ src/entities/PosMaster.ts | 12 ++++++++++++ 2 files changed, 24 insertions(+) diff --git a/src/entities/EmployeePosMaster.ts b/src/entities/EmployeePosMaster.ts index e4c0bf39..22c21dac 100644 --- a/src/entities/EmployeePosMaster.ts +++ b/src/entities/EmployeePosMaster.ts @@ -87,6 +87,18 @@ export class EmployeePosMaster extends EntityBase { }) isSit: boolean; + @Column({ + comment: "เป็นผู้อำนวยการ", + default: false, + }) + isDirector: boolean; + + @Column({ + comment: "เป็นเจ้าหน้าที่", + default: false, + }) + isOfficer: boolean; + @Column({ nullable: true, comment: "หมายเหตุ", diff --git a/src/entities/PosMaster.ts b/src/entities/PosMaster.ts index ed24fb89..ca8da472 100644 --- a/src/entities/PosMaster.ts +++ b/src/entities/PosMaster.ts @@ -86,6 +86,18 @@ export class PosMaster extends EntityBase { }) isSit: boolean; + @Column({ + comment: "เป็นผู้อำนวยการ", + default: false, + }) + isDirector: boolean; + + @Column({ + comment: "เป็นเจ้าหน้าที่", + default: false, + }) + isOfficer: boolean; + @Column({ nullable: true, comment: "หมายเหตุ",