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; name: string;
status: string; status: string;
flock: Flock; flock: Flock;
flock_id: number;
area: Area; area: Area;
area_id: number;
category: string; category: string;
fcr: Fcr; fcr: Fcr;
fcr_id: number;
location: Location; location: Location;
location_id: number;
period: number; period: number;
kandang_ids: number[];
kandangs: Kandang[]; kandangs: Kandang[];
}; };