sunty
2019-06-28 f2d60f4a96b77cf3ae924f9d479bd40dd8fbd13c
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"`
}