Commit b747f7ae by 缪晖

拼单购物车获取用户昵称字段适配修改

parent 9bc3acb8
...@@ -2181,6 +2181,9 @@ public class OrderAdapter { ...@@ -2181,6 +2181,9 @@ public class OrderAdapter {
createOrderProductDemoDto.setTaxId(cartGoodsDetailDto.getTaxId()); createOrderProductDemoDto.setTaxId(cartGoodsDetailDto.getTaxId());
createOrderProductDemoDto.setClassificationId(cartGoodsDetailDto.getClassificationId()); createOrderProductDemoDto.setClassificationId(cartGoodsDetailDto.getClassificationId());
createOrderProductDemoDto.setClassificationName(cartGoodsDetailDto.getClassificationName()); createOrderProductDemoDto.setClassificationName(cartGoodsDetailDto.getClassificationName());
createOrderProductDemoDto.setUserId(cartGoodsDetailDto.getUserId());
createOrderProductDemoDto.setNickName(cartGoodsDetailDto.getUserName());
createOrderProductDemoDto.setPhotoUrl(cartGoodsDetailDto.getPhotoUrl());
return createOrderProductDemoDto; return createOrderProductDemoDto;
} }
......
...@@ -214,7 +214,7 @@ public class ShoppingCartGoodsDto { ...@@ -214,7 +214,7 @@ public class ShoppingCartGoodsDto {
/** /**
* 加购人昵称 * 加购人昵称
*/ */
private String nickName; private String userName;
/** /**
* 加购人头像 * 加购人头像
......
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