This commit is contained in:
linfso 2024-07-26 19:13:13 +08:00
parent 4009ad4b7d
commit 031d12787c

View File

@ -56,13 +56,13 @@
<select id="selectEmisWaybillFeeitemById" parameterType="Long" resultMap="EmisWaybillFeeitemResult">
select id, waybill_id, fee_code, fee_name, fee, real_fee, currency, quote_id, expr_id, calc_exp, initial_weight_fee, add_weight_price, bl_auto_gen, order_num, del_flag, create_by, create_time, update_by, update_time, remark
from emis_waybill_feeitem a
where a.id = #{id}
where a.id = #{id} and a.del_flag='0'
</select>
<select id="selectFeeitemListByWaybillId" parameterType="Long" resultMap="EmisWaybillFeeitemResult">
select id, waybill_id, fee_code, fee_name, fee, real_fee, currency, quote_id, expr_id, calc_exp, initial_weight_fee, add_weight_price, bl_auto_gen, order_num, del_flag, create_by, create_time, update_by, update_time, remark
from emis_waybill_feeitem a
where a.waybill_id = #{waybillId}
where a.waybill_id = #{waybillId} and a.del_flag='0'
</select>
<insert id="insertEmisWaybillFeeitem" parameterType="EmisWaybillFeeitem">