zhangqian
2024-06-12 e5df488268e29b272932e6cc1d2b1e7034590ba0
response/report_forms_response.go
@@ -2,6 +2,7 @@
import (
   "github.com/shopspring/decimal"
   "time"
   "wms/constvar"
)
@@ -20,7 +21,7 @@
type InventoryHistory struct {
   Number            string                     `json:"number"`            //单号
   Date              string                     `json:"date"`              //日期
   Date              time.Time                  `json:"date"`              //日期
   ProductName       string                     `json:"productName"`       //产品名称
   FromLocation      string                     `json:"fromLocation"`      //源位置
   ToLocation        string                     `json:"toLocation"`        //目标位置
@@ -33,10 +34,13 @@
   ProductId         string                     `json:"productId"`
   FromLocationId    int                        `json:"fromLocationId"`
   ToLocationId      int                        `json:"toLocationId"`
   OperationId       int                        `json:"operationId"`
   OperationTypeName string                     `json:"operationTypeName"` //作业类型名称
}
type LocationForms struct {
   ProduceId       string          `json:"produceId"`       //产品id
   LocationId      int             `json:"locationId"`      //位置id
   LocationName    string          `json:"locationName"`    //位置名称
   ProductName     string          `json:"productName"`     //产品名称
   ProductTypeName string          `json:"productTypeName"` //产品类别