ปรับ comment fields

This commit is contained in:
Bright 2024-03-08 14:36:57 +07:00
parent a4f9676297
commit f63d809735
7 changed files with 19 additions and 21 deletions

View file

@ -5,7 +5,7 @@ import { SalaryOrg } from "./SalaryOrg";
@Entity("salaryProfile")
export class SalaryProfile extends EntityBase {
@Column({
comment: "",
comment: "คีย์นอก(FK)ของตาราง salaryOrg",
length: 40,
})
salaryOrgId: string;
@ -158,14 +158,14 @@ export class SalaryProfile extends EntityBase {
@Column({
nullable: true,
comment: "",
comment: "คีย์นอก(FK)ของตาราง orgRoot",
length: 40,
})
rootId: string;
@Column({
nullable: true,
comment: "",
comment: "ชื่อของหน่วยงาน",
length: 255,
default: null,
})
@ -173,14 +173,14 @@ export class SalaryProfile extends EntityBase {
@Column({
nullable: true,
comment: "",
comment: "คีย์นอก(FK)ของตาราง orgChild1",
length: 40,
})
child1Id: string;
@Column({
nullable: true,
comment: "",
comment: "ชื่อส่วนราชการ",
length: 255,
default: null,
})
@ -188,14 +188,14 @@ export class SalaryProfile extends EntityBase {
@Column({
nullable: true,
comment: "",
comment: "คีย์นอก(FK)ของตาราง orgChild2",
length: 40,
})
child2Id: string;
@Column({
nullable: true,
comment: "",
comment: "ชื่อส่วนราชการ",
length: 255,
default: null,
})
@ -203,14 +203,14 @@ export class SalaryProfile extends EntityBase {
@Column({
nullable: true,
comment: "",
comment: "คีย์นอก(FK)ของตาราง orgChild3",
length: 40,
})
child3Id: string;
@Column({
nullable: true,
comment: "",
comment: "ชื่อส่วนราชการ",
length: 255,
default: null,
})
@ -218,14 +218,14 @@ export class SalaryProfile extends EntityBase {
@Column({
nullable: true,
comment: "",
comment: "คีย์นอก(FK)ของตาราง orgChild4",
length: 40,
})
child4Id: string;
@Column({
nullable: true,
comment: "",
comment: "ชื่อส่วนราชการ",
length: 255,
default: null,
})