package request import ( "github.com/shopspring/decimal" "wms/constvar" ) type GetReorderRuleList struct { PageInfo KeyWord string `json:"keyWord"` } type ProductAmount struct { ProductId string `json:"productId"` ToLocationId int `json:"toLocationId"` FromLocationId int `json:"fromLocationId"` Amount decimal.Decimal `json:"amount"` Status constvar.OperationStatus `json:"status"` } type GetAmountAndPrediction struct { ProductId string `json:"productId"` LocationId int `json:"locationId"` }