15 lines
673 B
XML
15 lines
673 B
XML
|
|
<?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.czlis.interfaceCommon.mapper.LabReqreportPdffileMapper">
|
||
|
|
|
||
|
|
<select id="getLabReqreportPdffileList" resultType="com.czlis.common.core.domain.entity.lis.LabReqreportPdffile">
|
||
|
|
select * from lab_reqreport_pdffile where sqh = #{sqh}
|
||
|
|
</select>
|
||
|
|
|
||
|
|
<select id="getLabReqreportPdffileOne" resultType="com.czlis.common.core.domain.entity.lis.LabReqreportPdffile">
|
||
|
|
select * from lab_reqreport_pdffile where jyrq = #{jyrq} and yq = #{yq} and ybh = #{ybh}
|
||
|
|
</select>
|
||
|
|
|
||
|
|
</mapper>
|