Commit b937e2a5 authored by zhengyi's avatar zhengyi

Merge branch 'master-fix' into release

parents 811149ff f3739cac
......@@ -239,8 +239,8 @@ public interface OrderItemMapper extends AbstractMapper<OrderItemDO> {
"where oi.deleted = 0 and ",
"oi.warehouse_in_info is not null and warehouse_in_info ->> '$.cartonsNum' > 0 ",
"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>"
})
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