This commit is contained in:
linfso 2024-05-30 07:12:27 +08:00
parent 02eb9cae86
commit f65f9dd64b

View File

@ -168,6 +168,7 @@
where id = #{id}
</update>
<delete id="deleteEmisTmsTransPlanDtlById" parameterType="Long">
delete from emis_tms_trans_plan_dtl where id = #{id}
</delete>
@ -178,4 +179,9 @@
#{id}
</foreach>
</delete>
<delete id="deleteEmisTmsTransPlanDtlByPlanId" parameterType="Long">
delete from emis_tms_trans_plan_dtl where plan_id = #{planId}
</delete>
</mapper>