懒羊羊
2024-01-31 e57a8990ae56f657a59c435a0613c5f7a8728003
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
package com.jcdm.main.da.opcuaconfig.domain;
 
import com.jcdm.common.annotation.Excel;
import com.jcdm.common.core.domain.BaseEntity;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
 
/**
 * 交互信号配置对象 da_opcua_config
 * 
 * @author yyt
 * @date 2024-01-23
 */
public class DaOpcuaConfig extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** ID */
    private Long id;
 
    /** 节点 */
    @Excel(name = "节点")
    private String node;
 
    /** 数据类型 */
    @Excel(name = "数据类型")
    private String sysTypes;
 
    /** 是否订阅 */
    @Excel(name = "是否订阅")
    private String subscribe;
 
    /** 订阅类型 */
    @Excel(name = "订阅类型")
    private String rFunction;
 
    /** 备注 */
    @Excel(name = "备注")
    private String remarks;
 
    /** 工序名称 */
    @Excel(name = "工序名称")
    private String processName;
 
    /** 工序编码 */
    @Excel(name = "工序编码")
    private String process;
 
    /** 状态 */
    @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 void setSysTypes(String sysTypes) 
    {
        this.sysTypes = sysTypes;
    }
 
    public String getSysTypes() 
    {
        return sysTypes;
    }
    public void setSubscribe(String subscribe) 
    {
        this.subscribe = subscribe;
    }
 
    public String getSubscribe() 
    {
        return subscribe;
    }
    public void setrFunction(String rFunction) 
    {
        this.rFunction = rFunction;
    }
 
    public String getrFunction() 
    {
        return rFunction;
    }
    public void setRemarks(String remarks) 
    {
        this.remarks = remarks;
    }
 
    public String getRemarks() 
    {
        return remarks;
    }
    public void setProcessName(String processName) 
    {
        this.processName = processName;
    }
 
    public String getProcessName() 
    {
        return processName;
    }
    public void setProcess(String process) 
    {
        this.process = process;
    }
 
    public String getProcess() 
    {
        return process;
    }
    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("processName", getProcessName())
            .append("process", getProcess())
            .append("state", getState())
            .toString();
    }
}