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.
22 lines
1.0 KiB
XML
22 lines
1.0 KiB
XML
1 year ago
|
<?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.ruoyi.api.mapper.ApiMapper">
|
||
|
|
||
|
<insert id="submintInsertRecordIn">
|
||
|
INSERT INTO bg_wheel_chocks.record_in (epc_code, batch_code, location_code,manufacturer_id, manufacturer_Name,
|
||
|
create_by,create_time)
|
||
|
VALUES
|
||
|
<foreach collection="inStore.epclist" item="item" separator=",">
|
||
|
(#{item},#{inStore.binchCode},#{inStore.selectLocationText},#{inStore.manufacturerId},#{inStore.selectManuText},#{inStore.submitUser},now())
|
||
|
</foreach>
|
||
|
</insert>
|
||
|
<insert id="submintInsertLedger">
|
||
|
INSERT INTO bg_wheel_chocks.ledger_rfid (manufacturer_id, rifd_code, batch_code, location_code)
|
||
|
VALUES
|
||
|
<foreach collection="inStore.epclist" item="item" separator=",">
|
||
|
(#{inStore.manufacturerId},#{item},#{inStore.binchCode},#{inStore.selectLocationText})
|
||
|
</foreach>
|
||
|
</insert>
|
||
|
|
||
|
<!-- -->
|
||
|
</mapper>
|