2018-04-26 07:37:59 +00:00
|
|
|
package sensor
|
2018-04-12 09:38:04 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
|
2018-04-26 07:37:59 +00:00
|
|
|
"git.loafle.net/overflow/commons-go/model/meta"
|
2018-04-12 09:38:04 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type SensorItemDependency struct {
|
2018-06-05 09:08:52 +00:00
|
|
|
ID json.Number `json:"id,Number,omitempty"`
|
|
|
|
MetaSensorDisplayItem *meta.MetaSensorDisplayItem `json:"metaSensorDisplayItem,omitempty"`
|
|
|
|
MetaSensorItemKey *meta.MetaSensorItemKey `json:"metaSensorItemKey,omitempty"`
|
2018-04-12 09:38:04 +00:00
|
|
|
}
|