This commit is contained in:
parent
7d572b18d2
commit
f31ecf1c2b
11 changed files with 349 additions and 19 deletions
|
|
@ -240,4 +240,50 @@ export class CreateOrgChild2 {
|
|||
@Column()
|
||||
misId?: string;
|
||||
}
|
||||
export type UpdateOrgChild2 = Partial<CreateOrgChild2> & { orgChild2Rank?: OrgChild2Rank };
|
||||
// export type UpdateOrgChild2 = Partial<CreateOrgChild2> & { orgChild2Rank?: OrgChild2Rank };
|
||||
export class UpdateOrgChild2 {
|
||||
@Column()
|
||||
orgChild2Name: string;
|
||||
|
||||
@Column()
|
||||
orgChild2ShortName: string;
|
||||
|
||||
@Column()
|
||||
orgChild2Code: string;
|
||||
|
||||
@Column()
|
||||
orgChild2Rank: string;
|
||||
|
||||
@Column()
|
||||
orgChild2RankSub?: string;
|
||||
|
||||
@Column()
|
||||
DEPARTMENT_CODE?: string | null;
|
||||
|
||||
@Column()
|
||||
DIVISION_CODE?: string | null;
|
||||
|
||||
@Column()
|
||||
SECTION_CODE?: string | null;
|
||||
|
||||
@Column()
|
||||
JOB_CODE?: string | null;
|
||||
|
||||
@Column()
|
||||
orgChild2PhoneEx?: string;
|
||||
|
||||
@Column()
|
||||
orgChild2PhoneIn?: string;
|
||||
|
||||
@Column()
|
||||
orgChild2Fax?: string;
|
||||
|
||||
@Column("uuid")
|
||||
orgChild1Id: string;
|
||||
|
||||
@Column()
|
||||
responsibility?: string;
|
||||
|
||||
@Column()
|
||||
misId?: string;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue