|
|
|
@ -1,10 +1,10 @@
|
|
|
|
|
package com.op.quality.domain;
|
|
|
|
|
|
|
|
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
|
|
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
|
|
|
import com.op.common.core.annotation.Excel;
|
|
|
|
|
import com.op.common.core.web.domain.BaseEntity;
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 质量系统报对象 qc_static_table
|
|
|
|
|
*
|
|
|
|
@ -14,110 +14,146 @@ import com.op.common.core.web.domain.BaseEntity;
|
|
|
|
|
public class QcStaticTable extends BaseEntity {
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
|
|
|
|
/** ID */
|
|
|
|
|
private String id;
|
|
|
|
|
private String supplierId;
|
|
|
|
|
|
|
|
|
|
@Excel(name = "供应商编号")
|
|
|
|
|
private String supplierCode;
|
|
|
|
|
|
|
|
|
|
@Excel(name = "供应商名称")
|
|
|
|
|
private String supplierName;
|
|
|
|
|
|
|
|
|
|
private List<String> supplierCodes;
|
|
|
|
|
|
|
|
|
|
private String yearMonth;
|
|
|
|
|
|
|
|
|
|
private int batchs;
|
|
|
|
|
private int okBatchs;
|
|
|
|
|
private int noOkBatchs;
|
|
|
|
|
private int nums;
|
|
|
|
|
private int okNums;
|
|
|
|
|
private int noOkNums;
|
|
|
|
|
private String typeCode;
|
|
|
|
|
private String checkResult;
|
|
|
|
|
private String noOkBatchRate;
|
|
|
|
|
private String noOkNumRate;
|
|
|
|
|
|
|
|
|
|
public String getNoOkNumRate() {
|
|
|
|
|
return noOkNumRate;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setNoOkNumRate(String noOkNumRate) {
|
|
|
|
|
this.noOkNumRate = noOkNumRate;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getNoOkBatchRate() {
|
|
|
|
|
return noOkBatchRate;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setNoOkBatchRate(String noOkBatchRate) {
|
|
|
|
|
this.noOkBatchRate = noOkBatchRate;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int getOkBatchs() {
|
|
|
|
|
return okBatchs;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setOkBatchs(int okBatchs) {
|
|
|
|
|
this.okBatchs = okBatchs;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** 文件名称 */
|
|
|
|
|
@Excel(name = "文件名称")
|
|
|
|
|
private String fileName;
|
|
|
|
|
public int getNoOkBatchs() {
|
|
|
|
|
return noOkBatchs;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** 文件地址 */
|
|
|
|
|
@Excel(name = "文件地址")
|
|
|
|
|
private String fileAddress;
|
|
|
|
|
public void setNoOkBatchs(int noOkBatchs) {
|
|
|
|
|
this.noOkBatchs = noOkBatchs;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** 版本号 */
|
|
|
|
|
@Excel(name = "版本号")
|
|
|
|
|
private String version;
|
|
|
|
|
public int getNums() {
|
|
|
|
|
return nums;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** 备用1 */
|
|
|
|
|
@Excel(name = "备用1")
|
|
|
|
|
private String attr1;
|
|
|
|
|
public void setNums(int nums) {
|
|
|
|
|
this.nums = nums;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** 备用2 */
|
|
|
|
|
@Excel(name = "备用2")
|
|
|
|
|
private String attr2;
|
|
|
|
|
public int getOkNums() {
|
|
|
|
|
return okNums;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** 备用3 */
|
|
|
|
|
@Excel(name = "备用3")
|
|
|
|
|
private String attr3;
|
|
|
|
|
public void setOkNums(int okNums) {
|
|
|
|
|
this.okNums = okNums;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** 备用4 */
|
|
|
|
|
@Excel(name = "备用4")
|
|
|
|
|
private String attr4;
|
|
|
|
|
public int getNoOkNums() {
|
|
|
|
|
return noOkNums;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setId(String id) {
|
|
|
|
|
this.id = id;
|
|
|
|
|
public void setNoOkNums(int noOkNums) {
|
|
|
|
|
this.noOkNums = noOkNums;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getId() {
|
|
|
|
|
return id;
|
|
|
|
|
public String getCheckResult() {
|
|
|
|
|
return checkResult;
|
|
|
|
|
}
|
|
|
|
|
public void setFileName(String fileName) {
|
|
|
|
|
this.fileName = fileName;
|
|
|
|
|
|
|
|
|
|
public void setCheckResult(String checkResult) {
|
|
|
|
|
this.checkResult = checkResult;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getFileName() {
|
|
|
|
|
return fileName;
|
|
|
|
|
public String getTypeCode() {
|
|
|
|
|
return typeCode;
|
|
|
|
|
}
|
|
|
|
|
public void setFileAddress(String fileAddress) {
|
|
|
|
|
this.fileAddress = fileAddress;
|
|
|
|
|
|
|
|
|
|
public void setTypeCode(String typeCode) {
|
|
|
|
|
this.typeCode = typeCode;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getFileAddress() {
|
|
|
|
|
return fileAddress;
|
|
|
|
|
public int getBatchs() {
|
|
|
|
|
return batchs;
|
|
|
|
|
}
|
|
|
|
|
public void setVersion(String version) {
|
|
|
|
|
this.version = version;
|
|
|
|
|
|
|
|
|
|
public void setBatchs(int batchs) {
|
|
|
|
|
this.batchs = batchs;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getVersion() {
|
|
|
|
|
return version;
|
|
|
|
|
public String getYearMonth() {
|
|
|
|
|
return yearMonth;
|
|
|
|
|
}
|
|
|
|
|
public void setAttr1(String attr1) {
|
|
|
|
|
this.attr1 = attr1;
|
|
|
|
|
|
|
|
|
|
public void setYearMonth(String yearMonth) {
|
|
|
|
|
this.yearMonth = yearMonth;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getAttr1() {
|
|
|
|
|
return attr1;
|
|
|
|
|
public List<String> getSupplierCodes() {
|
|
|
|
|
return supplierCodes;
|
|
|
|
|
}
|
|
|
|
|
public void setAttr2(String attr2) {
|
|
|
|
|
this.attr2 = attr2;
|
|
|
|
|
|
|
|
|
|
public void setSupplierCodes(List<String> supplierCodes) {
|
|
|
|
|
this.supplierCodes = supplierCodes;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getAttr2() {
|
|
|
|
|
return attr2;
|
|
|
|
|
public String getSupplierId() {
|
|
|
|
|
return supplierId;
|
|
|
|
|
}
|
|
|
|
|
public void setAttr3(String attr3) {
|
|
|
|
|
this.attr3 = attr3;
|
|
|
|
|
|
|
|
|
|
public void setSupplierId(String supplierId) {
|
|
|
|
|
this.supplierId = supplierId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getAttr3() {
|
|
|
|
|
return attr3;
|
|
|
|
|
public String getSupplierCode() {
|
|
|
|
|
return supplierCode;
|
|
|
|
|
}
|
|
|
|
|
public void setAttr4(String attr4) {
|
|
|
|
|
this.attr4 = attr4;
|
|
|
|
|
|
|
|
|
|
public void setSupplierCode(String supplierCode) {
|
|
|
|
|
this.supplierCode = supplierCode;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getAttr4() {
|
|
|
|
|
return attr4;
|
|
|
|
|
public String getSupplierName() {
|
|
|
|
|
return supplierName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public String toString() {
|
|
|
|
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
|
|
|
|
.append("id", getId())
|
|
|
|
|
.append("fileName", getFileName())
|
|
|
|
|
.append("fileAddress", getFileAddress())
|
|
|
|
|
.append("version", getVersion())
|
|
|
|
|
.append("attr1", getAttr1())
|
|
|
|
|
.append("attr2", getAttr2())
|
|
|
|
|
.append("attr3", getAttr3())
|
|
|
|
|
.append("attr4", getAttr4())
|
|
|
|
|
.append("createBy", getCreateBy())
|
|
|
|
|
.append("createTime", getCreateTime())
|
|
|
|
|
.append("updateBy", getUpdateBy())
|
|
|
|
|
.append("updateTime", getUpdateTime())
|
|
|
|
|
.append("remark", getRemark())
|
|
|
|
|
.toString();
|
|
|
|
|
public void setSupplierName(String supplierName) {
|
|
|
|
|
this.supplierName = supplierName;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|