feat(FE): adding column standard fcr in master data standar production

This commit is contained in:
randy-ar
2025-12-30 19:53:50 +07:00
parent bc6ebcfeda
commit 2ab7c10d5d
3 changed files with 71 additions and 1 deletions
+3
View File
@@ -21,6 +21,7 @@ export interface ProductionStandardDetails {
target_hen_house_production: number;
target_egg_weight: number;
target_egg_mass: number;
standard_fcr: number;
}
export interface StandardGrowthDetails {
@@ -46,6 +47,7 @@ export interface CreateProductionStandardPayload {
target_hen_house_production: number;
target_egg_weight: number;
target_egg_mass: number;
standard_fcr: number;
};
}[];
}
@@ -66,6 +68,7 @@ export interface UpdateProductionStandardPayload {
target_hen_house_production: number;
target_egg_weight: number;
target_egg_mass: number;
standard_fcr: number;
};
}[];
}