懒羊羊
2023-10-17 5d91e0a52879bf16511817b3cd20496f07717ab1
提交 | 用户 | 时间
487b2f 1 package cn.stylefeng.guns.opcua.model.result;
YY 2
3 import lombok.Data;
4 import java.util.Date;
5 import java.io.Serializable;
6 import java.math.BigDecimal;
7
8 /**
9  * <p>
10  * 
11  * </p>
12  *
13  * @author yyt
14  * @since 2023-10-17
15  */
16 @Data
17 public class OpcuaConfResult implements Serializable {
18
19     private static final long serialVersionUID = 1L;
20
21
22     /**
23      * ID
24      */
25     private Long id;
26
27     /**
28      * 所属模块
29      */
30     private String module;
31
32     /**
33      * 节点
34      */
35     private String node;
36
37     /**
38      * 长度
39      */
40     private Integer length;
41
42     /**
43      * 类型
44      */
5d91e0 45     private String sysTypes;
487b2f 46
YY 47     /**
48      * 功能说明
49      */
50     private String functionality;
51
52     /**
53      * 是否订阅
54      */
55     private Integer subscribe;
56
57     /**
58      * 订阅响应模块
59      */
60     private String rModule;
61
62     /**
63      * 订阅响应函数
64      */
65     private String rFunction;
66
67     /**
68      * 备注
69      */
70     private String remarks;
71
72 }