blt/models/result.go
2024-05-29 11:40:42 -04:00

25 lines
345 B
Go

package models
import (
"gorm.io/gorm"
)
type Result struct {
gorm.Model
AverageScore float
MinimumScore float
MaximumScore float
// belongs to Hardware
HardwareID int
Hardware Hardware
// belongs to Benchmark
BenchmarkID int
Benchmark Benchmark
// belongs to Test
TestID int
Test Test
}