zhanghl
2025-05-23 dec8951aae400e54f6ee83a8f95867dba9da8af1
aps-modules/aps-core/src/main/java/com/aps/core/domain/ApsPartPlan.java
@@ -1,17 +1,13 @@
package com.aps.core.domain;
import java.util.Date;
import com.aps.common.core.utils.uuid.IdUtils;
import com.aps.common.core.utils.uuid.UUID;
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 org.springframework.data.annotation.Id;
import javax.annotation.processing.Generated;
import java.math.BigDecimal;
import java.util.Date;
/**
 * 零件计划管理对象 aps_part_plan
@@ -80,11 +76,11 @@
    /** 生产数量 */
    @Excel(name = "生产数量")
    private Long productionQuantity;
    private BigDecimal productionQuantity;
    /** 良品数量 */
    @Excel(name = "良品数量")
    private Long goodProductsQuantity;
    private BigDecimal goodProductsQuantity;
    /** 工序号 */
    @Excel(name = "工序号")
@@ -125,11 +121,9 @@
    private String nextProcessDeparment;
    /** 是否挂起 */
//    @Excel(name = "是否挂起")
    private Integer isSuspended;
    /** 是否挂起 */
    @Excel(name = "是否挂起")
    private String isSuspendedTxt;
    private String isSuspended;
    /** 外协标识 */
    @Excel(name = "外协标识")
    private String isOutsourcing;
@@ -167,9 +161,58 @@
    @Excel(name = "风险标识")
    private Integer hasRisk;
    /** 作业(工序名称) */
    @Excel(name = "作业")
    private String stdOp;
    /** 工厂 */
    @Excel(name = "工厂")
//    @Excel(name = "工厂")
    private String plant;
    /** 当前工序状态 */
    @Excel(name = "当前工序状态")
    private String opStatus;
    /** 下一工序名称 */
    @Excel(name = "下一工序名称")
    private String nextOpName;
    public BigDecimal getUnmatchedQuantity() {
        return unmatchedQuantity;
    }
    public void setUnmatchedQuantity(BigDecimal unmatchedQuantity) {
        this.unmatchedQuantity = unmatchedQuantity;
    }
    public String getProfessionalAffiliation() {
        return professionalAffiliation;
    }
    public void setProfessionalAffiliation(String professionalAffiliation) {
        this.professionalAffiliation = professionalAffiliation;
    }
    /** 未匹配的生产数量*/
    private BigDecimal unmatchedQuantity;
    /** 专业归属*/
    private String professionalAffiliation;
    public String getOpStatus() {
        return opStatus;
    }
    public void setOpStatus(String opStatus) {
        this.opStatus = opStatus;
    }
    public String getNextOpName() {
        return nextOpName;
    }
    public void setNextOpName(String nextOpName) {
        this.nextOpName = nextOpName;
    }
    public void setId(String id) 
    {
@@ -311,22 +354,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;
    }
@@ -421,12 +464,12 @@
        return nextProcessDeparment;
    }
    public void setIsSuspended(Integer isSuspended)
    public void setIsSuspended(String isSuspended)
    {
        this.isSuspended = isSuspended;
    }
    public Integer getIsSuspended()
    public String getIsSuspended()
    {
        return isSuspended;
    }
@@ -521,6 +564,14 @@
        return hasRisk;
    }
    public void setStdOp(String stdOp) {
        this.stdOp = stdOp;
    }
    public String getStdOp() {
        return stdOp;
    }
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
@@ -559,18 +610,12 @@
            .append("isStockComplete", getIsStockComplete())
            .append("hasTurnback", getHasTurnback())
            .append("hasRisk", getHasRisk())
                .append("plant", getPlant())
            .append("plant", getPlant())
            .append("stdOp", getStdOp())
            .append("opStatus", getOpStatus())
            .append("nextOpName", getNextOpName())
            .toString();
    }
    public String getIsSuspendedTxt() {
        return isSuspendedTxt;
    }
    public void setIsSuspendedTxt(String isSuspendedTxt) {
        this.isSuspendedTxt = isSuspendedTxt;
    }
    public String getPlant() {
        return plant;
    }