test_data.go 289 B

123456789101112131415161718
  1. package models
  2. import "time"
  3. type InsertSqlTestDataCommand struct {
  4. }
  5. type SqlTestData struct {
  6. Id int64
  7. Metric1 string
  8. Metric2 string
  9. ValueBigInt int64
  10. ValueDouble float64
  11. ValueFloat float32
  12. ValueInt int
  13. TimeEpoch int64
  14. TimeDateTime time.Time
  15. }