zhanghl
2025-04-23 8dc5ba3385f0b1be3c38f595a6b544f077d2e4b2
钣金实体类型更改
已修改1个文件
6 ■■■■ 文件已修改
aps-modules/aps-core/src/main/java/com/aps/core/domain/ApsPlatePlan.java 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
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;
    }