提交 | 用户 | 时间
|
9d7e02
|
1 |
package com.iailab.module.data.channel.opcda.dto; |
潘 |
2 |
|
|
3 |
import io.swagger.v3.oas.annotations.media.Schema; |
|
4 |
import lombok.Data; |
|
5 |
|
|
6 |
import java.io.Serializable; |
|
7 |
import java.util.Date; |
|
8 |
|
|
9 |
/** |
|
10 |
* @description: opcda_device |
|
11 |
* @author: dzd |
|
12 |
* @date: 2024/7/12 10:42 |
|
13 |
**/ |
|
14 |
@Schema(description = "OPC DA设备") |
|
15 |
@Data |
|
16 |
public class ChannelOPCDADeviceDTO implements Serializable { |
|
17 |
private static final long serialVersionUID = 1L; |
|
18 |
|
|
19 |
@Schema(description = "主键", example = "主键") |
|
20 |
private String id; |
|
21 |
|
|
22 |
@Schema(description = "服务名", example = "服务名") |
|
23 |
private String serverName; |
|
24 |
|
|
25 |
@Schema(description = "主机IP", example = "主机IP") |
|
26 |
private String host; |
|
27 |
|
|
28 |
@Schema(description = "用户名", example = "用户名") |
|
29 |
private String user; |
|
30 |
|
|
31 |
@Schema(description = "密码", example = "密码") |
|
32 |
private String password; |
|
33 |
|
|
34 |
@Schema(description = "设备名", example = "设备名") |
|
35 |
private String progId; |
|
36 |
|
|
37 |
@Schema(description = "设备注册表ID", example = "设备注册表ID") |
|
38 |
private String clsId; |
|
39 |
|
|
40 |
@Schema(description = "创建时间", example = "创建时间") |
|
41 |
private Date createTime; |
|
42 |
|
|
43 |
@Schema(description = "更新时间", example = "更新时间") |
|
44 |
private Date updateTime; |
|
45 |
} |
|
46 |
|