15 lines
399 B
Go
15 lines
399 B
Go
|
package models
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
type Solution struct {
|
||
|
Id *int32 `db:"id"`
|
||
|
ParticipantId *int32 `db:"participant_id"`
|
||
|
TaskId *int32 `db:"task_id"`
|
||
|
LanguageId *int32 `db:"language_id"`
|
||
|
SolutionHash *string `db:"solution_hash"`
|
||
|
Result *int32 `db:"result"`
|
||
|
Score *int32 `db:"score"`
|
||
|
CreatedAt *time.Time `db:"created_at"`
|
||
|
}
|