| | |
| | | package com.ruoyi.order.domain.vo; |
| | | |
| | | import com.fasterxml.jackson.databind.annotation.JsonSerialize; |
| | | import com.fasterxml.jackson.databind.ser.std.ToStringSerializer; |
| | | import com.ruoyi.system.api.domain.vo.AppMemberCouponVo; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | |
| | | private String memberCouponId; |
| | | |
| | | @ApiModelProperty(value = "商品售价") |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private BigDecimal goodsPrice; |
| | | |
| | | @ApiModelProperty(value = "活动售价") |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private BigDecimal activityPrice; |
| | | |
| | | @ApiModelProperty(value = "商品总价") |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private BigDecimal goodsTotalPrice; |
| | | |
| | | @ApiModelProperty(value = "商品订金") |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private BigDecimal goodsDeposit; |
| | | |
| | | @ApiModelProperty(value = "是否计算优惠券0否1是") |
| | | private Integer useCoupon; |
| | | |
| | | @ApiModelProperty(value = "优惠券抵扣") |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private BigDecimal couponDiscount; |
| | | |
| | | @ApiModelProperty(value = "商品实际价格") |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private BigDecimal goodsRealPrice; |
| | | |
| | | @ApiModelProperty(value = "优惠券列表") |