mirror of https://github.com/grafana/grafana.git
19 lines
300 B
Go
19 lines
300 B
Go
|
|
package models
|
||
|
|
|
||
|
|
import "time"
|
||
|
|
|
||
|
|
type InsertSqlTestDataCommand struct {
|
||
|
|
}
|
||
|
|
|
||
|
|
type SqlTestData struct {
|
||
|
|
Id int64
|
||
|
|
Metric1 string
|
||
|
|
Metric2 string
|
||
|
|
ValueBigInt int64
|
||
|
|
ValueDouble float64
|
||
|
|
ValueInt int
|
||
|
|
TimeEpoch int64
|
||
|
|
TimeDateTime time.Time
|
||
|
|
TimeTimeStamp time.Time
|
||
|
|
}
|