Merge branch 'develop' into develop-Bright

This commit is contained in:
Bright 2024-05-14 12:03:32 +07:00
commit 312b2c9d4c

View file

@ -96,6 +96,14 @@ export class OrgRoot extends EntityBase {
})
ancestorDNA: string;
@Column({
nullable: true,
length: 255,
comment: "หน้าที่ความรับผิดชอบ ",
default: null,
})
duty: string;
@Column({
length: 40,
comment: "คีย์นอก(FK)ของตาราง orgRevision",
@ -147,6 +155,9 @@ export class CreateOrgRoot {
@Column()
orgRootFax?: string;
@Column()
duty?: string;
@Column("uuid")
orgRevisionId: string;
}