add mis id
This commit is contained in:
parent
58d1003ecc
commit
15f54f3e55
11 changed files with 131 additions and 0 deletions
|
|
@ -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>;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue