Commit f3739cac authored by zhengyi's avatar zhengyi

bug修复

parent 530a211b
...@@ -239,8 +239,8 @@ public interface OrderItemMapper extends AbstractMapper<OrderItemDO> { ...@@ -239,8 +239,8 @@ public interface OrderItemMapper extends AbstractMapper<OrderItemDO> {
"where oi.deleted = 0 and ", "where oi.deleted = 0 and ",
"oi.warehouse_in_info is not null and warehouse_in_info ->> '$.cartonsNum' > 0 ", "oi.warehouse_in_info is not null and warehouse_in_info ->> '$.cartonsNum' > 0 ",
"and oi.order_id in ", "and oi.order_id in ",
"<foreach item='item' index='index' collection='list' open='(' separator=',' close=')'>#{item}</foreach>", "<foreach item='item' index='index' collection='orderIdList' open='(' separator=',' close=')'>#{item}</foreach>",
"</script>" "</script>"
}) })
List<OrderItemDO> getWarehouseInOrderItemListByOrderIds(@Param("lang") Integer lang, List<Long> orderIdList); List<OrderItemDO> getWarehouseInOrderItemListByOrderIds(@Param("lang") Integer lang, @Param("orderIdList") List<Long> orderIdList);
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment