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