fix(pkg/logfile): read from csv file styled by measured values
This commit is contained in:
@ -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)
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user