src/main/java/com/mzl/flower/dto/response/payment/OrderDTO.java
@@ -139,4 +139,25 @@ @ApiModelProperty(value = "积分商品列表") private List<OrderPointGoodsListDTO> pointGoodsList; @ApiModelProperty(value = "优惠券编码") private String memberCouponCode; @ApiModelProperty(value = "优惠券名称") private String memberCouponName; @ApiModelProperty(value = "优惠券金额") private BigDecimal memberCouponAmount; @ApiModelProperty(value = "会员等级名称") private String memberName; @ApiModelProperty(value = "折扣类型(discount_type)") private String memberDiscountType; @ApiModelProperty(value = "会员折扣") private BigDecimal memberDiscountRatio; @ApiModelProperty(value = "优惠金额(每扎)") private BigDecimal memberDiscountAmount; } src/main/java/com/mzl/flower/dto/response/payment/OrderItemListDTO.java
@@ -1,5 +1,6 @@ package com.mzl.flower.dto.response.payment; import com.baomidou.mybatisplus.annotation.TableField; import com.mzl.flower.base.AbstractTransDTO; import com.mzl.flower.base.annotation.DictTrans; import io.swagger.annotations.ApiModelProperty; @@ -49,4 +50,12 @@ @ApiModelProperty(value = "总金额") private BigDecimal total; @ApiModelProperty(value = "优惠券金额/扎") private BigDecimal couponAmount; @ApiModelProperty(value = "优惠前售价/扎") private BigDecimal originalPrice; @ApiModelProperty(value = "真实成交价格/每扎") private BigDecimal realPrice; }