dy
2025-04-16 3d3477dc4a070a48e21f1625914f55a321a6c096
aps-modules/aps-core/src/main/java/com/aps/core/domain/ApsPlatePlanTemp.java
@@ -75,11 +75,11 @@
    /** 生产数量 */
    @Excel(name = "生产数量")
    private Long productionQuantity;
    private Integer productionQuantity;
    /** 良品数量 */
    @Excel(name = "良品数量")
    private Long goodProductsQuantity;
    private Integer goodProductsQuantity;
    /** 工序号 */
    @Excel(name = "工序号")
@@ -120,11 +120,9 @@
    private String nextProcessDeparment;
    /** 是否挂起 */
    private Integer isSuspended;
    /** 是否挂起 */
    @Excel(name = "是否挂起")
    private String isSuspendedTxt;
    private String isSuspended;
    /** 外协标识 */
    @Excel(name = "外协标识")
    private String isOutsourcing;
@@ -167,7 +165,7 @@
    private String batchNumber;
    /** 工厂 */
    @Excel(name = "工厂")
//    @Excel(name = "工厂")
    private String plant;
    public void setId(String id) 
@@ -310,22 +308,22 @@
        return versionNumber;
    }
    public void setProductionQuantity(Long productionQuantity)
    public void setProductionQuantity(Integer productionQuantity)
    {
        this.productionQuantity = productionQuantity;
    }
    public Long getProductionQuantity()
    public Integer getProductionQuantity()
    {
        return productionQuantity;
    }
    public void setGoodProductsQuantity(Long goodProductsQuantity)
    public void setGoodProductsQuantity(Integer goodProductsQuantity)
    {
        this.goodProductsQuantity = goodProductsQuantity;
    }
    public Long getGoodProductsQuantity()
    public Integer getGoodProductsQuantity()
    {
        return goodProductsQuantity;
    }
@@ -420,12 +418,12 @@
        return nextProcessDeparment;
    }
    public void setIsSuspended(Integer isSuspended)
    public void setIsSuspended(String isSuspended)
    {
        this.isSuspended = isSuspended;
    }
    public Integer getIsSuspended()
    public String getIsSuspended()
    {
        return isSuspended;
    }
@@ -529,13 +527,7 @@
    {
        return batchNumber;
    }
    public String getIsSuspendedTxt() {
        return isSuspendedTxt;
    }
    public void setIsSuspendedTxt(String isSuspendedTxt) {
        this.isSuspendedTxt = isSuspendedTxt;
    }
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)