package request
|
|
import "github.com/shopspring/decimal"
|
|
type AddLocationProductAmount struct {
|
LocationProductAmountId int `json:"locationProductAmountId"` //库存盘点id
|
AdjustAmount decimal.Decimal `json:"adjustAmount" ` //差值
|
DifferenceAmount decimal.Decimal `json:"difference_amount"` //计数数量
|
}
|
|
type UpdateLocationProductAmount struct {
|
LocationProductAmountId int `json:"locationProductAmountId"` //库存盘点id
|
AdjustAmount decimal.Decimal `json:"adjustAmount" ` //差值
|
DifferenceAmount decimal.Decimal `json:"difference_amount"` //计数数量
|
}
|