审计记录

WebContent/WEB-INF/classes/mapper/AutoreplyDao.xml 655 字节
zxt@theyeasy.com committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper namespace="com.w1hd.zzhnc.dao.AutoreplyDao">
	<select id="findByKeys" resultType="com.w1hd.zzhnc.model.Autoreply">
		SELECT * FROM autoreply
		<where>
			1=1 AND deleted = 0
			<if test="keys != null">
				<foreach item="item" collection="keys" separator="" open=""
					close="" index="">
					and concat('|' ,keyWords,'|') LIKE '%|${item}|%'
				</foreach>
			</if>
			<if test="projectId != null ">
				AND project_id = #{projectId}
			</if>

		</where>
		ORDER BY sort DESC
	</select>
</mapper>