2025-08-13 18:18:47 +08:00
|
|
|
<?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.nflg.wms.repository.mapper.WmsInProduceBackItemMapper">
|
|
|
|
|
|
|
|
|
|
<select id="getList" resultType="com.nflg.wms.repository.entity.WmsInProduceBackItem">
|
|
|
|
|
select *
|
|
|
|
|
from wms_in_produce_back_item
|
|
|
|
|
where order_id=#{id}
|
2025-09-26 18:04:00 +08:00
|
|
|
order by id desc
|
2025-08-13 18:18:47 +08:00
|
|
|
</select>
|
|
|
|
|
</mapper>
|