package com.jcdm.main.da.opcuaconfig.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_opcua_config
|
*
|
* @author yyt
|
* @date 2024-01-22
|
*/
|
public class DaOpcuaConfig extends BaseEntity
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** ID */
|
private Long id;
|
|
/** $column.columnComment */
|
|
/** 节点 */
|
@Excel(name = "节点")
|
private String node;
|
|
/** $column.columnComment */
|
private Long length;
|
|
/** 数据类型 */
|
@Excel(name = "数据类型")
|
private String sysTypes;
|
|
/** $column.columnComment */
|
private String functionality;
|
|
/** 是否订阅 */
|
@Excel(name = "是否订阅")
|
private Long subscribe;
|
|
|
/** 订阅类型 */
|
@Excel(name = "订阅类型")
|
private String rFunction;
|
|
/** 备注 */
|
@Excel(name = "备注")
|
private String remarks;
|
|
/** 工序编码 */
|
@Excel(name = "工序编码")
|
private String process;
|
|
/** 工序名称 */
|
@Excel(name = "工序名称")
|
private String processName;
|
|
/** 状态 */
|
@Excel(name = "状态")
|
private Long state;
|
|
public void setId(Long id)
|
{
|
this.id = id;
|
}
|
|
public Long getId()
|
{
|
return id;
|
}
|
|
public void setNode(String node)
|
{
|
this.node = node;
|
}
|
|
public String getNode()
|
{
|
return node;
|
}
|
|
public String getSysTypes()
|
{
|
return sysTypes;
|
}
|
|
public void setSubscribe(Long subscribe)
|
{
|
this.subscribe = subscribe;
|
}
|
|
public Long getSubscribe()
|
{
|
return subscribe;
|
}
|
|
public String getrFunction()
|
{
|
return rFunction;
|
}
|
public void setRemarks(String remarks)
|
{
|
this.remarks = remarks;
|
}
|
|
public String getRemarks()
|
{
|
return remarks;
|
}
|
public void setProcess(String process)
|
{
|
this.process = process;
|
}
|
|
public String getProcess()
|
{
|
return process;
|
}
|
public void setProcessName(String processName)
|
{
|
this.processName = processName;
|
}
|
|
public String getProcessName()
|
{
|
return processName;
|
}
|
public void setState(Long state)
|
{
|
this.state = state;
|
}
|
|
public Long getState()
|
{
|
return state;
|
}
|
|
@Override
|
public String toString() {
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
.append("id", getId())
|
.append("node", getNode())
|
.append("sysTypes", getSysTypes())
|
.append("subscribe", getSubscribe())
|
.append("rFunction", getrFunction())
|
.append("remarks", getRemarks())
|
.append("process", getProcess())
|
.append("processName", getProcessName())
|
.append("state", getState())
|
.toString();
|
}
|
}
|