package model type SearchLogHits struct { Index string `json:"_index"` Type string `json:"_type"` ID string `json:"_id"` Score int64 `json:"_score"` Source SearchLogSource `json:"_source"` } type SearchLogSource struct { IP int64 `json:"ip"` UserID int64 `json:"user_id"` UserSign string `json:"user_sign"` Ptag string `json:"ptag"` BrowserInfo string `json:"browser_info"` CreateTime int64 `json:"create_time"` Keyword string `json:"keyword"` Flag int64 `json:"flag"` Platform int64 `json:"platform"` Adtag string `json:"adtag"` }