|
|
|
@ -613,7 +613,7 @@ public class GeneralQuestionLogService extends CoreBaseService<GeneralQuestionLo
|
|
|
|
|
.build();
|
|
|
|
|
List<GeneralQuestionLog> logList = generalQuestionLogDao.getValuesByQuery(questionLogQuery);
|
|
|
|
|
|
|
|
|
|
final List<QuestionLogAddTypeEnum> tempList = Arrays.asList(PRE_SUBMIT, null);
|
|
|
|
|
final List<QuestionLogAddTypeEnum> tempList = Arrays.asList(PRE_SUBMIT, LOCK, null);
|
|
|
|
|
// 只是未提交的数据
|
|
|
|
|
logList = logList.stream().filter(item -> tempList.contains(item.getQuestionLogAddType())).collect(Collectors.toList());
|
|
|
|
|
Assert.notEmpty(logList, "未查询到题目信息!");
|
|
|
|
|