This commit is contained in:
parent
7d572b18d2
commit
f31ecf1c2b
11 changed files with 349 additions and 19 deletions
|
|
@ -254,4 +254,50 @@ export class CreateOrgChild4 {
|
|||
@Column()
|
||||
misId?: string;
|
||||
}
|
||||
export type UpdateOrgChild4 = Partial<OrgChild4>;
|
||||
// export type UpdateOrgChild4 = Partial<OrgChild4>;
|
||||
export class UpdateOrgChild4 {
|
||||
@Column()
|
||||
orgChild4Name: string;
|
||||
|
||||
@Column()
|
||||
orgChild4ShortName: string;
|
||||
|
||||
@Column()
|
||||
orgChild4Code: string;
|
||||
|
||||
@Column()
|
||||
orgChild4Rank: string;
|
||||
|
||||
@Column()
|
||||
orgChild4RankSub?: string;
|
||||
|
||||
@Column()
|
||||
DEPARTMENT_CODE?: string | null;
|
||||
|
||||
@Column()
|
||||
DIVISION_CODE?: string | null;
|
||||
|
||||
@Column()
|
||||
SECTION_CODE?: string | null;
|
||||
|
||||
@Column()
|
||||
JOB_CODE?: string | null;
|
||||
|
||||
@Column()
|
||||
orgChild4PhoneEx?: string;
|
||||
|
||||
@Column()
|
||||
orgChild4PhoneIn?: string;
|
||||
|
||||
@Column()
|
||||
orgChild4Fax?: string;
|
||||
|
||||
@Column("uuid")
|
||||
orgChild3Id: string;
|
||||
|
||||
@Column()
|
||||
responsibility?: string;
|
||||
|
||||
@Column()
|
||||
misId?: string;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue