liujiandao
2023-10-09 2716487d13f3521adeb25a48aa07a89f885d32c7
request/location_product_amount.go
@@ -1,6 +1,8 @@
package request
import "github.com/shopspring/decimal"
import (
   "github.com/shopspring/decimal"
)
type AddLocationProductAmount struct {
   LocationId       int             `json:"locationId"`
@@ -15,7 +17,7 @@
   AdjustAmount     decimal.Decimal `json:"adjustAmount" `    //差值
   DifferenceAmount decimal.Decimal `json:"differenceAmount"` //计数数量
   OperationId      int             `json:"operationId"`      //出入库id
   Amount           decimal.Decimal `json:"Amount"`           //库存数量
   Amount           decimal.Decimal `json:"amount"`           //库存数量
   ProductId        string          `json:"productId"`        //产品id
}
@@ -23,3 +25,9 @@
   LocationId int    `json:"locationId"` //位置id
   ProductId  string `json:"productId"`  //产品id
}
type FinishLocationProductAmount struct {
   OperationId             int    `json:"operationId"`             //出入库id
   ProductId               string `json:"productId"`               //产品id
   LocationProductAmountId int    `json:"locationProductAmountId"` //库存盘点id
}