sort order

This commit is contained in:
moss 2025-04-05 18:12:02 +07:00
parent bf85af7e0d
commit 230b552f6d
15 changed files with 951 additions and 145 deletions

View file

@ -11,6 +11,12 @@ export class SalaryOrg extends EntityBase {
})
salaryPeriodId: string;
@Column({
comment: "สถานะการใช้งาน",
default: false,
})
isClose: boolean;
@Column({
comment: "สถานะ",
})

View file

@ -11,6 +11,12 @@ export class SalaryOrgEmployee extends EntityBase {
})
salaryPeriodId: string;
@Column({
comment: "สถานะการใช้งาน",
default: false,
})
isClose: boolean;
@Column({
comment: "สถานะ",
})

View file

@ -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",

View file

@ -238,6 +238,13 @@ export class SalaryProfileEmployee extends EntityBase {
})
revisionId: string;
@Column({
nullable: true,
comment: "Order orgRoot",
length: 40,
})
rootOrder: string;
@Column({
nullable: true,
comment: "คีย์นอก(FK)ของตาราง orgRoot",
@ -253,6 +260,13 @@ export class SalaryProfileEmployee extends EntityBase {
})
root: string;
@Column({
nullable: true,
comment: "Order orgChild1",
length: 40,
})
child1Order: string;
@Column({
nullable: true,
comment: "คีย์นอก(FK)ของตาราง orgChild1",
@ -268,6 +282,13 @@ export class SalaryProfileEmployee extends EntityBase {
})
child1: string;
@Column({
nullable: true,
comment: "Order orgChild2",
length: 40,
})
child2Order: string;
@Column({
nullable: true,
comment: "คีย์นอก(FK)ของตาราง orgChild2",
@ -283,6 +304,13 @@ export class SalaryProfileEmployee extends EntityBase {
})
child2: string;
@Column({
nullable: true,
comment: "Order orgChild3",
length: 40,
})
child3Order: string;
@Column({
nullable: true,
comment: "คีย์นอก(FK)ของตาราง orgChild3",
@ -298,6 +326,13 @@ export class SalaryProfileEmployee extends EntityBase {
})
child3: string;
@Column({
nullable: true,
comment: "Order orgChild4",
length: 40,
})
child4Order: string;
@Column({
nullable: true,
comment: "คีย์นอก(FK)ของตาราง orgChild4",