ajout du niveau d'experience

This commit is contained in:
2026-06-11 11:06:59 +02:00
parent b0555d944b
commit e1a71ce248
10 changed files with 11 additions and 3 deletions
@@ -11,5 +11,6 @@
export interface CreateExperienceLevelDto {
label?: string | null;
staffId?: number | null;
}
@@ -12,5 +12,6 @@
export interface CreateHistoryOfApprovalDto {
deliveryDate?: string;
expirationDate?: string;
staffId?: number;
}
@@ -15,6 +15,6 @@ export interface CreateStaffDto {
profession?: string | null;
email?: string | null;
f4T2NumberApproval?: string | null;
f4T2ExpirationDate?: string;
f4T2ExpirationDate?: Date | null;
}
@@ -12,5 +12,6 @@
export interface GetExperienceLevelDto {
id?: number;
label?: string | null;
staffId?: number | null;
}
@@ -13,5 +13,6 @@ export interface GetHistoryOfApprovalDto {
id?: number;
deliveryDate?: string;
expirationDate?: string;
staffId?: number;
}
@@ -13,5 +13,6 @@ export interface GetProviderDto {
id?: number;
price?: number;
providerTypeId?: number;
providerType?: string | null;
}
@@ -17,5 +17,6 @@ export interface GetStaffDto {
email?: string | null;
f4T2NumberApproval?: string | null;
f4T2ExpirationDate?: Date | null;
experienceLevel?: string | null;
}