bug
This commit is contained in:
@@ -719,6 +719,8 @@ public class BuyOrderServiceImpl extends ServiceImpl<BuyOrderDao, BuyOrder> impl
|
|||||||
responseVo.setRealPrice(buyOrder.getRealMoney());
|
responseVo.setRealPrice(buyOrder.getRealMoney());
|
||||||
responseVo.setShippingPrice(buyOrder.getShippingMoney());
|
responseVo.setShippingPrice(buyOrder.getShippingMoney());
|
||||||
responseVo.setDistrictPrice(buyOrder.getDistrictMoney());
|
responseVo.setDistrictPrice(buyOrder.getDistrictMoney());
|
||||||
|
responseVo.setJfDeduction(buyOrder.getJfDeduction());
|
||||||
|
responseVo.setAddressId(buyOrder.getAddressId());
|
||||||
responseVo.setOrderType(buyOrder.getOrderType());
|
responseVo.setOrderType(buyOrder.getOrderType());
|
||||||
BeanUtil.copyProperties(buyOrder, responseVo);
|
BeanUtil.copyProperties(buyOrder, responseVo);
|
||||||
|
|
||||||
|
|||||||
@@ -59,6 +59,10 @@ public class BuyOrderResponseVo {
|
|||||||
* 运费
|
* 运费
|
||||||
*/
|
*/
|
||||||
private BigDecimal shippingPrice;
|
private BigDecimal shippingPrice;
|
||||||
|
/**
|
||||||
|
* 积分抵扣
|
||||||
|
*/
|
||||||
|
private BigDecimal jfDeduction;
|
||||||
/**
|
/**
|
||||||
* 商品列表
|
* 商品列表
|
||||||
*/
|
*/
|
||||||
@@ -89,6 +93,10 @@ public class BuyOrderResponseVo {
|
|||||||
* 发货时间
|
* 发货时间
|
||||||
*/
|
*/
|
||||||
private Date shippingTime;
|
private Date shippingTime;
|
||||||
|
/**
|
||||||
|
* 收货地址
|
||||||
|
*/
|
||||||
|
private Integer addressId;
|
||||||
/**
|
/**
|
||||||
* 快递包裹
|
* 快递包裹
|
||||||
*/
|
*/
|
||||||
|
|||||||
Reference in New Issue
Block a user