mysql: testdata

This commit is contained in:
Torkel Ödegaard
2017-03-30 20:01:04 +02:00
parent 34d92b0e79
commit 998f04e1e8
2 changed files with 42 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
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
}