<?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="cn.gistack.resource.mapper.TextualResearchAttachMapper">
|
|
<!--自定义分页列表查询-->
|
<select id="selectTextualResearchAttachPage" resultType="cn.gistack.resource.vo.TextualResearchAttachVO">
|
select * from sm_textual_research_attach
|
where 1=1
|
<if test="textualResearchAttach.resGuid!=null and textualResearchAttach.resGuid!=''">
|
and res_guid = #{textualResearchAttach.resGuid}
|
</if>
|
<if test="textualResearchAttach.type!=null">
|
and type = #{textualResearchAttach.type}
|
</if>
|
</select>
|
|
</mapper>
|