gongzuming
2024-09-19 a768dc3daa04d35fedfbe75c0a59b9b2545b85c4
src/main/java/com/mzl/flower/dto/response/payment/OrderItemListDTO.java
@@ -11,6 +11,8 @@
public class OrderItemListDTO extends AbstractTransDTO {
    private String id;
    private String orderId;
    private Long stationId;//集货站id
    private String stationName;
@@ -49,4 +51,21 @@
    @ApiModelProperty(value = "总金额")
    private BigDecimal total;
    @ApiModelProperty(value = "优惠券金额/扎")
    private BigDecimal couponAmount;
    @ApiModelProperty(value = "优惠前售价/扎")
    private BigDecimal originalPrice;
    @ApiModelProperty(value = "真实成交价格/每扎")
    private BigDecimal realPrice;
    @ApiModelProperty(value = "补货数量")
    private Integer replaceNum;
    @ApiModelProperty(value = "降级数量")
    private Integer reduceNum;
    @ApiModelProperty(value = "缺货数量")
    private Integer lackNum;
}