提交 | 用户 | 时间
|
a6de49
|
1 |
package com.iailab.module.data.channel.opcua.dto; |
H |
2 |
|
|
3 |
import com.alibaba.fastjson.annotation.JSONField; |
9d7e02
|
4 |
import io.swagger.v3.oas.annotations.media.Schema; |
a6de49
|
5 |
import lombok.Data; |
H |
6 |
|
|
7 |
import java.io.Serializable; |
|
8 |
|
|
9 |
/** |
|
10 |
* @author PanZhibao |
|
11 |
* @Description |
|
12 |
* @createTime 2023年04月23日 14:25:00 |
|
13 |
*/ |
9d7e02
|
14 |
@Schema(description = "OPC UA设备") |
a6de49
|
15 |
@Data |
H |
16 |
public class ChannelOPCUADeviceDTO implements Serializable { |
|
17 |
private static final long serialVersionUID = 1L; |
|
18 |
|
9d7e02
|
19 |
@Schema(description = "ServerName", example = "ServerName") |
a6de49
|
20 |
private String ServerName; |
H |
21 |
|
|
22 |
|
9d7e02
|
23 |
@Schema(description = "EndpointUrl", example = "EndpointUrl") |
a6de49
|
24 |
private String EndpointUrl; |
H |
25 |
|
9d7e02
|
26 |
@Schema(description = "SecurityPolicy", example = "SecurityPolicy") |
a6de49
|
27 |
private String SecurityPolicy; |
H |
28 |
|
9d7e02
|
29 |
@Schema(description = "SecurityMode", example = "SecurityMode") |
a6de49
|
30 |
private String SecurityMode; |
H |
31 |
|
9d7e02
|
32 |
@Schema(description = "连接方式", example = "连接方式(0,匿名;1,用户名密码; 2,安全证书)") |
a6de49
|
33 |
private String ConnectionType; |
H |
34 |
|
9d7e02
|
35 |
@Schema(description = "用户名", example = "用户名") |
a6de49
|
36 |
private String UserName; |
H |
37 |
|
9d7e02
|
38 |
@Schema(description = "密码", example = "密码") |
a6de49
|
39 |
private String Password; |
H |
40 |
|
9d7e02
|
41 |
@Schema(description = "安全证书路径", example = "安全证书路径") |
a6de49
|
42 |
private String CertificatePath; |
H |
43 |
|
9d7e02
|
44 |
@Schema(description = "设备不活动超时时间", example = "设备不活动超时时间") |
a6de49
|
45 |
private Integer ConnectInactivityTimeout; |
9d7e02
|
46 |
|
潘 |
47 |
@Schema(description = "重连超时", example = "重连超时") |
a6de49
|
48 |
private Integer ReconnectInterval; |
H |
49 |
} |