进出口单证详情 物料详情查询

This commit is contained in:
zhaoqing
2026-05-14 19:20:25 +08:00
parent a8fbcf58fc
commit 563601c2b9
4 changed files with 42 additions and 0 deletions
@@ -308,4 +308,15 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
where material_base_info_id = #{materialBaseInfoId}
</select>
<select id="selectBatchByIds" resultType="com.mhd.wms.domain.materialBaseInfo.repository.po.MaterialBaseInfoPO">
select * from material_base_info
where material_base_info_id in
<foreach collection="materialBaseInfoIds" item="id" open="(" separator="," close=")">
#{id}
</foreach>
</select>
</mapper>