jiangshuai
2023-09-27 1444c7c800fc042cd99213e901d6ad3722d0f03f
request/location_product_amount.go
@@ -5,13 +5,13 @@
type AddLocationProductAmount struct {
   LocationId       int             `json:"locationId"`
   ProductId        string          `json:"productId"`
   Amount           decimal.Decimal `json:"decimal"`           //库存数量
   AdjustAmount     decimal.Decimal `json:"adjustAmount" `     //差值
   DifferenceAmount decimal.Decimal `json:"difference_amount"` //计数数量
   Amount           decimal.Decimal `json:"Amount"`           //库存数量
   AdjustAmount     decimal.Decimal `json:"adjustAmount" `    //差值
   DifferenceAmount decimal.Decimal `json:"differenceAmount"` //计数数量
}
type UpdateLocationProductAmount struct {
   LocationProductAmountId int             `json:"locationProductAmountId"` //库存盘点id
   AdjustAmount            decimal.Decimal `json:"adjustAmount" `           //差值
   DifferenceAmount        decimal.Decimal `json:"difference_amount"`       //计数数量
   DifferenceAmount        decimal.Decimal `json:"differenceAmount"`        //计数数量
}