入库检验工单修改来源表
parent
9d37d5eb05
commit
6624eb2992
@ -0,0 +1,170 @@
|
||||
package com.op.quality.domain;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
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;
|
||||
|
||||
/**
|
||||
* 来料检验任务--不良数量对象 qc_check_task_defect
|
||||
*
|
||||
* @author Open Platform
|
||||
* @date 2023-12-27
|
||||
*/
|
||||
public class QcCheckTaskDefect extends BaseEntity {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** id */
|
||||
private String recordId;
|
||||
|
||||
/** 不良分类编码 */
|
||||
@Excel(name = "不良分类编码")
|
||||
private String defectCode;
|
||||
|
||||
/** 不良分类名称 */
|
||||
@Excel(name = "不良分类名称")
|
||||
private String defectSubclass;
|
||||
|
||||
/** 预留字段1 */
|
||||
@Excel(name = "预留字段1")
|
||||
private String attr1;
|
||||
|
||||
/** 预留字段2 */
|
||||
@Excel(name = "预留字段2")
|
||||
private String attr2;
|
||||
|
||||
/** 预留字段3 */
|
||||
@Excel(name = "预留字段3")
|
||||
private String attr3;
|
||||
|
||||
/** 预留字段4 */
|
||||
@Excel(name = "预留字段4")
|
||||
private String attr4;
|
||||
|
||||
/** 工厂编码 */
|
||||
@Excel(name = "工厂编码")
|
||||
private String factoryCode;
|
||||
|
||||
/** 删除标识1删除0正常 */
|
||||
private String delFlag;
|
||||
|
||||
/** 检验任务id */
|
||||
@Excel(name = "检验任务id")
|
||||
private String belongTo;
|
||||
|
||||
/** 合格数量 */
|
||||
@Excel(name = "合格数量")
|
||||
private BigDecimal okQuality;
|
||||
|
||||
/** 不合格数量 */
|
||||
@Excel(name = "不合格数量")
|
||||
private BigDecimal noOkQuality;
|
||||
public void setRecordId(String recordId) {
|
||||
this.recordId = recordId;
|
||||
}
|
||||
|
||||
public String getRecordId() {
|
||||
return recordId;
|
||||
}
|
||||
public void setDefectCode(String defectCode) {
|
||||
this.defectCode = defectCode;
|
||||
}
|
||||
|
||||
public String getDefectCode() {
|
||||
return defectCode;
|
||||
}
|
||||
public void setDefectSubclass(String defectSubclass) {
|
||||
this.defectSubclass = defectSubclass;
|
||||
}
|
||||
|
||||
public String getDefectSubclass() {
|
||||
return defectSubclass;
|
||||
}
|
||||
public void setAttr1(String attr1) {
|
||||
this.attr1 = attr1;
|
||||
}
|
||||
|
||||
public String getAttr1() {
|
||||
return attr1;
|
||||
}
|
||||
public void setAttr2(String attr2) {
|
||||
this.attr2 = attr2;
|
||||
}
|
||||
|
||||
public String getAttr2() {
|
||||
return attr2;
|
||||
}
|
||||
public void setAttr3(String attr3) {
|
||||
this.attr3 = attr3;
|
||||
}
|
||||
|
||||
public String getAttr3() {
|
||||
return attr3;
|
||||
}
|
||||
public void setAttr4(String attr4) {
|
||||
this.attr4 = attr4;
|
||||
}
|
||||
|
||||
public String getAttr4() {
|
||||
return attr4;
|
||||
}
|
||||
public void setFactoryCode(String factoryCode) {
|
||||
this.factoryCode = factoryCode;
|
||||
}
|
||||
|
||||
public String getFactoryCode() {
|
||||
return factoryCode;
|
||||
}
|
||||
public void setDelFlag(String delFlag) {
|
||||
this.delFlag = delFlag;
|
||||
}
|
||||
|
||||
public String getDelFlag() {
|
||||
return delFlag;
|
||||
}
|
||||
public void setBelongTo(String belongTo) {
|
||||
this.belongTo = belongTo;
|
||||
}
|
||||
|
||||
public String getBelongTo() {
|
||||
return belongTo;
|
||||
}
|
||||
public void setOkQuality(BigDecimal okQuality) {
|
||||
this.okQuality = okQuality;
|
||||
}
|
||||
|
||||
public BigDecimal getOkQuality() {
|
||||
return okQuality;
|
||||
}
|
||||
|
||||
public BigDecimal getNoOkQuality() {
|
||||
return noOkQuality;
|
||||
}
|
||||
|
||||
public void setNoOkQuality(BigDecimal noOkQuality) {
|
||||
this.noOkQuality = noOkQuality;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||
.append("recordId", getRecordId())
|
||||
.append("defectCode", getDefectCode())
|
||||
.append("defectSubclass", getDefectSubclass())
|
||||
.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("factoryCode", getFactoryCode())
|
||||
.append("delFlag", getDelFlag())
|
||||
.append("belongTo", getBelongTo())
|
||||
.append("okQuality", getOkQuality())
|
||||
.append("nookQuality", getNoOkQuality())
|
||||
.toString();
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue