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