18 lines
737 B
XML
18 lines
737 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.BackPaperMapper">
|
||
|
|
<!-- 根据申请号集合查询 -->
|
||
|
|
<select id="selectBySqhs" resultType="com.czlis.common.core.domain.entity.LabReqdetail">
|
||
|
|
SELECT sqh,xh,sqxmdh,sqxmmc,'' as cp_msg FROM lab_reqdetail
|
||
|
|
WHERE sqh IN
|
||
|
|
<foreach collection="list" item="sqh" open="(" separator="," close=")">
|
||
|
|
#{sqh}
|
||
|
|
</foreach>
|
||
|
|
</select>
|
||
|
|
<select id="selectReqmian" resultType="com.czlis.mzcx.pojo.MzcxSqdDTO">
|
||
|
|
select * from lab_reqmain where sqh = #{sqh}
|
||
|
|
</select>
|
||
|
|
|
||
|
|
|
||
|
|
</mapper>
|