GuideMapper.xml 446 B

123456789101112
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  3. <mapper namespace="com.om.mapper.GuideMapper">
  4. <select id="findGuide" resultType="com.om.entity.po.Guide">
  5. select e.*
  6. from guide as e
  7. <if test="title != null and title != ''">
  8. where e.title like concat('%',#{title},'%')
  9. </if>
  10. </select>
  11. </mapper>