提交 | 用户 | 时间
|
e4c3b0
|
1 |
package com.jcdm.main.da.opcuaconfig.domain; |
Y |
2 |
|
|
3 |
import com.baomidou.mybatisplus.annotation.IdType; |
|
4 |
import com.baomidou.mybatisplus.annotation.TableField; |
|
5 |
import com.baomidou.mybatisplus.annotation.TableId; |
|
6 |
import com.baomidou.mybatisplus.annotation.TableName; |
|
7 |
|
|
8 |
import java.io.Serializable; |
|
9 |
|
|
10 |
/** |
|
11 |
* <p> |
|
12 |
* |
|
13 |
* </p> |
|
14 |
* |
|
15 |
* @author yyt |
|
16 |
* @since 2023-10-17 |
|
17 |
*/ |
|
18 |
@TableName("sys_opcua_conf") |
|
19 |
public class OpcuaConf implements Serializable { |
|
20 |
private static final long serialVersionUID=1L; |
|
21 |
|
|
22 |
/** |
|
23 |
* ID |
|
24 |
*/ |
|
25 |
@TableId(value = "id", type = IdType.ID_WORKER) |
|
26 |
private Long id; |
|
27 |
|
|
28 |
/** |
|
29 |
* 所属模块 |
|
30 |
*/ |
|
31 |
@TableField("module") |
|
32 |
private String module; |
|
33 |
|
|
34 |
/** |
|
35 |
* 节点 |
|
36 |
*/ |
|
37 |
@TableField("node") |
|
38 |
private String node; |
|
39 |
|
|
40 |
/** |
|
41 |
* 长度 |
|
42 |
*/ |
|
43 |
@TableField("length") |
|
44 |
private Integer length; |
|
45 |
|
|
46 |
/** |
|
47 |
* 类型 |
|
48 |
*/ |
|
49 |
@TableField("sys_types") |
|
50 |
private String sysTypes; |
|
51 |
|
|
52 |
/** |
|
53 |
* 功能说明 |
|
54 |
*/ |
|
55 |
@TableField("functionality") |
|
56 |
private String functionality; |
|
57 |
|
|
58 |
/** |
|
59 |
* 是否订阅 |
|
60 |
*/ |
|
61 |
@TableField("subscribe") |
|
62 |
private Integer subscribe; |
|
63 |
|
|
64 |
/** |
|
65 |
* 订阅响应模块 |
|
66 |
*/ |
|
67 |
@TableField("r_module") |
|
68 |
private String rModule; |
|
69 |
|
|
70 |
/** |
|
71 |
* 订阅响应函数 |
|
72 |
*/ |
|
73 |
@TableField("r_function") |
|
74 |
private String rFunction; |
|
75 |
|
|
76 |
/** |
|
77 |
* 备注 |
|
78 |
*/ |
|
79 |
@TableField("remarks") |
|
80 |
private String remarks; |
|
81 |
|
|
82 |
|
|
83 |
public Long getId() { |
|
84 |
return id; |
|
85 |
} |
|
86 |
|
|
87 |
public void setId(Long id) { |
|
88 |
this.id = id; |
|
89 |
} |
|
90 |
|
|
91 |
public String getModule() { |
|
92 |
return module; |
|
93 |
} |
|
94 |
|
|
95 |
public void setModule(String module) { |
|
96 |
this.module = module; |
|
97 |
} |
|
98 |
|
|
99 |
public String getNode() { |
|
100 |
return node; |
|
101 |
} |
|
102 |
|
|
103 |
public void setNode(String node) { |
|
104 |
this.node = node; |
|
105 |
} |
|
106 |
|
|
107 |
public Integer getLength() { |
|
108 |
return length; |
|
109 |
} |
|
110 |
|
|
111 |
public void setLength(Integer length) { |
|
112 |
this.length = length; |
|
113 |
} |
|
114 |
|
|
115 |
public String getSysTypes() { |
|
116 |
return sysTypes; |
|
117 |
} |
|
118 |
|
|
119 |
public void setSysTypes(String sysTypes) { |
|
120 |
this.sysTypes = sysTypes; |
|
121 |
} |
|
122 |
|
|
123 |
public String getFunctionality() { |
|
124 |
return functionality; |
|
125 |
} |
|
126 |
|
|
127 |
public void setFunctionality(String functionality) { |
|
128 |
this.functionality = functionality; |
|
129 |
} |
|
130 |
|
|
131 |
public Integer getSubscribe() { |
|
132 |
return subscribe; |
|
133 |
} |
|
134 |
|
|
135 |
public void setSubscribe(Integer subscribe) { |
|
136 |
this.subscribe = subscribe; |
|
137 |
} |
|
138 |
|
|
139 |
public String getrModule() { |
|
140 |
return rModule; |
|
141 |
} |
|
142 |
|
|
143 |
public void setrModule(String rModule) { |
|
144 |
this.rModule = rModule; |
|
145 |
} |
|
146 |
|
|
147 |
public String getrFunction() { |
|
148 |
return rFunction; |
|
149 |
} |
|
150 |
|
|
151 |
public void setrFunction(String rFunction) { |
|
152 |
this.rFunction = rFunction; |
|
153 |
} |
|
154 |
|
|
155 |
public String getRemarks() { |
|
156 |
return remarks; |
|
157 |
} |
|
158 |
|
|
159 |
public void setRemarks(String remarks) { |
|
160 |
this.remarks = remarks; |
|
161 |
} |
|
162 |
|
|
163 |
@Override |
|
164 |
public String toString() { |
|
165 |
return "OpcuaConf{" + |
|
166 |
"id=" + id + |
|
167 |
", module=" + module + |
|
168 |
", node=" + node + |
|
169 |
", length=" + length + |
|
170 |
", sysTypes=" + sysTypes + ", " + "functionality=" + functionality + |
|
171 |
", subscribe=" + subscribe + |
|
172 |
", rModule=" + rModule + |
|
173 |
", rFunction=" + rFunction + |
|
174 |
", remarks=" + remarks + |
|
175 |
"}"; |
|
176 |
} |
|
177 |
} |