package com.billion.main.da.domain;
|
|
import com.billion.common.annotation.Excel;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
import java.util.Date;
|
|
/**
|
* 拧紧采集对象 da_tighten_collection
|
*
|
* @author Yi
|
* @date 2025-05-06
|
*/
|
public class DaTightenCollection
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** 主键id */
|
private Long id;
|
|
/** 总成序列号 */
|
@Excel(name = "总成序列号")
|
private String sfcCode;
|
|
/** 工位编码 */
|
@Excel(name = "工位编码")
|
private String locationCode;
|
|
/** 参数集编码 */
|
@Excel(name = "参数集编码")
|
private String paramSetCode;
|
|
/** 参数集名称 */
|
@Excel(name = "参数集名称")
|
private String paramSetName;
|
|
/** 扭矩值 */
|
@Excel(name = "扭矩值")
|
private String torque;
|
|
/** 扭矩状态 */
|
@Excel(name = "扭矩状态")
|
private String torqueStatus;
|
|
/** 角度值 */
|
@Excel(name = "角度值")
|
private String angle;
|
|
/** 角度状态 */
|
@Excel(name = "角度状态")
|
private String angleStatus;
|
|
/** 采集时间 */
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@Excel(name = "采集时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
private Date collectTime;
|
|
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 setLocationCode(String locationCode)
|
{
|
this.locationCode = locationCode;
|
}
|
|
public String getLocationCode()
|
{
|
return locationCode;
|
}
|
public void setParamSetCode(String paramSetCode)
|
{
|
this.paramSetCode = paramSetCode;
|
}
|
|
public String getParamSetCode()
|
{
|
return paramSetCode;
|
}
|
public void setParamSetName(String paramSetName)
|
{
|
this.paramSetName = paramSetName;
|
}
|
|
public String getParamSetName()
|
{
|
return paramSetName;
|
}
|
public void setTorque(String torque)
|
{
|
this.torque = torque;
|
}
|
|
public String getTorque()
|
{
|
return torque;
|
}
|
public void setTorqueStatus(String torqueStatus)
|
{
|
this.torqueStatus = torqueStatus;
|
}
|
|
public String getTorqueStatus()
|
{
|
return torqueStatus;
|
}
|
public void setAngle(String angle)
|
{
|
this.angle = angle;
|
}
|
|
public String getAngle()
|
{
|
return angle;
|
}
|
public void setAngleStatus(String angleStatus)
|
{
|
this.angleStatus = angleStatus;
|
}
|
|
public String getAngleStatus()
|
{
|
return angleStatus;
|
}
|
|
public Date getCollectTime() {
|
return collectTime;
|
}
|
|
public void setCollectTime(Date collectTime) {
|
this.collectTime = collectTime;
|
}
|
|
@Override
|
public String toString() {
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
.append("id", getId())
|
.append("sfcCode", getSfcCode())
|
.append("locationCode", getLocationCode())
|
.append("paramSetCode", getParamSetCode())
|
.append("paramSetName", getParamSetName())
|
.append("torque", getTorque())
|
.append("torqueStatus", getTorqueStatus())
|
.append("angle", getAngle())
|
.append("angleStatus", getAngleStatus())
|
.append("collectTime", getCollectTime())
|
.toString();
|
}
|
}
|