package domain
// 单位数量
type UnitQuantity struct {
// 数量(保留两位小数)
Quantity float64 `json:"quantity,omitempty"`
// 单位
Unit string `json:"unit,omitempty"`
// 单份重量(原材料)
UnitWeight float64 `json:"unitWeight,omitempty"`
// 重量
Weight float64 `json:"weight,omitempty"`
}