add isCommission
This commit is contained in:
parent
b0d6e50cf1
commit
85ca3a9b0a
6 changed files with 116 additions and 0 deletions
|
|
@ -130,6 +130,12 @@ export class OrgChild1 extends EntityBase {
|
|||
})
|
||||
isOfficer: boolean;
|
||||
|
||||
@Column({
|
||||
comment: "ศูนย์สารสนเทศทรัพยากรบุคคล",
|
||||
default: false,
|
||||
})
|
||||
isInformation: boolean;
|
||||
|
||||
@ManyToOne(() => OrgRevision, (orgRevision) => orgRevision.orgChild1s)
|
||||
@JoinColumn({ name: "orgRevisionId" })
|
||||
orgRevision: OrgRevision;
|
||||
|
|
@ -185,6 +191,9 @@ export class CreateOrgChild1 {
|
|||
@Column()
|
||||
isOfficer: boolean;
|
||||
|
||||
@Column()
|
||||
isInformation: boolean;
|
||||
|
||||
@Column()
|
||||
misId?: string;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue