zhanghl
2025-04-23 61d2cc8a474fd42f1afb50761fe8de87ce891048
aps-modules/aps-core/src/main/java/com/aps/core/domain/ApsPlatePlan.java
@@ -81,7 +81,7 @@
    /** 良品数量 */
    @Excel(name = "良品数量")
    private Integer goodProductsQuantity;
    private BigDecimal goodProductsQuantity;
    /** 工序号 */
    @Excel(name = "工序号")
@@ -316,12 +316,12 @@
        return productionQuantity;
    }
    public void setGoodProductsQuantity(Integer goodProductsQuantity)
    public void setGoodProductsQuantity(BigDecimal goodProductsQuantity)
    {
        this.goodProductsQuantity = goodProductsQuantity;
    }
    public Integer getGoodProductsQuantity()
    public BigDecimal getGoodProductsQuantity()
    {
        return goodProductsQuantity;
    }