fix(FE-41): Menambahkan kolom kapasitas di tabel kandang

This commit is contained in:
randy-ar
2025-10-31 14:57:15 +07:00
parent b6991652ac
commit 495e11c6fe
8 changed files with 62 additions and 2 deletions
+2
View File
@@ -7,6 +7,7 @@ export type BaseKandang = {
name: string;
status: string;
location: BaseLocation;
capacity: number;
pic: BaseUser;
};
@@ -15,6 +16,7 @@ export type Kandang = BaseMetadata & BaseKandang;
export type CreateKandangPayload = {
name: string;
location_id: number;
capacity: number;
pic_id: number;
};