21 lines
335 B
Go
21 lines
335 B
Go
|
|
package models
|
||
|
|
|
||
|
|
// ExamType 考试类型
|
||
|
|
type ExamType string
|
||
|
|
|
||
|
|
const (
|
||
|
|
ExamTypeFinal ExamType = "final"
|
||
|
|
ExamTypeMidterm ExamType = "midterm"
|
||
|
|
ExamTypeMakeup ExamType = "makeup"
|
||
|
|
)
|
||
|
|
|
||
|
|
// ExamEntry 考试条目
|
||
|
|
type ExamEntry struct {
|
||
|
|
Course string
|
||
|
|
Date string
|
||
|
|
Time string
|
||
|
|
Week string
|
||
|
|
Weekday string
|
||
|
|
Type ExamType
|
||
|
|
}
|