models/subtask.go

9 lines
183 B
Go
Raw Normal View History

2024-09-23 18:38:34 +00:00
package models
type SubTask struct {
Id *int32 `db:"id"`
ContestId *int32 `db:"contest_id"`
TestgroupId *int32 `db:"testgroup_id"`
TaskId *int32 `db:"task_id"`
}