cloudroam
2024-09-30 b14befec1ef345d88a04da3ca1e10a006a7862e5
src/main/java/com/mzl/flower/dto/response/payment/OrderItemListDTO.java
@@ -1,6 +1,5 @@
package com.mzl.flower.dto.response.payment;
import com.baomidou.mybatisplus.annotation.TableField;
import com.mzl.flower.base.AbstractTransDTO;
import com.mzl.flower.base.annotation.DictTrans;
import io.swagger.annotations.ApiModelProperty;
@@ -11,6 +10,8 @@
@Data
public class OrderItemListDTO extends AbstractTransDTO {
    private String id;
    private String orderId;
    private Long stationId;//集货站id
    private String stationName;
@@ -58,4 +59,26 @@
    @ApiModelProperty(value = "真实成交价格/每扎")
    private BigDecimal realPrice;
    @ApiModelProperty(value = "补货数量")
    private Integer replaceNum;
    @ApiModelProperty(value = "降级数量")
    private Integer reduceNum;
    @ApiModelProperty(value = "缺货数量")
    private Integer lackNum;
    @ApiModelProperty(value = "优惠券总金额")
    private BigDecimal couponAmountTotal;
    @ApiModelProperty(value = "真实成交总价格")
    private BigDecimal realTotal;
    @ApiModelProperty(value = "商品ID")
    private Long flowerId;//商品id
    @ApiModelProperty(value = "供应商ID")
    private Long supplierId;//商品id
}