เพิ่มเหตุผล posmaster

This commit is contained in:
Kittapath 2024-04-09 12:18:52 +07:00
parent 7a2ed91612
commit 013ccf60e6
7 changed files with 433 additions and 72 deletions

View file

@ -87,6 +87,14 @@ export class EmployeePosMaster extends EntityBase {
})
isSit: boolean;
@Column({
nullable: true,
comment: "หมายเหตุ",
type: "text",
default: null,
})
reason: string;
@Column({
nullable: true,
length: 40,
@ -214,6 +222,9 @@ export class CreateEmployeePosMaster {
@Column("uuid")
orgChild4Id?: string | null;
@Column()
reason: string;
}
export type UpdateEmployeePosMaster = Partial<EmployeePosMaster>;