commons-go/model/meta/MetaSensorItem.go
crusader f547c15d95 ing
2018-05-11 11:24:21 +09:00

16 lines
443 B
Go

package meta
import (
"encoding/json"
"git.loafle.net/overflow/commons-go/core/util"
)
type MetaSensorItem struct {
ID json.Number `json:"id,Number,omitempty"`
SensorItemType *MetaSensorItemType `json:"sensorItemType,omitempty"`
Key string `json:"key,omitempty"`
Name string `json:"name,omitempty"`
CreateDate *util.Timestamp `json:"createDate,omitempty"`
}