查询分数信息,未完
parent
1a64e3e992
commit
3df45ee621
@ -0,0 +1,50 @@
|
|||||||
|
package com.ibeetl.jlw.entity;
|
||||||
|
|
||||||
|
import com.ibeetl.admin.core.entity.BaseEntity;
|
||||||
|
import com.ibeetl.jlw.enums.TeacherOpenCourseQuestionFromTypeEnum;
|
||||||
|
import lombok.Data;
|
||||||
|
import org.beetl.sql.fetch.annotation.Fetch;
|
||||||
|
import org.beetl.sql.fetch.annotation.FetchSql;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 我的课程-题库-做题日志-分数信息
|
||||||
|
* @author mlx
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@Fetch
|
||||||
|
public class TeacherOpenCourseQuestionLogScoreInfo extends BaseEntity{
|
||||||
|
|
||||||
|
//来源类型(枚举)
|
||||||
|
|
||||||
|
private TeacherOpenCourseQuestionFromTypeEnum teacherOpenCourseQuestionLogFromType ;
|
||||||
|
|
||||||
|
//题目快照ID
|
||||||
|
|
||||||
|
private Long resourcesQuestionSnapshotId ;
|
||||||
|
|
||||||
|
// 学生ID
|
||||||
|
|
||||||
|
private String studentId;
|
||||||
|
|
||||||
|
// 答对数量
|
||||||
|
|
||||||
|
private int correctCount;
|
||||||
|
|
||||||
|
// 答错数量
|
||||||
|
|
||||||
|
private int wrongCount;
|
||||||
|
|
||||||
|
// 总得分
|
||||||
|
|
||||||
|
private float totalScore;
|
||||||
|
|
||||||
|
// 正确率 最大100
|
||||||
|
|
||||||
|
private int correctRate;
|
||||||
|
|
||||||
|
@FetchSql(value = "")
|
||||||
|
private List<TeacherOpenCourseQuestionLog> a;
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue