jiangshuai
2023-09-28 6856a595e0523216c16c03c58110f4ce80fa88b5
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"`
@@ -18,3 +20,14 @@
   Amount           decimal.Decimal `json:"Amount"`           //库存数量
   ProductId        string          `json:"productId"`        //产品id
}
type GetRuleList struct {
   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
}