ประวัติอัตรากำลัง

This commit is contained in:
Kittapath 2024-02-01 20:05:26 +07:00
parent c574726522
commit e90e3a27c6
2 changed files with 279 additions and 189 deletions

View file

@ -85,7 +85,7 @@ export class PosMaster extends EntityBase {
comment: "คีย์นอก(FK)ของตาราง orgRoot",
default: null,
})
orgRootId?: string;
orgRootId?: string | null;
@Column({
nullable: true,
@ -93,7 +93,7 @@ export class PosMaster extends EntityBase {
comment: "คีย์นอก(FK)ของตาราง orgChild1",
default: null,
})
orgChild1Id?: string;
orgChild1Id?: string | null;
@Column({
nullable: true,
@ -101,7 +101,7 @@ export class PosMaster extends EntityBase {
comment: "คีย์นอก(FK)ของตาราง orgChild2",
default: null,
})
orgChild2Id?: string;
orgChild2Id?: string | null;
@Column({
nullable: true,
@ -109,7 +109,7 @@ export class PosMaster extends EntityBase {
comment: "คีย์นอก(FK)ของตาราง orgChild3",
default: null,
})
orgChild3Id?: string;
orgChild3Id?: string | null;
@Column({
nullable: true,
@ -117,7 +117,7 @@ export class PosMaster extends EntityBase {
comment: "คีย์นอก(FK)ของตาราง orgChild4",
default: null,
})
orgChild4Id?: string;
orgChild4Id?: string | null;
@Column({
nullable: true,