改一些备注

beetlsql3-dev
Mlxa0324 2 years ago
parent b067b24a4b
commit 9ab9d33a9e

@ -640,7 +640,7 @@ public class GeneralQuestionLogService extends CoreBaseService<GeneralQuestionLo
if(!isReSend) {
GeneralQuestionLogQuery questionLogQuery = new GeneralQuestionLogQuery();
questionLogQuery.setStudentId(studentId);
// 正在做题的话,再次进来如果这个试卷没提交,则继续做题,不会传生成新的题目
// 正在做题的话,再次进来如果这个试卷没提交,则继续做题,不会重新生成题目
questionLogQuery.setQuestionLogAddType(PRE_SUBMIT);
questionLogQuery.setGeneralQuestionSettingId(setting.getGeneralQuestionSettingId());
questionLogQuery.setGeneralQuestionLogStatus(1);

@ -523,7 +523,7 @@ public class GeneralQuestionSettingService extends CoreBaseService<GeneralQuesti
}
// 学生身份屏蔽答案,且记录在做题日志表中,这里不为空的判断有点多余
if (student != null) {
{
// 判断章节练习是否需要重发试卷的题目
boolean selectIsReSend = generalQuestionLogService.
verifyLogAddTypeIsReSend(generalQuestionSettingId, studentId, fromTypeEnum, FINALLY_SUBMIT);

@ -452,7 +452,7 @@ public class TeacherOpenCourseQuestionLogService extends CoreBaseService<Teacher
if(!isReSend) {
TeacherOpenCourseQuestionLogQuery questionLogQuery = new TeacherOpenCourseQuestionLogQuery();
questionLogQuery.setStudentId(studentId);
// 正在做题的话,再次进来如果这个试卷没提交,则继续做题,不会传生成新的题目
// 正在做题的话,再次进来如果这个试卷没提交,则继续做题,不会重新生成题目
questionLogQuery.setQuestionLogAddType(PRE_SUBMIT);
questionLogQuery.setTeacherOpenCourseQuestionSettingId(setting.getTeacherOpenCourseQuestionSettingId());
questionLogQuery.setTeacherOpenCourseQuestionLogStatus(1);

@ -739,7 +739,7 @@ public class TeacherOpenCourseQuestionSettingService extends CoreBaseService<Tea
}
// 学生身份屏蔽答案,且记录在做题日志表中,这里不为空的判断有点多余
if (student != null) {
{
// 判断章节练习是否需要重发试卷的题目
boolean selectIsReSend = teacherOpenCourseQuestionLogService.
verifyLogAddTypeIsReSend(teacherOpenCourseQuestionSettingId, studentId, fromTypeEnum, FINALLY_SUBMIT);

Loading…
Cancel
Save