소스 검색

删除tagType=10下的映射关系

zhoutg 5 년 전
부모
커밋
4487627c91
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      icssman-service/src/main/resources/mapper/QuestionInfoMapper.xml

+ 1 - 1
icssman-service/src/main/resources/mapper/QuestionInfoMapper.xml

@@ -328,7 +328,7 @@
     <select id="deleteTagType10Mapping">
         update icss_question_mapping
         set is_deleted = 'Y', gmt_modified = #{date}, modifier = #{person}
-        where e.is_deleted = 'N' and parent_question in
+        where is_deleted = 'N' and parent_question in
         (SELECT c.id FROM `icss_question_info` a, icss_question_mapping b, icss_question_info c
         where a.is_deleted = 'N' and b.is_deleted = 'N' and c.is_deleted = 'N' and
         a.id = b.parent_question and b.son_question = c.id and a.id = #{id} and c.tag_type = 10)