| | |
| | | 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; |
| | | |
| | |
| | | private Integer orderTotal; |
| | | |
| | | @ApiModelProperty(value = "应收金额") |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private BigDecimal receivableMoney; |
| | | |
| | | @ApiModelProperty(value = "实收金额") |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private BigDecimal relReceiveMoney; |
| | | |
| | | @ApiModelProperty(value = "已收金额") |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private BigDecimal relPayMoney; |
| | | |
| | | @ApiModelProperty(value = "未收金额") |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private BigDecimal unpaidMoney; |
| | | |
| | | @ApiModelProperty(value = "总订金") |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private BigDecimal receivableDeposit; |
| | | } |