sort order
This commit is contained in:
parent
bf85af7e0d
commit
230b552f6d
15 changed files with 951 additions and 145 deletions
|
|
@ -193,6 +193,13 @@ export class SalaryProfile extends EntityBase {
|
|||
})
|
||||
revisionId: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "order orgRoot",
|
||||
length: 40,
|
||||
})
|
||||
rootOrder: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "คีย์นอก(FK)ของตาราง orgRoot",
|
||||
|
|
@ -208,6 +215,13 @@ export class SalaryProfile extends EntityBase {
|
|||
})
|
||||
root: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "Order orgChild1",
|
||||
length: 40,
|
||||
})
|
||||
child1Order: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "คีย์นอก(FK)ของตาราง orgChild1",
|
||||
|
|
@ -223,6 +237,13 @@ export class SalaryProfile extends EntityBase {
|
|||
})
|
||||
child1: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "Order orgChild2",
|
||||
length: 40,
|
||||
})
|
||||
child2Order: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "คีย์นอก(FK)ของตาราง orgChild2",
|
||||
|
|
@ -238,6 +259,13 @@ export class SalaryProfile extends EntityBase {
|
|||
})
|
||||
child2: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "Order orgChild3",
|
||||
length: 40,
|
||||
})
|
||||
child3Order: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "คีย์นอก(FK)ของตาราง orgChild3",
|
||||
|
|
@ -253,6 +281,13 @@ export class SalaryProfile extends EntityBase {
|
|||
})
|
||||
child3: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "Order orgChild4",
|
||||
length: 40,
|
||||
})
|
||||
child4Order: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "คีย์นอก(FK)ของตาราง orgChild4",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue