2025-10-23 20:34:07 +08:00
|
|
|
<?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.LabInputmdlDetailMapper">
|
|
|
|
|
<select id="getLabInputmdlDetail" resultType="com.czlis.common.core.domain.entity.lis.LabInputmdlDetail">
|
2025-10-27 14:16:10 +08:00
|
|
|
SELECT lab_inputmdldetail.*,xm_info.xmmc FROM lab_inputmdldetail join xm_info on xm_info.yq=lab_inputmdldetail.yq
|
|
|
|
|
and xm_info.xmdh=lab_inputmdldetail.xmdh where lab_inputmdldetail.yq = #{yq} and lab_inputmdldetail.mbmc=#{mbmc} order by xh asc
|
|
|
|
|
</select>
|
|
|
|
|
<select id="getLabInputmdlDetailAll" resultType="com.czlis.common.core.domain.entity.lis.LabInputmdlDetail">
|
2025-10-23 20:34:07 +08:00
|
|
|
SELECT * FROM lab_inputmdldetail where yq = #{yq} and mbmc=#{mbmc} order by xh asc
|
|
|
|
|
</select>
|
|
|
|
|
</mapper>
|
|
|
|
|
|
|
|
|
|
|