| | |
| | | package com.ruoyi.order.domain.vo; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.fasterxml.jackson.databind.annotation.JsonSerialize; |
| | | import com.fasterxml.jackson.databind.ser.std.ToStringSerializer; |
| | | import com.ruoyi.common.core.annotation.Excel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | |
| | | |
| | | @Excel(name = "秒杀价格", width = 30) |
| | | @ApiModelProperty(value = "秒杀价格") |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private BigDecimal activityPrice; |
| | | |
| | | @Excel(name = "购买数量", width = 30) |
| | |
| | | |
| | | @Excel(name = "订单金额", width = 30) |
| | | @ApiModelProperty(value="订单金额") |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private BigDecimal orderMoney; |
| | | |
| | | @Excel(name = "应付金额", width = 30) |
| | | @ApiModelProperty(value="应付金额") |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private BigDecimal receivableMoney; |
| | | |
| | | @Excel(name = "创建时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss") |
| | |
| | | |
| | | @Excel(name = "订单实际支付金额", width = 30) |
| | | @ApiModelProperty(value="订单实际支付金额") |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private BigDecimal payMoney; |
| | | |
| | | @Excel(name = "订单未支付金额", width = 30) |
| | | @ApiModelProperty(value="订单未支付金额") |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private BigDecimal unPaidMoney; |
| | | |
| | | @ApiModelProperty(value="核销店铺id") |