insert into exam_words_judge_result
(ans_sheet_path, is_finished, start_date)
values (#{path}, 0, now())
update exam_words_judge_result
set error_msg = #{errorMsg}
and is_finished = 2
where id = #{id}
update exam_words_judge_result
set student_id = #{examWordsJudgeResultDO.studentId},
exam_words_id = #{examWordsJudgeResultDO.examWordsId},
correct_word_ids = #{examWordsJudgeResultDO.correctWordIds, typeHandler=com.yinlihupo.enlish.service.config.ListWordIdTypeHandler},
wrong_word_ids = #{examWordsJudgeResultDO.wrongWordIds, typeHandler=com.yinlihupo.enlish.service.config.ListWordIdTypeHandler},
correct_word_count = #{examWordsJudgeResultDO.correctWordCount},
wrong_word_count = #{examWordsJudgeResultDO.wrongWordCount},
is_finished = 1
where id = #{examWordsJudgeResultDO.id}