ประวัติอัตรากำลัง
This commit is contained in:
parent
c574726522
commit
e90e3a27c6
2 changed files with 279 additions and 189 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue