liujiandao
2023-09-27 5c1dfdd9f0d51821ac47a46cba74ef94bfe0141e
request/location_product_amount.go
@@ -3,13 +3,16 @@
import "github.com/shopspring/decimal"
type AddLocationProductAmount struct {
   LocationProductAmountId int             `json:"locationProductAmountId"` //库存盘点id
   AdjustAmount            decimal.Decimal `json:"adjustAmount" `           //差值
   DifferenceAmount        decimal.Decimal `json:"difference_amount"`       //计数数量
   LocationId       int             `json:"locationId"`
   ProductId        string          `json:"productId"`
   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"`        //计数数量
   OperationId             int             `json:"operationId"`             //出入库id
}