yonge 5 년 전
부모
커밋
5633804f8f
1개의 변경된 파일9개의 추가작업 그리고 1개의 파일을 삭제
  1. 9 1
      cms/src/main/resources/config/mybatis/SysNewsInformationMapper.xml

+ 9 - 1
cms/src/main/resources/config/mybatis/SysNewsInformationMapper.xml

@@ -24,7 +24,7 @@
 	
 	<sql id="queryCondition">
 		<where>
-			del_flag_=0 and memo_ = #{memo}
+			del_flag_=0 
 			<if test="type != null">
 				and type_ = #{type}
 			</if>
@@ -37,6 +37,14 @@
 			<if test="search != null">
 				and title_ like '%' #{search} '%'
 			</if>
+			<choose>
+		        <when test="memo != null and memo != ''">
+		            and memo_ = #{memo}
+		        </when>
+		        <otherwise>
+		            and memo_ is null
+		        </otherwise>
+	        </choose>
 		</where>
 	</sql>