src/main/java/com/ruoyi/sales/pojo/SalesLedgerProduct.java
@@ -192,6 +192,14 @@
    @TableField(exist = false)
    private String shippingCarNumber;
    @ApiModelProperty("快递公司")
    @TableField(exist = false)
    private String expressCompany;
    @ApiModelProperty("快递单号")
    @TableField(exist = false)
    private String expressNumber;
    /**
     * 发货日期
     */
@@ -202,7 +210,7 @@
    @TableField(exist = false)
    @ApiModelProperty(value = "发货状态")
    private String shippingStatus;
    private String shippingStatus = "待发货";
    /**
     * 产品状态
     */
@@ -227,4 +235,40 @@
    @TableField(exist = false)
    private Integer hasSufficientStock;
    // 退货数量
    @TableField(exist = false)
    private BigDecimal returnQuality;
    // 可用数量  quantity - returnQuality
    @TableField(exist = false)
    private BigDecimal availableQuality;
    /**
     * 单价(对私专用)
     */
    @ApiModelProperty(value = "单价(对私专用)")
    @Excel(name = "单价(对私)")
    private BigDecimal unitPrice;
    /**
     * 总价(对私专用)
     */
    @ApiModelProperty(value = "总价(对私专用)")
    @Excel(name = "总价(对私)")
    private BigDecimal totalPrice;
    /**
     * 运费
     */
    @ApiModelProperty(value = "运费")
    @Excel(name = "运费")
    private BigDecimal freight = BigDecimal.ZERO;
    /**
     * 含运费单价
     */
    @ApiModelProperty(value = "含运费单价")
    @Excel(name = "含运费单价")
    private BigDecimal priceWithFreight;
}