lishihai
2024-06-13 d2e6dff92184f2c6b9cff56ce04e2f11b8494672
response/report_forms_response.go
@@ -44,12 +44,13 @@
}
type LocationForms struct {
   ProduceId       string          `json:"produceId"`       //产品id
   LocationId      int             `json:"locationId"`      //位置id
   LocationName    string          `json:"locationName"`    //位置名称
   ProductName     string          `json:"productName"`     //产品名称
   ProductTypeName string          `json:"productTypeName"` //产品类别
   Amount          decimal.Decimal `json:"amount"`          //数量
   Unit            string          `json:"unit"`            //单位
   Value           decimal.Decimal `json:"value"`           //总价值
   ProduceId       string             `json:"produceId"`       //产品id
   LocationId      int                `json:"locationId"`      //位置id
   LocationName    string             `json:"locationName"`    //位置名称
   ProductName     string             `json:"productName"`     //产品名称
   ProductTypeName string             `json:"productTypeName"` //产品类别
   Amount          decimal.Decimal    `json:"amount"`          //数量
   AmountMoreUnits []models.UnitItems `json:"amountMoreUnits"` //在库数量多单位
   Unit            string             `json:"unit"`            //单位
   Value           decimal.Decimal    `json:"value"`           //总价值
}