blt/models/result.go

25 lines
351 B
Go
Raw Normal View History

package models
import (
"gorm.io/gorm"
)
type Result struct {
gorm.Model
2024-05-29 11:41:53 -04:00
AverageScore float32
MinimumScore float32
MaximumScore float32
// belongs to Hardware
2024-05-29 11:40:42 -04:00
HardwareID int
Hardware Hardware
// belongs to Benchmark
2024-05-29 11:40:42 -04:00
BenchmarkID int
Benchmark Benchmark
// belongs to Test
2024-05-29 11:40:42 -04:00
TestID int
Test Test
}