แก้ model

This commit is contained in:
Kittapath 2024-01-31 17:20:08 +07:00
parent 24d0d06b62
commit 19dd52b4c4
4 changed files with 67 additions and 23 deletions

View file

@ -79,37 +79,37 @@ export class PosMaster extends EntityBase {
@Column({
nullable: true,
length: 40,
default: "00000000-0000-0000-0000-000000000000",
default: null,
})
orgRootId: string;
orgRootId?: string;
@Column({
nullable: true,
length: 40,
default: "00000000-0000-0000-0000-000000000000",
default: null,
})
orgChild1Id: string;
orgChild1Id?: string;
@Column({
nullable: true,
length: 40,
default: "00000000-0000-0000-0000-000000000000",
default: null,
})
orgChild2Id: string;
orgChild2Id?: string;
@Column({
nullable: true,
length: 40,
default: "00000000-0000-0000-0000-000000000000",
default: null,
})
orgChild3Id: string;
orgChild3Id?: string;
@Column({
nullable: true,
length: 40,
default: "00000000-0000-0000-0000-000000000000",
default: null,
})
orgChild4Id: string;
orgChild4Id?: string;
@Column({
nullable: true,