ptath workflow

This commit is contained in:
kittapath 2024-10-21 10:22:39 +07:00
parent ed134d87f7
commit b2ccdfdf30
5 changed files with 43 additions and 94 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[];