...
|
...
|
@@ -365,7 +365,7 @@ public class ProductSearchController { |
|
|
@RequestParam(value = "price", required = false) String price,
|
|
|
@RequestParam(value = "maxSot", required = false) String maxSort,
|
|
|
@RequestParam(value = "order", required = false) String order) {
|
|
|
ProductSearchReq req = new ProductSearchReq().setViewNum(limit).setPage(page).setPreSaleFlag(preSaleFlag).setBusinessClient(businessClient)
|
|
|
ProductSearchReq req = new ProductSearchReq().setViewNum(limit).setPage(page).setInitPreSaleFlag(preSaleFlag).setBusinessClient(businessClient)
|
|
|
.setPool(productPool).setGender(gender).setBrand(brand).setSize(size).setPrice(price).setMaxSort(maxSort).setOrder(order);
|
|
|
LOG.info("in method=ufo.product.search.secondhand.skupList req={}", req);
|
|
|
JSONObject resp = productSearchService.searchSecondhandSkupList(req);
|
...
|
...
|
@@ -384,7 +384,7 @@ public class ProductSearchController { |
|
|
@RequestParam(value = "size", required = false) String size,
|
|
|
@RequestParam(value = "price", required = false) String price,
|
|
|
@RequestParam(value = "maxSort", required = false) String maxSort) {
|
|
|
ProductSearchReq req = new ProductSearchReq().setPreSaleFlag(preSaleFlag).setBusinessClient(businessClient).setPool(productPool)
|
|
|
ProductSearchReq req = new ProductSearchReq().setInitPreSaleFlag(preSaleFlag).setBusinessClient(businessClient).setPool(productPool)
|
|
|
.setGender(gender).setBrand(brand).setSize(size).setPrice(price).setMaxSort(maxSort);
|
|
|
LOG.info("in method=ufo.product.search.secondhand.skupList req={}", req);
|
|
|
SearchProductListFilterResp resp = productSearchService.searchSecondhandSkupListFilter(req);
|
...
|
...
|
|