春风项目四线(合箱线、总装线)
yyt
2024-01-23 28cd73a27061f684feda88d2d3e5f26794bbd591
jcdm-main/src/main/java/com/jcdm/main/da/opcuaconfig/domain/DaOpcuaConfig.java
@@ -9,7 +9,7 @@
 * 交互信号配置对象 da_opcua_config
 * 
 * @author yyt
 * @date 2024-01-22
 * @date 2024-01-23
 */
public class DaOpcuaConfig extends BaseEntity
{
@@ -18,26 +18,17 @@
    /** 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;
    private String subscribe;
    /** 订阅类型 */
    @Excel(name = "订阅类型")
@@ -47,13 +38,13 @@
    @Excel(name = "备注")
    private String remarks;
    /** 工序编码 */
    @Excel(name = "工序编码")
    private String process;
    /** 工序名称 */
    @Excel(name = "工序名称")
    private String processName;
    /** 工序编码 */
    @Excel(name = "工序编码")
    private String process;
    /** 状态 */
    @Excel(name = "状态")
@@ -68,7 +59,6 @@
    {
        return id;
    }
    public void setNode(String node) 
    {
        this.node = node;
@@ -78,20 +68,27 @@
    {
        return node;
    }
    public void setSysTypes(String sysTypes)
    {
        this.sysTypes = sysTypes;
    }
    public String getSysTypes() 
    {
        return sysTypes;
    }
    public void setSubscribe(Long subscribe)
    public void setSubscribe(String subscribe)
    {
        this.subscribe = subscribe;
    }
    public Long getSubscribe()
    public String getSubscribe()
    {
        return subscribe;
    }
    public void setrFunction(String rFunction)
    {
        this.rFunction = rFunction;
    }
    public String getrFunction() 
@@ -107,15 +104,6 @@
    {
        return remarks;
    }
    public void setProcess(String process)
    {
        this.process = process;
    }
    public String getProcess()
    {
        return process;
    }
    public void setProcessName(String processName) 
    {
        this.processName = processName;
@@ -124,6 +112,15 @@
    public String getProcessName() 
    {
        return processName;
    }
    public void setProcess(String process)
    {
        this.process = process;
    }
    public String getProcess()
    {
        return process;
    }
    public void setState(Long state) 
    {
@@ -144,8 +141,8 @@
            .append("subscribe", getSubscribe())
            .append("rFunction", getrFunction())
            .append("remarks", getRemarks())
            .append("process", getProcess())
            .append("processName", getProcessName())
            .append("process", getProcess())
            .append("state", getState())
            .toString();
    }