feat : ajout d'un système de scanner bovin

This commit is contained in:
2026-03-26 17:41:19 +01:00
parent 696100a622
commit d206185afb
7 changed files with 425 additions and 23 deletions

View File

@@ -0,0 +1,14 @@
export interface BovineData {
id: number
nationalNumber: string
receivedWeight: number | null
arrivalDate: string | null
buildingCase: string | null
}
export type BovinePayload = {
nationalNumber?: string
receivedWeight?: number | null
arrivalDate?: string | null
buildingCase?: string | null
}