package com.jcdm.main.da.tileMatchRules.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_rules
|
*
|
* @author jiang
|
* @date 2024-01-24
|
*/
|
public class DaTileMatchRules extends BaseEntity
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** 主键id */
|
private Long id;
|
|
/** 产品系列 */
|
@Excel(name = "产品系列")
|
private String productSeries;
|
|
/** 扫码对象1 */
|
@Excel(name = "扫码对象1")
|
private String scanObject1;
|
|
/** 扫码对象2 */
|
@Excel(name = "扫码对象2")
|
private String scanObject2;
|
|
/** 轴名称 */
|
@Excel(name = "轴名称")
|
private String axisName;
|
|
/** 颈名称 */
|
@Excel(name = "颈名称")
|
private String neckName;
|
|
/** 瓦名称 */
|
@Excel(name = "瓦名称")
|
private String tileName;
|
|
/** 轴参数数位置 */
|
@Excel(name = "轴参数数位置")
|
private Long axisParameterNoPosition;
|
|
/** 颈参数数位置 */
|
@Excel(name = "颈参数数位置")
|
private Long neckParameterPosition;
|
|
/** 轴值 */
|
@Excel(name = "轴值")
|
private String axisValue;
|
|
/** 颈值 */
|
@Excel(name = "颈值")
|
private String neckValue;
|
|
/** 瓦颜色 */
|
@Excel(name = "瓦颜色")
|
private String tileColor;
|
|
/** 创建用户 */
|
@Excel(name = "创建用户")
|
private String createUser;
|
|
/** 更改用户 */
|
@Excel(name = "更改用户")
|
private String updateUser;
|
|
/** 状态(1合格、2不合格) */
|
@Excel(name = "状态", readConverterExp = "1=合格、2不合格")
|
private String state;
|
|
public void setId(Long id)
|
{
|
this.id = id;
|
}
|
|
public Long getId()
|
{
|
return id;
|
}
|
public void setProductSeries(String productSeries)
|
{
|
this.productSeries = productSeries;
|
}
|
|
public String getProductSeries()
|
{
|
return productSeries;
|
}
|
public void setScanObject1(String scanObject1)
|
{
|
this.scanObject1 = scanObject1;
|
}
|
|
public String getScanObject1()
|
{
|
return scanObject1;
|
}
|
public void setScanObject2(String scanObject2)
|
{
|
this.scanObject2 = scanObject2;
|
}
|
|
public String getScanObject2()
|
{
|
return scanObject2;
|
}
|
public void setAxisName(String axisName)
|
{
|
this.axisName = axisName;
|
}
|
|
public String getAxisName()
|
{
|
return axisName;
|
}
|
public void setNeckName(String neckName)
|
{
|
this.neckName = neckName;
|
}
|
|
public String getNeckName()
|
{
|
return neckName;
|
}
|
public void setTileName(String tileName)
|
{
|
this.tileName = tileName;
|
}
|
|
public String getTileName()
|
{
|
return tileName;
|
}
|
public void setAxisParameterNoPosition(Long axisParameterNoPosition)
|
{
|
this.axisParameterNoPosition = axisParameterNoPosition;
|
}
|
|
public Long getAxisParameterNoPosition()
|
{
|
return axisParameterNoPosition;
|
}
|
public void setNeckParameterPosition(Long neckParameterPosition)
|
{
|
this.neckParameterPosition = neckParameterPosition;
|
}
|
|
public Long getNeckParameterPosition()
|
{
|
return neckParameterPosition;
|
}
|
public void setAxisValue(String axisValue)
|
{
|
this.axisValue = axisValue;
|
}
|
|
public String getAxisValue()
|
{
|
return axisValue;
|
}
|
public void setNeckValue(String neckValue)
|
{
|
this.neckValue = neckValue;
|
}
|
|
public String getNeckValue()
|
{
|
return neckValue;
|
}
|
public void setTileColor(String tileColor)
|
{
|
this.tileColor = tileColor;
|
}
|
|
public String getTileColor()
|
{
|
return tileColor;
|
}
|
public void setCreateUser(String createUser)
|
{
|
this.createUser = createUser;
|
}
|
|
public String getCreateUser()
|
{
|
return createUser;
|
}
|
public void setUpdateUser(String updateUser)
|
{
|
this.updateUser = updateUser;
|
}
|
|
public String getUpdateUser()
|
{
|
return updateUser;
|
}
|
public void setState(String state)
|
{
|
this.state = state;
|
}
|
|
public String getState()
|
{
|
return state;
|
}
|
|
@Override
|
public String toString() {
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
.append("id", getId())
|
.append("productSeries", getProductSeries())
|
.append("scanObject1", getScanObject1())
|
.append("scanObject2", getScanObject2())
|
.append("axisName", getAxisName())
|
.append("neckName", getNeckName())
|
.append("tileName", getTileName())
|
.append("axisParameterNoPosition", getAxisParameterNoPosition())
|
.append("neckParameterPosition", getNeckParameterPosition())
|
.append("axisValue", getAxisValue())
|
.append("neckValue", getNeckValue())
|
.append("tileColor", getTileColor())
|
.append("createUser", getCreateUser())
|
.append("createTime", getCreateTime())
|
.append("updateUser", getUpdateUser())
|
.append("updateTime", getUpdateTime())
|
.append("state", getState())
|
.toString();
|
}
|
}
|