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

@ -15,6 +15,14 @@ enum OrgChild4Rank {
}
@Entity("orgChild4")
export class OrgChild4 extends EntityBase {
@Column({
nullable: true,
comment: "MisId",
length: 255,
default: null,
})
misId: string;
@Column({
nullable: true,
comment: "ชื่อส่วนราชการ",
@ -187,5 +195,8 @@ export class CreateOrgChild4 {
@Column()
responsibility?: string;
@Column()
misId?: string;
}
export type UpdateOrgChild4 = Partial<OrgChild4>;