2018-04-26 16:37:59 +09:00
|
|
|
package meta
|
2018-04-12 18:38:04 +09:00
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
|
|
|
|
"git.loafle.net/overflow/commons-go/core/util"
|
|
|
|
)
|
|
|
|
|
|
|
|
type MetaSensorDisplayItem struct {
|
2018-06-05 18:08:52 +09:00
|
|
|
ID json.Number `json:"id,Number,omitempty"`
|
2018-06-12 18:18:11 +09:00
|
|
|
Key string `json:"key, omitempty"`
|
2018-06-05 18:08:52 +09:00
|
|
|
Name string `json:"name,omitempty"`
|
2018-06-12 18:18:11 +09:00
|
|
|
IsDefault bool `json:"isDefault,omitempty"`
|
2018-06-05 18:08:52 +09:00
|
|
|
MetaCrawler *MetaCrawler `json:"metaCrawler,omitempty"`
|
|
|
|
MetaSensorItemUnit *MetaSensorItemUnit `json:"metaSensorItemUnit,omitempty"`
|
|
|
|
MetaSensorItemType *MetaSensorItemType `json:"metaSensorItemType,omitempty"`
|
2018-06-12 18:18:11 +09:00
|
|
|
CreateDate *util.Timestamp `json:"createDate,omitempty"`
|
2018-04-12 18:38:04 +09:00
|
|
|
}
|