package models
|
|
type EsSearch struct {
|
DataBases []string `json:"databases"`
|
Tasks []string `json:"tasks"`
|
TreeNodes []string `json:"treeNodes"`
|
Tabs []string `json:"tabs"`
|
SearchTime []string `json:"searchTime"`
|
Page int `json:"page"`
|
Size int `json:"size"`
|
Threshold float32 `json:"threshold"`
|
PicUrl string `json:"picUrl"`
|
Feature string `json:"feature"`
|
IsAggs bool `json:"isAggs"`
|
InputValue string `json:"inputValue"`
|
Collection string `json:"collection"`
|
}
|