add isCommission

This commit is contained in:
kittapath 2025-01-20 15:14:00 +07:00
parent b0d6e50cf1
commit 85ca3a9b0a
6 changed files with 116 additions and 0 deletions

View file

@ -119,6 +119,12 @@ export class OrgRoot extends EntityBase {
})
isDeputy: boolean;
@Column({
comment: "สำนักงานคณะกรรมการข้าราชการกรุงเทพมหานคร",
default: false,
})
isCommission: boolean;
@Column({
length: 40,
comment: "คีย์นอก(FK)ของตาราง orgRevision",
@ -182,6 +188,9 @@ export class CreateOrgRoot {
@Column()
isDeputy: boolean;
@Column()
isCommission: boolean;
@Column()
misId?: string;
}