产品主键跟踪
parent
a79b8b7c63
commit
4e71868a76
@ -0,0 +1,222 @@
|
||||
package com.op.mes.domain;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import com.op.common.core.annotation.Excel;
|
||||
import com.op.common.core.web.domain.BaseEntity;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Open Platform
|
||||
* @date 2024-12-12
|
||||
*/
|
||||
public class MesProductTrace extends BaseEntity {
|
||||
private static final long serialVersionUID = 1L;
|
||||
@Excel(name = "产品编码")
|
||||
private String productCode;
|
||||
@Excel(name = "产品中文名称")
|
||||
private String productDescZh;
|
||||
@Excel(name = "产品英文名称")
|
||||
private String productDescEn;
|
||||
@Excel(name = "最大批次数量")
|
||||
private String batchMax;
|
||||
@Excel(name = "卡板装载量")
|
||||
private String palletNum;
|
||||
@Excel(name = "箱码规格")
|
||||
private String spec;
|
||||
@Excel(name = "品类")
|
||||
private String productGroupName;
|
||||
@Excel(name = "子母工单比例")
|
||||
private String unity;
|
||||
@Excel(name = "检验标准")
|
||||
private String standarNo;
|
||||
@Excel(name = "箱型")
|
||||
private String boxType;
|
||||
@Excel(name = "垛型")
|
||||
private String packType;
|
||||
|
||||
private String cpkType;
|
||||
@Excel(name = "CPK品类")
|
||||
private String cpkTypeName;
|
||||
@Excel(name = "检验周期")
|
||||
private String warehouseCycle;
|
||||
@Excel(name = "产线")
|
||||
private String lineNames;
|
||||
@Excel(name = "区位")
|
||||
private String waNames;
|
||||
private String waCode;
|
||||
@Excel(name = "上载到MES时间")
|
||||
private String onLineTimes;
|
||||
private String ymArrayStart;
|
||||
private String ymArrayEnd;
|
||||
private String prodType;
|
||||
|
||||
public String getYmArrayStart() {
|
||||
return ymArrayStart;
|
||||
}
|
||||
|
||||
public void setYmArrayStart(String ymArrayStart) {
|
||||
this.ymArrayStart = ymArrayStart;
|
||||
}
|
||||
|
||||
public String getYmArrayEnd() {
|
||||
return ymArrayEnd;
|
||||
}
|
||||
|
||||
public void setYmArrayEnd(String ymArrayEnd) {
|
||||
this.ymArrayEnd = ymArrayEnd;
|
||||
}
|
||||
|
||||
public String getWaNames() {
|
||||
return waNames;
|
||||
}
|
||||
|
||||
public void setWaNames(String waNames) {
|
||||
this.waNames = waNames;
|
||||
}
|
||||
|
||||
public String getLineNames() {
|
||||
return lineNames;
|
||||
}
|
||||
|
||||
public void setLineNames(String lineNames) {
|
||||
this.lineNames = lineNames;
|
||||
}
|
||||
|
||||
public String getWaCode() {
|
||||
return waCode;
|
||||
}
|
||||
|
||||
public void setWaCode(String waCode) {
|
||||
this.waCode = waCode;
|
||||
}
|
||||
|
||||
public String getOnLineTimes() {
|
||||
return onLineTimes;
|
||||
}
|
||||
|
||||
public void setOnLineTimes(String onLineTimes) {
|
||||
this.onLineTimes = onLineTimes;
|
||||
}
|
||||
|
||||
public String getProdType() {
|
||||
return prodType;
|
||||
}
|
||||
|
||||
public void setProdType(String prodType) {
|
||||
this.prodType = prodType;
|
||||
}
|
||||
|
||||
public String getWarehouseCycle() {
|
||||
return warehouseCycle;
|
||||
}
|
||||
|
||||
public void setWarehouseCycle(String warehouseCycle) {
|
||||
this.warehouseCycle = warehouseCycle;
|
||||
}
|
||||
|
||||
public String getProductCode() {
|
||||
return productCode;
|
||||
}
|
||||
|
||||
public void setProductCode(String productCode) {
|
||||
this.productCode = productCode;
|
||||
}
|
||||
|
||||
public String getProductDescZh() {
|
||||
return productDescZh;
|
||||
}
|
||||
|
||||
public void setProductDescZh(String productDescZh) {
|
||||
this.productDescZh = productDescZh;
|
||||
}
|
||||
|
||||
public String getProductDescEn() {
|
||||
return productDescEn;
|
||||
}
|
||||
|
||||
public void setProductDescEn(String productDescEn) {
|
||||
this.productDescEn = productDescEn;
|
||||
}
|
||||
|
||||
public String getBatchMax() {
|
||||
return batchMax;
|
||||
}
|
||||
|
||||
public void setBatchMax(String batchMax) {
|
||||
this.batchMax = batchMax;
|
||||
}
|
||||
|
||||
public String getPalletNum() {
|
||||
return palletNum;
|
||||
}
|
||||
|
||||
public void setPalletNum(String palletNum) {
|
||||
this.palletNum = palletNum.replace(".00","");
|
||||
}
|
||||
|
||||
public String getSpec() {
|
||||
return spec;
|
||||
}
|
||||
|
||||
public void setSpec(String spec) {
|
||||
this.spec = spec.replace(".0000","");
|
||||
}
|
||||
|
||||
public String getProductGroupName() {
|
||||
return productGroupName;
|
||||
}
|
||||
|
||||
public void setProductGroupName(String productGroupName) {
|
||||
this.productGroupName = productGroupName;
|
||||
}
|
||||
|
||||
public String getUnity() {
|
||||
return unity;
|
||||
}
|
||||
|
||||
public void setUnity(String unity) {
|
||||
this.unity = unity;
|
||||
}
|
||||
|
||||
public String getStandarNo() {
|
||||
return standarNo;
|
||||
}
|
||||
|
||||
public void setStandarNo(String standarNo) {
|
||||
this.standarNo = standarNo;
|
||||
}
|
||||
|
||||
public String getBoxType() {
|
||||
return boxType;
|
||||
}
|
||||
|
||||
public void setBoxType(String boxType) {
|
||||
this.boxType = boxType;
|
||||
}
|
||||
|
||||
public String getPackType() {
|
||||
return packType;
|
||||
}
|
||||
|
||||
public void setPackType(String packType) {
|
||||
this.packType = packType;
|
||||
}
|
||||
|
||||
public String getCpkType() {
|
||||
return cpkType;
|
||||
}
|
||||
|
||||
public void setCpkType(String cpkType) {
|
||||
this.cpkType = cpkType;
|
||||
}
|
||||
|
||||
public String getCpkTypeName() {
|
||||
return cpkTypeName;
|
||||
}
|
||||
|
||||
public void setCpkTypeName(String cpkTypeName) {
|
||||
this.cpkTypeName = cpkTypeName;
|
||||
}
|
||||
}
|
@ -0,0 +1,111 @@
|
||||
package com.op.mes.domain;
|
||||
|
||||
import com.op.common.core.annotation.Excel;
|
||||
import com.op.common.core.web.domain.BaseEntity;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Open Platform
|
||||
* @date 2024-12-12
|
||||
*/
|
||||
public class MesProductTraceBCExp extends BaseEntity {
|
||||
private static final long serialVersionUID = 1L;
|
||||
@Excel(name = "产品编码")
|
||||
private String productCode;
|
||||
@Excel(name = "产品中文名称")
|
||||
private String productDescZh;
|
||||
@Excel(name = "卡板装载量")
|
||||
private String palletNum;
|
||||
private String spec;
|
||||
@Excel(name = "品类")
|
||||
private String productGroupName;
|
||||
@Excel(name = "检验标准")
|
||||
private String standarNo;
|
||||
@Excel(name = "检验周期")
|
||||
private String warehouseCycle;
|
||||
@Excel(name = "区位")
|
||||
private String waNames;
|
||||
private String waCode;
|
||||
@Excel(name = "上载到MES时间")
|
||||
private String onLineTimes;
|
||||
|
||||
public String getProductCode() {
|
||||
return productCode;
|
||||
}
|
||||
|
||||
public void setProductCode(String productCode) {
|
||||
this.productCode = productCode;
|
||||
}
|
||||
|
||||
public String getProductDescZh() {
|
||||
return productDescZh;
|
||||
}
|
||||
|
||||
public void setProductDescZh(String productDescZh) {
|
||||
this.productDescZh = productDescZh;
|
||||
}
|
||||
|
||||
public String getPalletNum() {
|
||||
return palletNum;
|
||||
}
|
||||
|
||||
public void setPalletNum(String palletNum) {
|
||||
this.palletNum = palletNum;
|
||||
}
|
||||
|
||||
public String getSpec() {
|
||||
return spec;
|
||||
}
|
||||
|
||||
public void setSpec(String spec) {
|
||||
this.spec = spec;
|
||||
}
|
||||
|
||||
public String getProductGroupName() {
|
||||
return productGroupName;
|
||||
}
|
||||
|
||||
public void setProductGroupName(String productGroupName) {
|
||||
this.productGroupName = productGroupName;
|
||||
}
|
||||
|
||||
public String getStandarNo() {
|
||||
return standarNo;
|
||||
}
|
||||
|
||||
public void setStandarNo(String standarNo) {
|
||||
this.standarNo = standarNo;
|
||||
}
|
||||
|
||||
public String getWarehouseCycle() {
|
||||
return warehouseCycle;
|
||||
}
|
||||
|
||||
public void setWarehouseCycle(String warehouseCycle) {
|
||||
this.warehouseCycle = warehouseCycle;
|
||||
}
|
||||
|
||||
public String getWaNames() {
|
||||
return waNames;
|
||||
}
|
||||
|
||||
public void setWaNames(String waNames) {
|
||||
this.waNames = waNames;
|
||||
}
|
||||
|
||||
public String getWaCode() {
|
||||
return waCode;
|
||||
}
|
||||
|
||||
public void setWaCode(String waCode) {
|
||||
this.waCode = waCode;
|
||||
}
|
||||
|
||||
public String getOnLineTimes() {
|
||||
return onLineTimes;
|
||||
}
|
||||
|
||||
public void setOnLineTimes(String onLineTimes) {
|
||||
this.onLineTimes = onLineTimes;
|
||||
}
|
||||
}
|
@ -0,0 +1,171 @@
|
||||
package com.op.mes.domain;
|
||||
|
||||
import com.op.common.core.annotation.Excel;
|
||||
import com.op.common.core.web.domain.BaseEntity;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Open Platform
|
||||
* @date 2024-12-12
|
||||
*/
|
||||
public class MesProductTraceCPExp extends BaseEntity {
|
||||
private static final long serialVersionUID = 1L;
|
||||
@Excel(name = "产品编码")
|
||||
private String productCode;
|
||||
@Excel(name = "产品中文名称")
|
||||
private String productDescZh;
|
||||
@Excel(name = "产品英文名称")
|
||||
private String productDescEn;
|
||||
@Excel(name = "最大批次数量")
|
||||
private String batchMax;
|
||||
@Excel(name = "卡板装载量")
|
||||
private String palletNum;
|
||||
@Excel(name = "箱码规格")
|
||||
private String spec;
|
||||
@Excel(name = "品类")
|
||||
private String productGroupName;
|
||||
@Excel(name = "子母工单比例")
|
||||
private String unity;
|
||||
@Excel(name = "检验标准")
|
||||
private String standarNo;
|
||||
@Excel(name = "箱型")
|
||||
private String boxType;
|
||||
@Excel(name = "垛型")
|
||||
private String packType;
|
||||
|
||||
private String cpkType;
|
||||
@Excel(name = "CPK品类")
|
||||
private String cpkTypeName;
|
||||
|
||||
@Excel(name = "产线")
|
||||
private String lineNames;
|
||||
|
||||
@Excel(name = "上载到MES时间")
|
||||
private String onLineTimes;
|
||||
|
||||
|
||||
|
||||
|
||||
public String getLineNames() {
|
||||
return lineNames;
|
||||
}
|
||||
|
||||
public void setLineNames(String lineNames) {
|
||||
this.lineNames = lineNames;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public String getOnLineTimes() {
|
||||
return onLineTimes;
|
||||
}
|
||||
|
||||
public void setOnLineTimes(String onLineTimes) {
|
||||
this.onLineTimes = onLineTimes;
|
||||
}
|
||||
|
||||
|
||||
public String getProductCode() {
|
||||
return productCode;
|
||||
}
|
||||
|
||||
public void setProductCode(String productCode) {
|
||||
this.productCode = productCode;
|
||||
}
|
||||
|
||||
public String getProductDescZh() {
|
||||
return productDescZh;
|
||||
}
|
||||
|
||||
public void setProductDescZh(String productDescZh) {
|
||||
this.productDescZh = productDescZh;
|
||||
}
|
||||
|
||||
public String getProductDescEn() {
|
||||
return productDescEn;
|
||||
}
|
||||
|
||||
public void setProductDescEn(String productDescEn) {
|
||||
this.productDescEn = productDescEn;
|
||||
}
|
||||
|
||||
public String getBatchMax() {
|
||||
return batchMax;
|
||||
}
|
||||
|
||||
public void setBatchMax(String batchMax) {
|
||||
this.batchMax = batchMax;
|
||||
}
|
||||
|
||||
public String getPalletNum() {
|
||||
return palletNum;
|
||||
}
|
||||
|
||||
public void setPalletNum(String palletNum) {
|
||||
this.palletNum = palletNum.replace(".00","");
|
||||
}
|
||||
|
||||
public String getSpec() {
|
||||
return spec;
|
||||
}
|
||||
|
||||
public void setSpec(String spec) {
|
||||
this.spec = spec.replace(".0000","");
|
||||
}
|
||||
|
||||
public String getProductGroupName() {
|
||||
return productGroupName;
|
||||
}
|
||||
|
||||
public void setProductGroupName(String productGroupName) {
|
||||
this.productGroupName = productGroupName;
|
||||
}
|
||||
|
||||
public String getUnity() {
|
||||
return unity;
|
||||
}
|
||||
|
||||
public void setUnity(String unity) {
|
||||
this.unity = unity;
|
||||
}
|
||||
|
||||
public String getStandarNo() {
|
||||
return standarNo;
|
||||
}
|
||||
|
||||
public void setStandarNo(String standarNo) {
|
||||
this.standarNo = standarNo;
|
||||
}
|
||||
|
||||
public String getBoxType() {
|
||||
return boxType;
|
||||
}
|
||||
|
||||
public void setBoxType(String boxType) {
|
||||
this.boxType = boxType;
|
||||
}
|
||||
|
||||
public String getPackType() {
|
||||
return packType;
|
||||
}
|
||||
|
||||
public void setPackType(String packType) {
|
||||
this.packType = packType;
|
||||
}
|
||||
|
||||
public String getCpkType() {
|
||||
return cpkType;
|
||||
}
|
||||
|
||||
public void setCpkType(String cpkType) {
|
||||
this.cpkType = cpkType;
|
||||
}
|
||||
|
||||
public String getCpkTypeName() {
|
||||
return cpkTypeName;
|
||||
}
|
||||
|
||||
public void setCpkTypeName(String cpkTypeName) {
|
||||
this.cpkTypeName = cpkTypeName;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue