浏览代码

Add BES flags

Andrea Fazzi 6 年之前
父节点
当前提交
2a08130da1
共有 1 个文件被更改,包括 4 次插入0 次删除
  1. 4 0
      orm/student.go

+ 4 - 0
orm/student.go

@@ -12,6 +12,10 @@ type Student struct {
 	gorm.Model
 	Credential
 
+	Handicap bool
+	DSA      bool
+	BES      bool
+
 	ClassID uint `schema:"class_id"`
 
 	Class      *Class