You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
1.3 KiB
XML

<?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.glxp.udi.admin.dao.inout.OrderDetailDao">
<delete id="deleteByOrderId">
delete
from io_order_detail
where orderIdFk = #{orderId}
</delete>
<update id="update">
update io_order_detail
set orderIdFk = #{orderIdFk},
relId = #{relId},
uuidFk = #{uuidFk},
nameCode = #{nameCode},
batchNo = #{batchNo},
productName = #{productName},
productCompany = #{productCompany},
produceDate = #{produceDate},
expireDate = #{expireDate},
zczbhhzbapzbh = #{zczbhhzbapzbh},
ggxh = #{ggxh},
packRatio = #{packRatio},
reCount = #{reCount},
count = #{count},
price = #{price},
firstSalesInvNo = #{firstSalesInvNo},
secSalesInvNo = #{secSalesInvNo},
secSalesListNo = #{secSalesListNo},
invoiceDate = #{invoiceDate}
where id = #{id}
</update>
</mapper>