Authored by hugufei

fix bug

... ... @@ -31,5 +31,5 @@ public interface ProductMapper {
List<BrandSortIdsBO> selectBrandSortIdsBOList();
List<Integer> selectBrandNewestSkns(List<String> brandIds,@Param(value = "offset") int offset,@Param(value = "pageSize") int limit);
List<Integer> selectBrandNewestSkns(@Param(value = "brandIds") List<String> brandIds,@Param(value = "offset") int offset,@Param(value = "pageSize") int limit);
}
\ No newline at end of file
... ...
... ... @@ -436,7 +436,7 @@
<select id="selectBrandNewestSkns">
select erp_product_id from product where brand_id in
<foreach item="item" index="index" collection="list"
<foreach item="item" index="index" collection="brandIds"
open="(" separator="," close=")">
#{item}
</foreach>
... ...