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