jiangshuai
2024-02-06 d4b62e5dcaf10b85600c13de232bb5173a11d4fc
request/location_product_amount.go
@@ -5,20 +5,22 @@
)
type AddLocationProductAmount struct {
   LocationId       int             `json:"locationId"`
   ProductId        string          `json:"productId"`
   Amount           decimal.Decimal `json:"Amount"`           //库存数量
   AdjustAmount     decimal.Decimal `json:"adjustAmount" `    //差值
   DifferenceAmount decimal.Decimal `json:"differenceAmount"` //计数数量
   Amount           decimal.Decimal `json:"Amount"`           //库存数量
   ProductId        string          `json:"productId"`
   LocationId       int             `json:"locationId"`
}
type UpdateLocationProductAmount struct {
   //LocationProductAmountId int             `json:"locationProductAmountId"` //库存盘点id
   AdjustAmount     decimal.Decimal `json:"adjustAmount" `    //差值
   DifferenceAmount decimal.Decimal `json:"differenceAmount"` //计数数量
   OperationId      int             `json:"operationId"`      //出入库id
   Amount           decimal.Decimal `json:"Amount"`           //库存数量
   ProductId        string          `json:"productId"`        //产品id
   AdjustAmount      decimal.Decimal `json:"adjustAmount" `     //差值
   DifferenceAmount  decimal.Decimal `json:"differenceAmount"`  //计数数量
   Amount            decimal.Decimal `json:"amount"`            //库存数量
   ProductId         string          `json:"productId"`         //产品id
   OperationId       int             `json:"operationId"`       //出入库id
   LocationId        int             `json:"locationId"`        //位置id
   ProductCategoryId int             `json:"productCategoryId"` //产品种类id
}
type GetRuleList struct {