|
@@ -10,6 +10,7 @@ type ExeamLog struct {
|
|
Id primitive.ObjectID `bson:"_id,omitempty" json:"_id"`
|
|
Id primitive.ObjectID `bson:"_id,omitempty" json:"_id"`
|
|
Cid string `bson:"cid,omitempty" json:"cid"` // 分类id
|
|
Cid string `bson:"cid,omitempty" json:"cid"` // 分类id
|
|
Uid string `bson:"uid,omitempty" json:"uid"` // 用户id
|
|
Uid string `bson:"uid,omitempty" json:"uid"` // 用户id
|
|
|
|
+ Title string `bson:"title,omitempty" json:"title"` // 考核标题
|
|
Type string `bson:"type,omitempty" json:"type"` // 考核类型: 理论/实操
|
|
Type string `bson:"type,omitempty" json:"type"` // 考核类型: 理论/实操
|
|
Correct *int `bson:"correct,omitempty" json:"correct"` // 正确题目数
|
|
Correct *int `bson:"correct,omitempty" json:"correct"` // 正确题目数
|
|
Error *int `bson:"error,omitempty" json:"error"` // 错误题目数
|
|
Error *int `bson:"error,omitempty" json:"error"` // 错误题目数
|