Added result creation route
This commit is contained in:
@ -6,18 +6,19 @@ import (
|
||||
|
||||
type Result struct {
|
||||
gorm.Model
|
||||
Name string
|
||||
Description string
|
||||
AverageScore float
|
||||
MinimumScore float
|
||||
MaximumScore float
|
||||
|
||||
// belongs to Hardware
|
||||
HardwareID int
|
||||
Hardware Hardware
|
||||
HardwareID int
|
||||
Hardware Hardware
|
||||
|
||||
// belongs to Benchmark
|
||||
BenchmarkID int
|
||||
Benchmark Benchmark
|
||||
BenchmarkID int
|
||||
Benchmark Benchmark
|
||||
|
||||
// belongs to Test
|
||||
TestID int
|
||||
Test Test
|
||||
TestID int
|
||||
Test Test
|
||||
}
|
||||
|
Reference in New Issue
Block a user