This commit is contained in:
linfso 2024-07-04 07:27:41 +08:00
parent 1cd1ca0326
commit 2c7b1d947d

View File

@ -25,9 +25,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<where>
del_flag='0'
<if test="id != null "> and id = #{id}</if>
<if test="subBillNo != null and subBillNo != ''"> and sub_bill_no like concat('%', #{subBillNo}, '%')</if>
<if test="billCode != null and billCode != ''"> and bill_code like concat('%', #{billCode}, '%')</if>
<if test="feeCode != null and feeCode != ''"> and fee_code like concat('%', #{feeCode}, '%')</if>
<if test="subBillNo != null and subBillNo != ''"> and sub_bill_no=#{subBillNo}</if>
<if test="billCode != null and billCode != ''"> and bill_code=#{billCode}</if>
<if test="feeCode != null and feeCode != ''"> and fee_code=#{feeCode}</if>
<if test="feeName != null and feeName != ''"> and fee_name like concat('%', #{feeName}, '%')</if>
<if test="billFee != null "> and bill_fee = #{billFee}</if>
<if test="origFee != null "> and orig_fee = #{origFee}</if>