Refactoring code module 12_evaluatePersonal
This commit is contained in:
parent
381ec04492
commit
490f02309e
33 changed files with 598 additions and 1036 deletions
34
src/modules/12_evaluatePersonal/interface/response/Main.ts
Normal file
34
src/modules/12_evaluatePersonal/interface/response/Main.ts
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
interface Directors {
|
||||
email: string;
|
||||
firstName: string;
|
||||
id: string;
|
||||
lastName: string;
|
||||
phone: string;
|
||||
position: string;
|
||||
positionName: string;
|
||||
prefix: string;
|
||||
createdAt: string | Date;
|
||||
createdFullName: string;
|
||||
createdUserId: string;
|
||||
lastUpdateFullName: string;
|
||||
lastUpdateUserId: string;
|
||||
lastUpdatedAt: string | Date;
|
||||
}
|
||||
|
||||
interface Meetings {
|
||||
dateEnd: Date | string;
|
||||
dateStart: Date | string;
|
||||
duration: string;
|
||||
id: string;
|
||||
result: string;
|
||||
round: string;
|
||||
title: string;
|
||||
createdAt: string | Date;
|
||||
createdFullName: string;
|
||||
createdUserId: string;
|
||||
lastUpdateFullName: string;
|
||||
lastUpdateUserId: string;
|
||||
lastUpdatedAt: string | Date;
|
||||
}
|
||||
|
||||
export type { Directors, Meetings };
|
||||
Loading…
Add table
Add a link
Reference in a new issue