zhanghl
2025-04-23 61d2cc8a474fd42f1afb50761fe8de87ce891048
aps-modules/aps-core/src/main/java/com/aps/core/domain/ApsPlatePlan.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
@@ -21,7 +23,7 @@
    private String id;
    /** 主计划员 */
    @Excel(name = "主计划员")
    @Excel(name = "主计划")
    private String masterPlanner;
    /** 周日 */
@@ -75,11 +77,11 @@
    /** 生产数量 */
    @Excel(name = "生产数量")
    private Integer productionQuantity;
    private BigDecimal productionQuantity;
    /** 良品数量 */
    @Excel(name = "良品数量")
    private Integer goodProductsQuantity;
    private BigDecimal goodProductsQuantity;
    /** 工序号 */
    @Excel(name = "工序号")
@@ -121,7 +123,7 @@
    /** 是否挂起 */
    @Excel(name = "是否挂起")
    private Integer isSuspended;
    private String isSuspended;
    /** 外协标识 */
    @Excel(name = "外协标识")
@@ -161,7 +163,7 @@
    private Integer hasRisk;
    /** 工厂 */
    @Excel(name = "工厂")
//    @Excel(name = "工厂")
    private String plant;
    public void setId(String id) 
@@ -304,22 +306,22 @@
        return versionNumber;
    }
    public void setProductionQuantity(Integer productionQuantity)
    public void setProductionQuantity(BigDecimal productionQuantity)
    {
        this.productionQuantity = productionQuantity;
    }
    public Integer getProductionQuantity()
    public BigDecimal getProductionQuantity()
    {
        return productionQuantity;
    }
    public void setGoodProductsQuantity(Integer goodProductsQuantity)
    public void setGoodProductsQuantity(BigDecimal goodProductsQuantity)
    {
        this.goodProductsQuantity = goodProductsQuantity;
    }
    public Integer getGoodProductsQuantity()
    public BigDecimal getGoodProductsQuantity()
    {
        return goodProductsQuantity;
    }
@@ -414,12 +416,12 @@
        return nextProcessDeparment;
    }
    public void setIsSuspended(Integer isSuspended)
    public void setIsSuspended(String isSuspended)
    {
        this.isSuspended = isSuspended;
    }
    public Integer getIsSuspended()
    public String getIsSuspended()
    {
        return isSuspended;
    }