2017-03-30 20:01:04 +02:00
|
|
|
package models
|
|
|
|
|
|
|
|
|
|
import "time"
|
|
|
|
|
|
2020-11-11 06:21:08 +01:00
|
|
|
type InsertSQLTestDataCommand struct {
|
2017-03-30 20:01:04 +02:00
|
|
|
}
|
|
|
|
|
|
2020-11-11 06:21:08 +01:00
|
|
|
type SQLTestData struct {
|
2017-03-31 11:45:25 +02:00
|
|
|
Id int64
|
|
|
|
|
Metric1 string
|
|
|
|
|
Metric2 string
|
|
|
|
|
ValueBigInt int64
|
|
|
|
|
ValueDouble float64
|
|
|
|
|
ValueFloat float32
|
|
|
|
|
ValueInt int
|
|
|
|
|
TimeEpoch int64
|
|
|
|
|
TimeDateTime time.Time
|
2017-03-30 20:01:04 +02:00
|
|
|
}
|