| | |
| | | FinenessList []FinenessItem `json:"finenessList"` //纤度数组 |
| | | SumFineness decimal.Decimal `gorm:"type:decimal(12,2);not null;comment:合计纤度" json:"sumFineness"` //合计纤度 |
| | | SumQuantity decimal.Decimal `gorm:"type:decimal(12,2);not null;comment:合计数量" json:"sumQuantity"` //合计数量 |
| | | Position int `gorm:"not null;default:0;comment:车号" json:"position"` //最后一个车号 |
| | | } |
| | | |
| | | type FinenessItem struct { |
| | | Position int8 `json:"position"` //车号 |
| | | Position int `json:"position"` //车号 |
| | | Fineness float32 `json:"fineness"` //纤度 |
| | | Quantity decimal.Decimal `json:"quantity"` //数量 |
| | | Quantity int `json:"quantity"` //数量 |
| | | Sum decimal.Decimal `json:"sum"` //合计 |
| | | } |
| | | |