feat(BE): add standard_fcr column to production_standard_details and update related services and validations

This commit is contained in:
aguhh18
2025-12-30 10:27:12 +07:00
parent db4e8232b9
commit e4acd9a21e
7 changed files with 35 additions and 10 deletions
@@ -12,6 +12,7 @@ type ProductionStandardDetail struct {
TargetHenHouseProduction *float64 `gorm:"type:numeric(15,3)"`
TargetEggWeight *float64 `gorm:"type:numeric(15,3)"`
TargetEggMass *float64 `gorm:"type:numeric(15,3)"`
StandardFCR *float64 `gorm:"type:numeric(15,3)"`
CreatedAt time.Time `gorm:"type:timestamptz;not null"`
UpdatedAt time.Time `gorm:"type:timestamptz;not null"`