mirror of
https://github.com/grafana/grafana.git
synced 2024-11-24 09:50:29 -06:00
b5379c5335
* Chore: Fix variable naming Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com>
19 lines
289 B
Go
19 lines
289 B
Go
package models
|
|
|
|
import "time"
|
|
|
|
type InsertSQLTestDataCommand struct {
|
|
}
|
|
|
|
type SQLTestData struct {
|
|
Id int64
|
|
Metric1 string
|
|
Metric2 string
|
|
ValueBigInt int64
|
|
ValueDouble float64
|
|
ValueFloat float32
|
|
ValueInt int
|
|
TimeEpoch int64
|
|
TimeDateTime time.Time
|
|
}
|