liuxiaolong
2019-06-28 b871bc358a94e255e38e122dc86f16fb48361232
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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"`
}