| | |
| | | package com.ruoyi.order.domain.vo; |
| | | |
| | | 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 orderMoney; |
| | | |
| | | @Excel(name = "优惠金额", width = 30) |
| | | @ApiModelProperty(value="优惠金额") |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private BigDecimal discountMoney; |
| | | |
| | | @Excel(name = "应付金额", width = 30) |
| | | @ApiModelProperty(value="应付金额") |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private BigDecimal receivableMoney; |
| | | |
| | | @Excel(name = "订单实际支付金额", width = 30) |
| | | @ApiModelProperty(value="订单实际支付金额") |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private BigDecimal payMoney; |
| | | |
| | | @Excel(name = "订单来源", width = 30) |
| | | @ApiModelProperty(value="订单来源") |
| | | private String orderFrom; |
| | | |
| | | @Excel(name = "订单状态", width = 30) |
| | | @ApiModelProperty(value="订单状态") |
| | | private String orderStatus; |
| | | |
| | | } |