2026-06-04 17:20:02 +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.czblood.bus.mapper.XkTransfuseApplyMapper">
|
|
|
|
|
<select id="queryList" resultType="com.czblood.bus.pojo.XkTransfuseApply">
|
|
|
|
|
select * from xk_transfuse_apply
|
|
|
|
|
<where>
|
|
|
|
|
<if test="bill_no != null and bill_no != ''">and bill_no = #{bill_no}</if>
|
|
|
|
|
<if test="beinhos_id != null and beinhos_id != ''">and beinhos_id = #{beinhos_id}</if>
|
2026-06-09 11:35:55 +08:00
|
|
|
<if test="assess_bill_no != null and assess_bill_no != ''">and assess_bill_no = #{assess_bill_no}</if>
|
2026-06-04 17:20:02 +08:00
|
|
|
</where>
|
|
|
|
|
</select>
|
2026-06-09 11:35:55 +08:00
|
|
|
|
|
|
|
|
<select id="queryOne" resultType="com.czblood.bus.pojo.XkTransfuseApply">
|
|
|
|
|
select * from xk_transfuse_apply where bill_no = #{bill_no}
|
|
|
|
|
</select>
|
2026-06-04 17:20:02 +08:00
|
|
|
</mapper>
|