refactor(FE-114): add foreign key fields to enhance data relationships in project-flock type definitions

This commit is contained in:
rstubryan
2025-10-23 20:00:42 +07:00
parent 3f76cb58fe
commit e76d881d8a
+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[];
};