订单修改接口添加

This commit is contained in:
zhh
2018-10-29 17:19:53 +08:00
parent e90c511f66
commit b71ae01aed
5 changed files with 99 additions and 10 deletions

View File

@@ -0,0 +1,18 @@
package com.macro.mall.dto;
import lombok.Getter;
import lombok.Setter;
import java.math.BigDecimal;
/**
* 修改订单费用信息参数
* Created by macro on 2018/10/29.
*/
@Getter
@Setter
public class OmsMoneyInfoParam {
private Long orderId;
private BigDecimal freightAmount;
private BigDecimal discountAmount;
}