ms-tester/pkg/models/subtask.go

9 lines
183 B
Go
Raw Normal View History

2024-08-18 13:51:28 +00:00
package models
2024-08-20 22:54:46 +00:00
type SubTask struct {
Id *int32 `db:"id"`
ContestId *int32 `db:"contest_id"`
TestgroupId *int32 `db:"testgroup_id"`
TaskId *int32 `db:"task_id"`
2024-08-18 13:51:28 +00:00
}