fix(pkg/logfile): read from csv file styled by measured values

This commit is contained in:
2019-06-28 13:04:04 +02:00
parent 41653afebf
commit 4fe4abb0e9
6 changed files with 167 additions and 150 deletions

View File

@ -4,14 +4,16 @@ import "time"
type MeasuredValue interface {
GetID() string
GetCreationDate() *time.Time
GetMeasuredValueType() MeasuredValueType
GetValue() float64
GetFromDate() time.Time
GetTillDate() time.Time
GetSensorID() string
GetValue() float64
SetCreationDate(date *time.Time)
GetCreationDate() *time.Time
GetUpdateDate() *time.Time
SetTillDate(date time.Time)
SetCreationDate(date *time.Time)
SetUpdateDate(date *time.Time)
}