package entity import "time" type ExamPAO struct { TeamName string `json:"teamName"` // 队伍名字 } type ExamPO struct { Id int `db:"id"` // 自增id BeginTime time.Time `db:"begin_time"` EndTime time.Time `db:"end_time"` ScoreReportPath time.Time `db:"score_report_path"` }