|
|
|
@ -20,6 +20,7 @@ import org.beetl.sql.fetch.annotation.FetchSql;
|
|
|
|
|
import javax.validation.constraints.NotNull;
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
import java.util.Map;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* 我的课程-题目-设置
|
|
|
|
@ -115,6 +116,14 @@ public class TeacherOpenCourseQuestionSetting extends BaseEntity {
|
|
|
|
|
|
|
|
|
|
/**======================================= 扩展数据 =====================================*/
|
|
|
|
|
|
|
|
|
|
// 附件题目的得分和评语
|
|
|
|
|
@FetchSql("select t.student_score, t.teacher_open_course_question_log_reply from teacher_open_course_question_log t " +
|
|
|
|
|
"where t.teacher_open_course_question_log_status = 1 " +
|
|
|
|
|
"and t.teacher_open_course_question_setting_id = #teacherOpenCourseQuestionSettingId# ")
|
|
|
|
|
@UpdateIgnore
|
|
|
|
|
@InsertIgnore
|
|
|
|
|
private Map fileQuestionInfo;
|
|
|
|
|
|
|
|
|
|
// 题目总数量
|
|
|
|
|
@FetchSql("select count(1) from resources_question_snapshot t " +
|
|
|
|
|
"where t.question_status = 1 " +
|
|
|
|
|