| | |
| | | ) |
| | | |
| | | type HistoryReport struct { |
| | | ID int |
| | | BaseOperationType constvar.BaseOperationType |
| | | Number string //操作单号 |
| | | ProductId string //产品编号 |
| | | ProductName string //产品名称 |
| | | OperationTypeName string //业务名称 |
| | | FromLocation string //源位置名称 |
| | | ToLocation string //目标位置名称 |
| | | ID int `json:"ID,omitempty"` |
| | | BaseOperationType constvar.BaseOperationType `json:"baseOperationType,omitempty"` |
| | | Number string `json:"number,omitempty"` //操作单号 |
| | | ProductId string `json:"productId,omitempty"` //产品编号 |
| | | ProductName string `json:"productName,omitempty"` //产品名称 |
| | | OperationTypeName string `json:"operationTypeName,omitempty"` //业务名称 |
| | | FromLocation string `json:"fromLocation,omitempty"` //源位置名称 |
| | | ToLocation string `json:"toLocation,omitempty"` //目标位置名称 |
| | | } |
| | | |
| | | const ( |