| | |
| | | package com.ruoyi.order.domain.vo; |
| | | |
| | | import com.fasterxml.jackson.databind.annotation.JsonSerialize; |
| | | import com.fasterxml.jackson.databind.ser.std.ToStringSerializer; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | |
| | | public class AppPanicBuyVo { |
| | | |
| | | @ApiModelProperty(value = "商品总价") |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private BigDecimal orderGoodsMoney; |
| | | |
| | | @ApiModelProperty(value = "订单支付订金") |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private BigDecimal orderPayDeposit; |
| | | |
| | | @ApiModelProperty(value = "订单支付金额") |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private BigDecimal orderPayMoney; |
| | | |
| | | @ApiModelProperty(value = "活动Id") |
| | |
| | | private Integer buyNum; |
| | | |
| | | @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 = "商品实际价格") |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private BigDecimal goodsRealPrice; |
| | | |
| | | |