เพิ่ม subrank

This commit is contained in:
Kittapath 2024-03-13 09:47:19 +07:00
parent 8717494690
commit 5301978a7f
11 changed files with 111 additions and 19 deletions

View file

@ -49,6 +49,13 @@ export class OrgChild1 extends EntityBase {
})
orgChild1Rank: OrgChild1Rank;
@Column({
nullable: true,
comment: "ระดับส่วนราชการsub",
default: null,
})
orgChild1RankSub: string;
@Column({
nullable: true,
comment: "ลำดับที่ของส่วนราชการภายใน Child เดียวกัน",
@ -95,7 +102,8 @@ export class OrgChild1 extends EntityBase {
@Column({
nullable: true,
length: 40,
comment: "รหัส DNA ใช้ในกรณีที่มีการทำสำเนาโครงสร้าง โครงสร้างใหม่ที่ทำสำเนากับโครงสร้างเก่าจะต้องมี DNA เดียวกัน เพื่อให้ track ประวัติการแก้ไขโครงสร้างย้อนหลังได้",
comment:
"รหัส DNA ใช้ในกรณีที่มีการทำสำเนาโครงสร้าง โครงสร้างใหม่ที่ทำสำเนากับโครงสร้างเก่าจะต้องมี DNA เดียวกัน เพื่อให้ track ประวัติการแก้ไขโครงสร้างย้อนหลังได้",
default: null,
})
ancestorDNA: string;
@ -134,6 +142,9 @@ export class CreateOrgChild1 {
@Column()
orgChild1Rank: string;
@Column()
orgChild1RankSub: string;
@Column()
orgChild1PhoneEx?: string;