refactor(FE-Storyless): add flock_id, area_id, fcr_id, location_id, and kandang_ids to project-flock type definition

This commit is contained in:
rstubryan
2025-10-23 19:52:21 +07:00
parent db8cb56984
commit 6e5875a7b7
+5
View File
@@ -10,11 +10,16 @@ export type BaseProjectFlock = {
name: string;
status: string;
flock: Flock;
flock_id: number;
area: Area;
area_id: number;
category: string;
fcr: Fcr;
fcr_id: number;
location: Location;
location_id: number;
period: number;
kandang_ids: number[];
kandangs: Kandang[];
};