mybatis 多个字段模糊匹配


<!--获取归档人-->
<!--@author -->
<!--@since 2018-07-17-->
<select id="getArchiveInfo" parameterType="string" resultMap="BaseMap">
   SELECT DISTINCT archive_id AS id ,archive_name AS  name
   FROM t_fi_invoice_ocr
   WHERE is_deleted = 0
   <if test="archiveInfo != null and archiveInfo != ''">
      AND (archive_id like concat('%',#{archiveInfo},'%') OR archive_name  like concat('%',#{archiveInfo},'%'))
   </if>
</select>

猜你喜欢

转载自blog.csdn.net/xu990128638/article/details/81086153
今日推荐