...
|
...
|
@@ -996,16 +996,11 @@ public class ProductController { |
|
|
return productService.getStorageByCodeAndColorName(reqList);
|
|
|
}
|
|
|
|
|
|
@ApiOperation(name = "ufo.product.data3", desc = "闲鱼商品详情")
|
|
|
@ApiOperation(name = "ufo.product.data3", desc = "闲鱼商品详情 http://java-yohoufo-fore.test3.ingress.dev.yohocorp.com/ufo-gateway/?debug=XYZ&method=ufo.product.data3&product_id=10001008")
|
|
|
@IgnoreSession
|
|
|
@RequestMapping(params = "method=ufo.product.data3")
|
|
|
public ApiResponse queryProductDetail3ById(@RequestParam(value = "product_id") Integer productId) {
|
|
|
LOG.info("in method=ufo.product.data3 product_id={}", productId);
|
|
|
|
|
|
if (null == productId) {
|
|
|
return new ApiResponse(400, "product_id Is Null", null);
|
|
|
}
|
|
|
|
|
|
ProductDetailResp resp = productService.queryProductDetail3ById(productId);
|
|
|
return new ApiResponse.ApiResponseBuilder().data(resp).code(200).message("product data").build();
|
|
|
}
|
...
|
...
|
|