Skip to content
AttachmentMapper.xml 505 B
Newer Older
杨郁彬's avatar
杨郁彬 committed
<?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.cesgroup.bdc.attachment.mapper.AttachmentMapper">
  <select id="getRelevanceIds" resultType="java.lang.String">
    select a.RELEVANCE_ID from ATTACHMENT a,DISK_FILE d where a.DISK_FILE_ID=d.ID
    and a.MODULE='${module}'
    and (d.ORIGINAL_NAME like #{originalName} escape '/' or CONTAINS(d.TEXT, #{keyword}))
  </select>
</mapper>