2025-11-10 15:58:11 +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">
|
2025-11-11 09:39:08 +08:00
|
|
|
<mapper namespace="com.czlis.transitPF.mapper.RegTransitSampleMapper">
|
2025-11-10 15:58:11 +08:00
|
|
|
|
2025-11-11 09:39:08 +08:00
|
|
|
<select id="getRegTransitSample" resultType="com.czlis.transitPF.pojo.RegTransitSample">
|
|
|
|
|
select * from Reg_TransitSample
|
2025-11-10 15:58:11 +08:00
|
|
|
<where>
|
|
|
|
|
<if test="Barcode != null and Barcode !=''">and Barcode = #{Barcode}</if>
|
|
|
|
|
</where>
|
|
|
|
|
</select>
|
|
|
|
|
|
2025-11-11 09:39:08 +08:00
|
|
|
<select id="getRegTransitSampleDetail" resultType="com.czlis.transitPF.pojo.RegTransitSampleDetail">
|
|
|
|
|
select * from Reg_TransitSample_detail
|
2025-11-10 15:58:11 +08:00
|
|
|
<where>
|
|
|
|
|
<if test="Barcode != null and Barcode !=''">and Barcode = #{Barcode}</if>
|
|
|
|
|
</where>
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</mapper>
|