14 lines
246 B
Go
14 lines
246 B
Go
package types
|
|
|
|
import "time"
|
|
|
|
type MeasuredValue interface {
|
|
GetID() string
|
|
GetCreationDate() *time.Time
|
|
GetSensorID() string
|
|
GetValue() float64
|
|
SetCreationDate(date *time.Time)
|
|
SetTillDate(date time.Time)
|
|
SetUpdateDate(date *time.Time)
|
|
}
|