api uploadUser
This commit is contained in:
parent
02002a32a6
commit
f027422d56
2 changed files with 353 additions and 42 deletions
|
|
@ -283,3 +283,41 @@ export class UpdateDevelopmentHistory {
|
|||
@Column()
|
||||
dateEnd: Date | null;
|
||||
}
|
||||
|
||||
export class CreateDevelopmentHistoryOBO {
|
||||
@Column()
|
||||
rank: string | null;
|
||||
@Column()
|
||||
prefix: string | null;
|
||||
@Column()
|
||||
firstName: string | null;
|
||||
@Column()
|
||||
lastName: string | null;
|
||||
@Column()
|
||||
citizenId: string;
|
||||
@Column()
|
||||
position: string | null;
|
||||
@Column()
|
||||
posExecutive: string | null;
|
||||
@Column()
|
||||
posLevelId: string | null;
|
||||
@Column()
|
||||
posTypeId: string | null;
|
||||
@Column()
|
||||
developmentId: string;
|
||||
@Column()
|
||||
order: string | null;
|
||||
@Column()
|
||||
trainingDays: string | null;
|
||||
@Column()
|
||||
org: string | null;
|
||||
@Column()
|
||||
type: string | null;
|
||||
@Column()
|
||||
dateOrder: Date | null;
|
||||
@Column()
|
||||
dateStart: Date | null;
|
||||
@Column()
|
||||
dateEnd: Date | null;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue