Commit dd97b563 by 徐康

string传输数据

parent c2c266f0
...@@ -68,7 +68,7 @@ public class RecentGoodsInfoVo { ...@@ -68,7 +68,7 @@ public class RecentGoodsInfoVo {
private String spuId; private String spuId;
private String skuId; private String skuId;
private Long productGroupId; private String productGroupId;
/** /**
* 商品的spuName * 商品的spuName
......
...@@ -2431,7 +2431,7 @@ public class MCCafeOrderServiceImpl implements MCCafeOrderService { ...@@ -2431,7 +2431,7 @@ public class MCCafeOrderServiceImpl implements MCCafeOrderService {
comboGoodsVo.setSkuName(p.getSpecificationName()); comboGoodsVo.setSkuName(p.getSpecificationName());
if(StringUtils.isNotBlank(p.getExtInfo())) { if(StringUtils.isNotBlank(p.getExtInfo())) {
OrderProductAddInfoDto extInfo = JSON.parseObject(p.getExtInfo(), OrderProductAddInfoDto.class); OrderProductAddInfoDto extInfo = JSON.parseObject(p.getExtInfo(), OrderProductAddInfoDto.class);
comboGoodsVo.setProductGroupId(extInfo.getProductGroupId()); comboGoodsVo.setProductGroupId(extInfo.getProductGroupId()+"");
} }
comboGoodsVo.setQty(p.getNumber()); comboGoodsVo.setQty(p.getNumber());
OrderProductAddInfoDto orderProductAddInfoDto = JSON.parseObject(p.getExtInfo(), OrderProductAddInfoDto.class); OrderProductAddInfoDto orderProductAddInfoDto = JSON.parseObject(p.getExtInfo(), OrderProductAddInfoDto.class);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment