มอบหมาย

This commit is contained in:
kittapath 2024-10-07 17:00:54 +07:00
parent c43eeb9066
commit 7b5e6e5fb0
8 changed files with 279 additions and 2 deletions

View file

@ -11,6 +11,7 @@ import { OrgChild4 } from "./OrgChild4";
import { Profile } from "./Profile";
import { AuthRole } from "./AuthRole";
import { PosMasterAct } from "./PosMasterAct";
import { PosMasterAssign } from "./PosMasterAssign";
enum PosMasterLine {
MAIN = "MAIN",
@ -238,6 +239,9 @@ export class PosMaster extends EntityBase {
@OneToMany(() => PosMasterAct, (posMasterAct) => posMasterAct.posMasterChild)
posMasterActChilds: PosMasterAct[];
@OneToMany(() => PosMasterAssign, (posMasterAssign) => posMasterAssign.posMaster)
posMasterAssigns: PosMasterAssign[];
}
export class CreatePosMaster {