春风项目四线(合箱线、总装线)
yyt
2024-01-13 e4c3b0f2afc59f7d7037b196d9f90266e2255608
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
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;
 
/**
 * OPCUA参数设置对象 da_opcua_config
 * 
 * @author yyt
 * @date 2023-12-22
 */
public class DaOpcuaConfig extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** ID */
    private Long id;
 
    /** 所属模块 */
    @Excel(name = "所属模块")
    private String module;
 
    /** 节点 */
    @Excel(name = "节点")
    private String node;
 
    /** 长度 */
    @Excel(name = "长度")
    private Long length;
 
    /** 类型 */
    @Excel(name = "类型")
    private String sysTypes;
 
    /** 功能说明 */
    @Excel(name = "功能说明")
    private String functionality;
 
    /** 是否订阅 */
    @Excel(name = "是否订阅")
    private Long subscribe;
 
    /** 订阅响应模块 */
    @Excel(name = "订阅响应模块")
    private String rModule;
 
    /** 订阅响应函数 */
    @Excel(name = "订阅响应函数")
    private String rFunction;
 
    /** 备注 */
    @Excel(name = "备注")
    private String remarks;
 
    public void setId(Long id) 
    {
        this.id = id;
    }
 
    public Long getId() 
    {
        return id;
    }
    public void setModule(String module) 
    {
        this.module = module;
    }
 
    public String getModule() 
    {
        return module;
    }
    public void setNode(String node) 
    {
        this.node = node;
    }
 
    public String getNode() 
    {
        return node;
    }
    public void setLength(Long length) 
    {
        this.length = length;
    }
 
    public Long getLength() 
    {
        return length;
    }
    public void setSysTypes(String sysTypes) 
    {
        this.sysTypes = sysTypes;
    }
 
    public String getSysTypes() 
    {
        return sysTypes;
    }
    public void setFunctionality(String functionality) 
    {
        this.functionality = functionality;
    }
 
    public String getFunctionality() 
    {
        return functionality;
    }
    public void setSubscribe(Long subscribe) 
    {
        this.subscribe = subscribe;
    }
 
    public Long getSubscribe() 
    {
        return subscribe;
    }
    public void setrModule(String rModule) 
    {
        this.rModule = rModule;
    }
 
    public String getrModule() 
    {
        return rModule;
    }
    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;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("id", getId())
            .append("module", getModule())
            .append("node", getNode())
            .append("length", getLength())
            .append("sysTypes", getSysTypes())
            .append("functionality", getFunctionality())
            .append("subscribe", getSubscribe())
            .append("rModule", getrModule())
            .append("rFunction", getrFunction())
            .append("remarks", getRemarks())
            .toString();
    }
}