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