2019-06-25 20:22:34 +00:00
|
|
|
package types
|
|
|
|
|
2019-06-26 21:36:01 +00:00
|
|
|
import "time"
|
|
|
|
|
2019-06-25 20:22:34 +00:00
|
|
|
type MeasuredValue interface {
|
|
|
|
GetID() string
|
2019-06-26 21:36:01 +00:00
|
|
|
GetCreationDate() *time.Time
|
2019-06-25 20:22:34 +00:00
|
|
|
GetSensorID() string
|
|
|
|
GetValue() float64
|
2019-06-26 21:36:01 +00:00
|
|
|
SetCreationDate(date *time.Time)
|
|
|
|
SetTillDate(date time.Time)
|
|
|
|
SetUpdateDate(date *time.Time)
|
2019-06-25 20:22:34 +00:00
|
|
|
}
|