2026-05-11 99e26030611fdc06ee3dd523072fe5516b78dc5b
src/main/java/com/ruoyi/sales/pojo/SalesLedgerProduct.java
@@ -23,7 +23,12 @@
@TableName("sales_ledger_product")
@Data
public class SalesLedgerProduct implements Serializable {
    private static final long serialVersionUID = 1L;
    @ApiModelProperty(value = "库位")
    @TableField(exist = false)
    private String stockLocation;
    /**
     * 产品信息主键
@@ -49,9 +54,9 @@
    private String productCategory;
    /**
     * 规格型号
     * 图纸编号
     */
    @Excel(name = "规格型号")
    @Excel(name = "图纸编号")
    private String specificationModel;
    /**
@@ -90,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;
    /**
     * 不含税总价
@@ -192,6 +217,14 @@
    @TableField(exist = false)
    private String shippingCarNumber;
    @ApiModelProperty("快递公司")
    @TableField(exist = false)
    private String expressCompany;
    @ApiModelProperty("快递单号")
    @TableField(exist = false)
    private String expressNumber;
    /**
     * 发货日期
     */
@@ -202,7 +235,7 @@
    @TableField(exist = false)
    @ApiModelProperty(value = "发货状态")
    private String shippingStatus;
    private String shippingStatus = "待发货";
    /**
     * 产品状态
     */
@@ -227,4 +260,16 @@
    @TableField(exist = false)
    private Integer hasSufficientStock;
    @ApiModelProperty(value = "发货数量")
    @TableField(exist = false)
    private BigDecimal shippingNum;
    @ApiModelProperty(value = "退货数量")
    @TableField(exist = false)
    private BigDecimal returnNum;
    @ApiModelProperty(value = "物料号")
    @Excel(name = "物料号")
    private String materialNo;
}