前端 + 后端:创建订单,接入价格计算

This commit is contained in:
YunaiV
2019-04-20 19:59:08 +08:00
parent ff69f324d5
commit 5785827748
14 changed files with 119 additions and 175 deletions

View File

@@ -142,7 +142,7 @@ public class CalcOrderPriceBO {
*/
private Integer discountTotal;
/**
* 邮费
* 邮费 TODO 芋艿,将 postage 改成 logistics
*/
private Integer postageTotal;
/**

View File

@@ -24,6 +24,10 @@ public class OrderCreateDTO implements Serializable {
* 用户地址
*/
private Integer userAddressId;
/**
* 优惠劵编号
*/
private Integer couponCardId;
/**
* 备注
*/
@@ -37,4 +41,5 @@ public class OrderCreateDTO implements Serializable {
/// order item
private List<OrderCreateItemDTO> orderItems;
}