api uploadUser

This commit is contained in:
AdisakKanthawilang 2024-07-30 16:49:16 +07:00
parent 02002a32a6
commit f027422d56
2 changed files with 353 additions and 42 deletions

View file

@ -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;
}