grafana/pkg/models/test_data.go

19 lines
289 B
Go
Raw Normal View History

2017-03-31 02:01:04 +08:00
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
2017-03-31 02:01:04 +08:00
}