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