zhanghl
2025-05-13 a9f55fb1ab24f43fee70b16e1a8c58a33fc59fa6
aps-modules/aps-core/src/main/java/com/aps/core/domain/ApsPlatePlanTemp.java
@@ -1,11 +1,13 @@
package com.aps.core.domain;
import java.util.Date;
import com.aps.common.core.annotation.Excel;
import com.aps.common.core.web.domain.BaseEntity;
import com.fasterxml.jackson.annotation.JsonFormat;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.aps.common.core.annotation.Excel;
import com.aps.common.core.web.domain.BaseEntity;
import java.math.BigDecimal;
import java.util.Date;
/**
 * 钣金计划临时表对象 aps_plate_plan_temp
@@ -75,11 +77,11 @@
    /** 生产数量 */
    @Excel(name = "生产数量")
    private Long productionQuantity;
    private BigDecimal productionQuantity;
    /** 良品数量 */
    @Excel(name = "良品数量")
    private Long goodProductsQuantity;
    private BigDecimal goodProductsQuantity;
    /** 工序号 */
    @Excel(name = "工序号")
@@ -120,11 +122,9 @@
    private String nextProcessDeparment;
    /** 是否挂起 */
    private Integer isSuspended;
    /** 是否挂起 */
    @Excel(name = "是否挂起")
    private String isSuspendedTxt;
    private String isSuspended;
    /** 外协标识 */
    @Excel(name = "外协标识")
    private String isOutsourcing;
@@ -167,7 +167,7 @@
    private String batchNumber;
    /** 工厂 */
    @Excel(name = "工厂")
//    @Excel(name = "工厂")
    private String plant;
    public void setId(String id) 
@@ -310,22 +310,22 @@
        return versionNumber;
    }
    public void setProductionQuantity(Long productionQuantity)
    public void setProductionQuantity(BigDecimal productionQuantity)
    {
        this.productionQuantity = productionQuantity;
    }
    public Long getProductionQuantity()
    public BigDecimal getProductionQuantity()
    {
        return productionQuantity;
    }
    public void setGoodProductsQuantity(Long goodProductsQuantity)
    public void setGoodProductsQuantity(BigDecimal goodProductsQuantity)
    {
        this.goodProductsQuantity = goodProductsQuantity;
    }
    public Long getGoodProductsQuantity()
    public BigDecimal getGoodProductsQuantity()
    {
        return goodProductsQuantity;
    }
@@ -420,12 +420,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 +529,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)