package com.jcdm.main.da.tileMatchCollection.domain;
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
import com.jcdm.common.annotation.Excel;
|
import com.jcdm.common.core.domain.BaseEntity;
|
|
/**
|
* 条码采集对象 da_tile_match_collection
|
*
|
* @author yyt
|
* @date 2024-06-06
|
*/
|
public class DaTileMatchCollection extends BaseEntity
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** id */
|
private Long id;
|
|
/** 发动机号 */
|
@Excel(name = "发动机号")
|
private String sfcCode;
|
|
/** 零件编号 */
|
@Excel(name = "零件编号")
|
private String paramCode;
|
|
/** 零件名称 */
|
@Excel(name = "零件名称")
|
private String paramName;
|
|
/** 备注 */
|
@Excel(name = "备注")
|
private String remarks;
|
|
/** 工序编号 */
|
@Excel(name = "工序编号")
|
private String locationCode;
|
|
/** 条码 */
|
@Excel(name = "条码")
|
private String paramValue;
|
|
public void setId(Long id)
|
{
|
this.id = id;
|
}
|
|
public Long getId()
|
{
|
return id;
|
}
|
public void setSfcCode(String sfcCode)
|
{
|
this.sfcCode = sfcCode;
|
}
|
|
public String getSfcCode()
|
{
|
return sfcCode;
|
}
|
public void setParamCode(String paramCode)
|
{
|
this.paramCode = paramCode;
|
}
|
|
public String getParamCode()
|
{
|
return paramCode;
|
}
|
public void setParamName(String paramName)
|
{
|
this.paramName = paramName;
|
}
|
|
public String getParamName()
|
{
|
return paramName;
|
}
|
public void setRemarks(String remarks)
|
{
|
this.remarks = remarks;
|
}
|
|
public String getRemarks()
|
{
|
return remarks;
|
}
|
public void setLocationCode(String locationCode)
|
{
|
this.locationCode = locationCode;
|
}
|
|
public String getLocationCode()
|
{
|
return locationCode;
|
}
|
|
public void setParamValue(String paramValue)
|
{
|
this.paramValue = paramValue;
|
}
|
|
public String getParamValue()
|
{
|
return paramValue;
|
}
|
|
@Override
|
public String toString() {
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
.append("id", getId())
|
.append("sfcCode", getSfcCode())
|
.append("paramCode", getParamCode())
|
.append("paramName", getParamName())
|
.append("createTime", getCreateTime())
|
.append("remarks", getRemarks())
|
.append("locationCode", getLocationCode())
|
.append("paramValue", getParamValue())
|
.toString();
|
}
|
}
|