|
|
|
@ -530,6 +530,7 @@ public class GoodsController { |
|
|
|
|
@ApiOperation(value = "查询京东商品") |
|
|
|
|
public ResponseData getJdGoodsList(@RequestParam(value = "title" , required = false) String title, |
|
|
|
|
@RequestParam(value = "goodsType" , required = false) Long goodsType, |
|
|
|
|
@RequestParam(value = "id" , required = false) Long id, |
|
|
|
|
@RequestParam(value = "goodsBrand" , required = false) Integer goodsBrand, |
|
|
|
|
@RequestParam(value = "salePriceS" , required = false) BigDecimal salePriceS, |
|
|
|
|
@RequestParam(value = "salePriceE" , required = false) BigDecimal salePriceE, |
|
|
|
@ -547,6 +548,7 @@ public class GoodsController { |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
param.put("title", title); |
|
|
|
|
param.put("id", id); |
|
|
|
|
param.put("goodsBrand", goodsBrand); |
|
|
|
|
param.put("salePriceS", salePriceS); |
|
|
|
|
param.put("salePriceE", salePriceE); |
|
|
|
@ -565,6 +567,7 @@ public class GoodsController { |
|
|
|
|
@ApiOperation(value = "导出京东商品") |
|
|
|
|
public ResponseData exportJdGoods(@RequestParam(value = "title" , required = false) String title, |
|
|
|
|
@RequestParam(value = "goodsType" , required = false) Long goodsType, |
|
|
|
|
@RequestParam(value = "id" , required = false) Long id, |
|
|
|
|
@RequestParam(value = "goodsBrand" , required = false) Integer goodsBrand, |
|
|
|
|
@RequestParam(value = "salePriceS" , required = false) BigDecimal salePriceS, |
|
|
|
|
@RequestParam(value = "salePriceE" , required = false) BigDecimal salePriceE, HttpServletRequest request) { |
|
|
|
@ -587,6 +590,7 @@ public class GoodsController { |
|
|
|
|
} |
|
|
|
|
map.put("title", title); |
|
|
|
|
map.put("goodsBrand", goodsBrand); |
|
|
|
|
map.put("id", id); |
|
|
|
|
map.put("salePriceS", salePriceS); |
|
|
|
|
map.put("salePriceE", salePriceE); |
|
|
|
|
|
|
|
|
|