Merge remote-tracking branch 'origin/master'
commit
eda3150b06
@ -0,0 +1,185 @@
|
||||
package com.op.quality.domain;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import com.op.common.core.annotation.Excel;
|
||||
import com.op.common.core.web.domain.BaseEntity;
|
||||
import com.op.system.api.domain.quality.ChartDTO;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.util.Date;
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Open Platform
|
||||
* @date 2024-10-08
|
||||
*/
|
||||
public class QcCPKInfo extends BaseEntity {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
private List<String> titleCol1;
|
||||
private String checkType;
|
||||
private String projectId;
|
||||
private String ymArrayStart;
|
||||
private String ymArrayEnd;
|
||||
private String incomeTime;
|
||||
private String checkLoc;
|
||||
private String equipmentName;
|
||||
private String materialCode;
|
||||
private String materialName;
|
||||
private String cpkType;
|
||||
private String cpkTypeName;
|
||||
private String workorderCode;
|
||||
private String batchNo;
|
||||
private String workorderCodeSap;
|
||||
private String ruleName;
|
||||
private String actualValue;
|
||||
List<HashMap> mxData;
|
||||
|
||||
|
||||
public String getIncomeTime() {
|
||||
return incomeTime;
|
||||
}
|
||||
|
||||
public void setIncomeTime(String incomeTime) {
|
||||
this.incomeTime = incomeTime;
|
||||
}
|
||||
|
||||
public String getCheckLoc() {
|
||||
return checkLoc;
|
||||
}
|
||||
|
||||
public void setCheckLoc(String checkLoc) {
|
||||
this.checkLoc = checkLoc;
|
||||
}
|
||||
|
||||
public String getEquipmentName() {
|
||||
return equipmentName;
|
||||
}
|
||||
|
||||
public void setEquipmentName(String equipmentName) {
|
||||
this.equipmentName = equipmentName;
|
||||
}
|
||||
|
||||
public String getMaterialCode() {
|
||||
return materialCode;
|
||||
}
|
||||
|
||||
public void setMaterialCode(String materialCode) {
|
||||
this.materialCode = materialCode;
|
||||
}
|
||||
|
||||
public String getMaterialName() {
|
||||
return materialName;
|
||||
}
|
||||
|
||||
public void setMaterialName(String materialName) {
|
||||
this.materialName = materialName;
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
|
||||
public String getWorkorderCode() {
|
||||
return workorderCode;
|
||||
}
|
||||
|
||||
public void setWorkorderCode(String workorderCode) {
|
||||
this.workorderCode = workorderCode;
|
||||
}
|
||||
|
||||
public String getBatchNo() {
|
||||
return batchNo;
|
||||
}
|
||||
|
||||
public void setBatchNo(String batchNo) {
|
||||
this.batchNo = batchNo;
|
||||
}
|
||||
|
||||
public String getWorkorderCodeSap() {
|
||||
return workorderCodeSap;
|
||||
}
|
||||
|
||||
public void setWorkorderCodeSap(String workorderCodeSap) {
|
||||
this.workorderCodeSap = workorderCodeSap;
|
||||
}
|
||||
|
||||
public String getRuleName() {
|
||||
return ruleName;
|
||||
}
|
||||
|
||||
public void setRuleName(String ruleName) {
|
||||
this.ruleName = ruleName;
|
||||
}
|
||||
|
||||
public String getActualValue() {
|
||||
return actualValue;
|
||||
}
|
||||
|
||||
public void setActualValue(String actualValue) {
|
||||
this.actualValue = actualValue;
|
||||
}
|
||||
|
||||
public List<String> getTitleCol1() {
|
||||
return titleCol1;
|
||||
}
|
||||
|
||||
public void setTitleCol1(List<String> titleCol1) {
|
||||
this.titleCol1 = titleCol1;
|
||||
}
|
||||
|
||||
public String getCheckType() {
|
||||
return checkType;
|
||||
}
|
||||
|
||||
public void setCheckType(String checkType) {
|
||||
this.checkType = checkType;
|
||||
}
|
||||
|
||||
public String getProjectId() {
|
||||
return projectId;
|
||||
}
|
||||
|
||||
public void setProjectId(String projectId) {
|
||||
this.projectId = projectId;
|
||||
}
|
||||
|
||||
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 List<HashMap> getMxData() {
|
||||
return mxData;
|
||||
}
|
||||
|
||||
public void setMxData(List<HashMap> mxData) {
|
||||
this.mxData = mxData;
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue