dy
2025-04-16 3d3477dc4a070a48e21f1625914f55a321a6c096
aps-modules/aps-core/src/main/java/com/aps/core/domain/ApsPlatePlanTemp.java
@@ -21,7 +21,7 @@
    private String id;
    /** 主计划员 */
    @Excel(name = "主计划员")
    @Excel(name = "主计划")
    private String masterPlanner;
    /** 周日 */
@@ -75,11 +75,11 @@
    /** 生产数量 */
    @Excel(name = "生产数量")
    private Long productionQuantity;
    private Integer productionQuantity;
    /** 良品数量 */
    @Excel(name = "良品数量")
    private Long goodProductsQuantity;
    private Integer goodProductsQuantity;
    /** 工序号 */
    @Excel(name = "工序号")
@@ -121,7 +121,7 @@
    /** 是否挂起 */
    @Excel(name = "是否挂起")
    private Integer isSuspended;
    private String isSuspended;
    /** 外协标识 */
    @Excel(name = "外协标识")
@@ -165,7 +165,7 @@
    private String batchNumber;
    /** 工厂 */
    @Excel(name = "工厂")
//    @Excel(name = "工厂")
    private String plant;
    public void setId(String id) 
@@ -308,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;
    }
@@ -418,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;
    }