mirror of
https://github.com/Luzifer/sii.git
synced 2024-12-20 16:11:17 +00:00
Fix: TotalTransportedWeight seems to be float
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
ab39609f45
commit
bbbce2b2a3
1 changed files with 4 additions and 4 deletions
|
@ -5,10 +5,10 @@ func init() {
|
|||
}
|
||||
|
||||
type TrailerUtilizationLog struct {
|
||||
Entries []Ptr `sii:"entries"` // Needs verification
|
||||
TotalDrivenDistanceKM int64 `sii:"total_driven_distance_km"`
|
||||
TotalTransportedCargoes int64 `sii:"total_transported_cargoes"`
|
||||
TotalTransportedWeight int64 `sii:"total_transported_weight"`
|
||||
Entries []Ptr `sii:"entries"` // Needs verification
|
||||
TotalDrivenDistanceKM int64 `sii:"total_driven_distance_km"`
|
||||
TotalTransportedCargoes int64 `sii:"total_transported_cargoes"`
|
||||
TotalTransportedWeight float32 `sii:"total_transported_weight"`
|
||||
|
||||
blockName string
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue