|
@@ -79,7 +79,9 @@ public class OrderController {
|
|
|
|
|
|
com.zswl.cloud.shop.client.ret.ResultContent resultContent = shopService.goodsInfo(orderParamModel.getShopId(), goodsId, userId);
|
|
|
|
|
|
- GoodsInfoVo detail = (GoodsInfoVo) resultContent.getContent();
|
|
|
+ log.info("获取订单详情{}", JSONUtil.toJsonStr(resultContent));
|
|
|
+
|
|
|
+ GoodsInfoVo detail = JSONUtil.toBean(JSONUtil.parseObj(resultContent.getContent()),GoodsInfoVo.class);
|
|
|
|
|
|
// com.zswl.cloud.shop.client.ret.ResultContent<GoodsInfoVo> detail = goodsService.detail(goodsId, 1, userId);
|
|
|
|