From 015c07410b59bafd606bd4f567a61355c4f15958 Mon Sep 17 00:00:00 2001
From: jiangshuai <291802688@qq.com>
Date: 星期五, 03 十一月 2023 11:37:20 +0800
Subject: [PATCH] Merge branch 'master' of http://192.168.5.5:10010/r/aps/WMS

---
 request/reorder_rule_request.go |   27 +++++++++++++++++++++++++++
 1 files changed, 27 insertions(+), 0 deletions(-)

diff --git a/request/reorder_rule_request.go b/request/reorder_rule_request.go
new file mode 100644
index 0000000..53e5c53
--- /dev/null
+++ b/request/reorder_rule_request.go
@@ -0,0 +1,27 @@
+package request
+
+import (
+	"github.com/shopspring/decimal"
+	"wms/constvar"
+)
+
+type GetReorderRuleList struct {
+	PageInfo
+	KeyWord    string `json:"keyWord"`
+	LocationId int    `json:"locationId"`
+	ProductId  string `json:"productId"`
+	Type       string `json:"type"` //绫诲瀷:bh=琛ヨ揣
+}
+
+type ProductAmount struct {
+	ProductId         string                     `json:"productId"`
+	ToLocationId      int                        `json:"toLocationId"`
+	FromLocationId    int                        `json:"fromLocationId"`
+	Amount            decimal.Decimal            `json:"amount"`
+	BaseOperationType constvar.BaseOperationType `json:"baseOperationType"`
+}
+
+type GetAmountAndPrediction struct {
+	ProductId  string `json:"productId"`
+	LocationId int    `json:"locationId"`
+}

--
Gitblit v1.8.0