package entities import ( "time" "github.com/google/uuid" ) type Ingredient struct { ID uuid.UUID `gorm:"type:uuid;primary_key;default:gen_random_uuid()" json:"id"` OrganizationID uuid.UUID `gorm:"type:uuid;not null;index" json:"organization_id"` OutletID *uuid.UUID `gorm:"type:uuid;index" json:"outlet_id"` Name string `gorm:"not null;size:255" json:"name"` UnitID uuid.UUID `gorm:"type:uuid;not null;index" json:"unit_id"` Cost float64 `gorm:"type:decimal(10,2);default:0.00" json:"cost"` Stock float64 `gorm:"type:decimal(10,2);default:0.00" json:"stock"` IsSemiFinished bool `gorm:"default:false" json:"is_semi_finished"` IsActive bool `gorm:"default:true" json:"is_active"` Metadata Metadata `gorm:"type:jsonb;default:'{}'" json:"metadata"` CreatedAt time.Time `gorm:"autoCreateTime" json:"created_at"` UpdatedAt time.Time `gorm:"autoUpdateTime" json:"updated_at"` Unit *Unit `gorm:"foreignKey:UnitID" json:"unit,omitempty"` }