Authored by chenchao

add limit 4 deposit order list

... ... @@ -115,6 +115,7 @@ public class SellerDepositOrderListService extends AbsOrderViewService {
OrderAttributes oa = getOrderAttributes();
List<ProductVo> productList = aogList.parallelStream()
.sorted(Comparator.comparing(AppraiseOrderGoods::getOrderBy))
.limit(4)
.map(paog -> ProductVo.builder()
.imgUrl(ImageUrlAssist.getAllProductPicUrl(paog.getImageUrl(), "goodsimg", "center", "d2hpdGU="))
.build())
... ...