package JYES_NJZX type EsThemeDateValue struct { Took int `json:"took"` TimedOut bool `json:"timed_out"` Shards struct { Total int `json:"total"` Successful int `json:"successful"` Skipped int `json:"skipped"` Failed int `json:"failed"` } `json:"_shards"` Hits struct { Total int `json:"total"` MaxScore float64 `json:"max_score"` Hits []Hits `json:"hits"` } `json:"hits"` } type Hits struct { Index string `json:"_index"` Type int `json:"_type"` Id string `json:"_id"` Score int `json:"_score"` Source Source `json:"_source"` } type Source struct { SensorName string `json:"sensor_name"` FactorName string `json:"factor_name"` FactorProtoCode string `json:"factor_proto_code"` Data map[string]float64 `json:"data"` Factor int `json:"factor"` CollectTime string `json:"collect_time"` Sensor int `json:"sensor"` Structure int `json:"structure"` IotaDevice []string `json:"iota_device"` CreateTime string `json:"create_time"` }