You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
338 B
17 lines
338 B
package ES7SqlUtil
|
|
|
|
type EchartsResult struct {
|
|
|
|
Groups [][]string `json:"groups"`
|
|
|
|
Datas [][]string `json:"datas"`
|
|
Datas2 [][]string `json:"datas2"`
|
|
Datas3 [][]string `json:"datas3"`
|
|
Datas4 [][]string `json:"datas4"`
|
|
Datas5 [][]string `json:"datas5"`
|
|
|
|
Columns []ESSqlColumn `json:"columns"`
|
|
|
|
Rows [][]interface{} `json:"rows"`
|
|
}
|