add mis id

This commit is contained in:
kittapath 2025-01-17 16:11:30 +07:00
parent 58d1003ecc
commit 15f54f3e55
11 changed files with 131 additions and 0 deletions

View file

@ -16,6 +16,14 @@ enum OrgChild1Rank {
@Entity("orgChild1")
export class OrgChild1 extends EntityBase {
@Column({
nullable: true,
comment: "MisId",
length: 255,
default: null,
})
misId: string;
@Column({
nullable: true,
comment: "ชื่อส่วนราชการ",
@ -176,6 +184,9 @@ export class CreateOrgChild1 {
@Column()
isOfficer: boolean;
@Column()
misId?: string;
}
export type UpdateOrgChild1 = Partial<CreateOrgChild1> & { orgChild1Rank?: OrgChild1Rank };