| | |
| | | FromLocation string `json:"fromLocation"` //源位置 |
| | | ToLocation string `json:"toLocation"` //目标位置 |
| | | Amount decimal.Decimal `json:"amount"` //数量 |
| | | AmountMoreUnits []models.UnitItems `json:"amountMoreUnits"` //数量多单位 |
| | | Unit string `json:"unit"` //单位 |
| | | ContactedName string `json:"contactedName"` //完成者 |
| | | Status string `json:"status"` //状态 |
| | |
| | | } |
| | | |
| | | 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"` //产品类别 |
| | | Amount decimal.Decimal `json:"amount"` //数量 |
| | | Unit string `json:"unit"` //单位 |
| | | Value decimal.Decimal `json:"value"` //总价值 |
| | | ProduceId string `json:"produceId"` //产品id |
| | | LocationId int `json:"locationId"` //位置id |
| | | LocationName string `json:"locationName"` //位置名称 |
| | | ProductName string `json:"productName"` //产品名称 |
| | | ProductTypeName string `json:"productTypeName"` //产品类别 |
| | | Amount decimal.Decimal `json:"amount"` //数量 |
| | | AmountMoreUnits []models.UnitItems `json:"amountMoreUnits"` //在库数量多单位 |
| | | Unit string `json:"unit"` //单位 |
| | | Value decimal.Decimal `json:"value"` //总价值 |
| | | } |