质量cpk
parent
a3bff82c1c
commit
dd8b2d9d8c
@ -0,0 +1,71 @@
|
||||
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;
|
||||
|
||||
/**
|
||||
* 质量系统报对象 qc_static_table
|
||||
*
|
||||
* @author Open Platform
|
||||
* @date 2024-09-10
|
||||
*/
|
||||
public class QcCPKDTO{
|
||||
|
||||
@Excel(name = "检验节点")
|
||||
private String checkType;
|
||||
@Excel(name = "检验日期")
|
||||
private String checkDate;
|
||||
@Excel(name = "产品编码")
|
||||
private String materialCode;
|
||||
@Excel(name = "产品名称")
|
||||
private String materialName;
|
||||
@Excel(name = "CPK值")
|
||||
private String cpkVal;
|
||||
|
||||
public String getCheckType() {
|
||||
return checkType;
|
||||
}
|
||||
|
||||
public void setCheckType(String checkType) {
|
||||
this.checkType = checkType;
|
||||
}
|
||||
|
||||
public String getCheckDate() {
|
||||
return checkDate;
|
||||
}
|
||||
|
||||
public void setCheckDate(String checkDate) {
|
||||
this.checkDate = checkDate;
|
||||
}
|
||||
|
||||
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 getCpkVal() {
|
||||
return cpkVal;
|
||||
}
|
||||
|
||||
public void setCpkVal(String cpkVal) {
|
||||
this.cpkVal = cpkVal;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue