lis8.0/lis-interfaceCommon/src/main/resources/mapper/LabReqreportPdffileMapper.xml
2025-09-09 19:51:56 +08:00

20 lines
853 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>
<delete id="deleteLabReqreportPdffile">
delete from lab_reqreport_pdffile
where jyrq = #{jyrq}
and yq = #{yq}
and ybh = #{ybh}
</delete>
</mapper>