2026-05-11 99e26030611fdc06ee3dd523072fe5516b78dc5b
src/main/java/com/ruoyi/sales/pojo/SalesLedgerProduct.java
@@ -54,9 +54,9 @@
    private String productCategory;
    /**
     * 规格型号
     * 图纸编号
     */
    @Excel(name = "规格型号")
    @Excel(name = "图纸编号")
    private String specificationModel;
    /**
@@ -95,6 +95,26 @@
     */
    @Excel(name = "含税总价")
    private BigDecimal taxInclusiveTotalPrice;
    @ApiModelProperty(value = "交货数量")
    @Excel(name = "交货数量")
    private BigDecimal deliveryQuantity;
    @ApiModelProperty(value = "剩余数量")
    @Excel(name = "剩余数量")
    private BigDecimal remainingQuantity;
    @ApiModelProperty(value = "子库存")
    @Excel(name = "子库存")
    private String subInventory;
    @ApiModelProperty(value = "货位")
    @Excel(name = "货位")
    private String location;
    @ApiModelProperty(value = "是否喷砂")
    @Excel(name = "是否喷砂")
    private Boolean isSpray;
    /**
     * 不含税总价
@@ -248,4 +268,8 @@
    @ApiModelProperty(value = "退货数量")
    @TableField(exist = false)
    private BigDecimal returnNum;
    @ApiModelProperty(value = "物料号")
    @Excel(name = "物料号")
    private String materialNo;
}