feat : étape 1/5 - ajout des champs sex et exitedAt sur Bovine

- Migration pour les nouvelles colonnes
- ExistsFilter sur exitedAt, SearchFilter sur sex/workNumber/breedCode, DateFilter sur birthDate
- DTO front étendu avec workNumber, birthDate, breedCode, sex, exitedAt

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-22 17:53:37 +02:00
parent 023d71381e
commit a4342af095
3 changed files with 77 additions and 1 deletions

View File

@@ -5,6 +5,11 @@ export interface BovineData {
arrivalDate: string | null
buildingCase: string | null
supplier: string | null
workNumber: string | null
birthDate: string | null
breedCode: string | null
sex: string | null
exitedAt: string | null
}
export type BovinePayload = {