Merge branch 'develop' into adiDev

This commit is contained in:
AdisakKanthawilang 2024-10-21 14:22:22 +07:00
commit a3ab8c5e30
7 changed files with 92 additions and 116 deletions

View file

@ -61,6 +61,14 @@ export class Assign {
})
description: string;
@Column({
nullable: true,
comment: "path link",
type: "text",
default: null,
})
path: string;
@OneToMany(() => PosMasterAssign, (posMasterAssign) => posMasterAssign.assign)
posMasterAssigns: PosMasterAssign[];