2 Commits bcb763a8e8 ... 9a3ffa6b47

Author SHA1 Message Date
  chen 9a3ffa6b47 答案校对提交修改 4 years ago
  chen 0523aafde0 练习册打印日志修改 4 years ago

+ 2 - 2
ssj-kmt-exercise-service-impl/src/main/java/com/ssj/service/kmt/kmt/service/impl/KmtExerciseServiceImpl.java

@@ -1773,9 +1773,9 @@ public class KmtExerciseServiceImpl implements KmtExerciseService {
             //读取大字段文件
             if (StringUtil.isNotBlank(kmtExerciseQuestion.getQuestionPath())){
                 String path = PropertiesUtil.getValue("EXERCISE_JSON_FILE_PATH") + kmtExerciseQuestion.getQuestionPath();
-                logger.error("文件路径:{}", path);
+                logger.debug("文件路径:{}", path);
                 String content = JSONFileUtil.readJSONFile(path);
-                logger.error("文件内容:{}", content);
+                logger.debug("文件内容:{}", content);
                 if (StringUtils.isNotBlank(content)){
                     JSONObject jsonObject = JSONObject.parseObject(content);
                     kmtExerciseQuestion.setQuestion(jsonObject.getString("question"));

+ 1 - 1
ssj-mybatis-service-impl/src/main/resources/mybatis/mapper/KmtExerciseMapper.xml

@@ -1448,7 +1448,7 @@
         eq.answer_image, eq.num, eq.small_question_name,  eq.parent_id, eq.big_name, eq.real_exam_type, eq.publish_time,
         eq.update_type, eq.difficulty_level, eq.training_skill, eq.course_name, eq.is_common_flag, eq.question_year, eq.exercise_book_id, eq.es_loaded,
         eq.analysis_handler_submit_time, eq.question_class_type, eq.repulse_time, eq.handler_submit_time,
-        eq.proofread_status, eq.question_path
+        eq.proofread_status, eq.question_path, eq.concise_id
         from kmt_exercise_questions eq
         left join kmt_exercise_book eb on eq.exercise_book_id=eb.id where eq.id in
         <foreach collection="ids" open="(" item="id" separator="," close=")">