提交 | 用户 | 时间
|
a6de49
|
1 |
package com.iailab.module.data.channel.kio.dto; |
H |
2 |
|
|
3 |
import io.swagger.v3.oas.annotations.tags.Tag; |
|
4 |
import io.swagger.v3.oas.annotations.media.Schema; |
|
5 |
import lombok.Data; |
|
6 |
|
|
7 |
import java.io.Serializable; |
|
8 |
import java.util.Date; |
|
9 |
|
|
10 |
/** |
|
11 |
* @author PanZhibao |
|
12 |
* @Description |
|
13 |
* @createTime 2024年06月04日 |
|
14 |
*/ |
|
15 |
@Data |
|
16 |
@Tag(name = "KIO实例") |
|
17 |
public class ChannelKioDeviceDTO implements Serializable { |
|
18 |
private static final long serialVersionUID = 1L; |
|
19 |
|
|
20 |
@Schema(description = "ID") |
|
21 |
private String id; |
|
22 |
|
|
23 |
@Schema(description = "实例名称") |
|
24 |
private String instanceName; |
|
25 |
|
|
26 |
@Schema(description = "IP地址") |
|
27 |
private String address; |
|
28 |
|
|
29 |
@Schema(description = "端口") |
|
30 |
private Integer port; |
|
31 |
|
|
32 |
@Schema(description = "用户名") |
|
33 |
private String username; |
|
34 |
|
|
35 |
@Schema(description = "密码") |
|
36 |
private String password; |
|
37 |
|
|
38 |
|
|
39 |
@Schema(description = "创建时间") |
|
40 |
private Date createTime; |
|
41 |
|
|
42 |
|
|
43 |
@Schema(description = "修改时间") |
|
44 |
private Date updateTime; |
|
45 |
} |