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.
17 lines
793 B
XML
17 lines
793 B
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="org.dromara.wms.mapper.WmsAllocateOrderDetailMapper">
|
|
|
|
<insert id="insertDetails"
|
|
parameterType="org.dromara.wms.domain.WmsAllocateOrderDetail">
|
|
INSERT INTO wms_allocate_order_detail
|
|
(allocate_code,material_id,allocate_order_qty,tenant_id,create_by,create_time,update_by,update_time)
|
|
values
|
|
<foreach collection="list" item="item" index="index" separator=",">
|
|
(#{item.allocateCode},#{item.materialId},#{item.allocateOrderQty},#{item.tenantId},#{item.createBy},#{item.createTime},#{item.updateBy},#{item.updateTime})
|
|
</foreach>
|
|
</insert>
|
|
</mapper>
|