提交 | 用户 | 时间
|
77997b
|
1 |
package com.iailab.module.data.channel.opcda.vo; |
L |
2 |
|
|
3 |
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated; |
|
4 |
import com.alibaba.excel.annotation.ExcelProperty; |
|
5 |
import io.swagger.v3.oas.annotations.media.Schema; |
|
6 |
import lombok.Data; |
|
7 |
|
|
8 |
import java.util.Date; |
|
9 |
|
|
10 |
/** |
|
11 |
* @author lirm |
|
12 |
* @Description |
|
13 |
* @createTime 2024年08月26日 |
|
14 |
*/ |
|
15 |
@Schema(description = "数据平台 - opcdaDevice Response VO") |
|
16 |
@Data |
|
17 |
@ExcelIgnoreUnannotated |
|
18 |
public class OpcDaDeviceRespVO { |
|
19 |
|
|
20 |
@Schema(description = "ID", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024") |
|
21 |
@ExcelProperty("ID") |
|
22 |
private String id; |
|
23 |
|
|
24 |
@Schema(description = "服务名", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024") |
|
25 |
@ExcelProperty("服务名") |
|
26 |
private String serverName; |
|
27 |
|
|
28 |
@Schema(description = "IP", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024") |
|
29 |
@ExcelProperty("IP") |
|
30 |
private String host; |
|
31 |
|
|
32 |
@Schema(description = "用户名", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024") |
|
33 |
@ExcelProperty("用户名") |
|
34 |
private String user; |
|
35 |
|
|
36 |
@Schema(description = "密码", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024") |
|
37 |
@ExcelProperty("密码") |
|
38 |
private String password; |
|
39 |
|
|
40 |
@Schema(description = "设备名", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024") |
|
41 |
@ExcelProperty("设备名") |
|
42 |
private String progId; |
|
43 |
|
|
44 |
@Schema(description = "设备注册表ID", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024") |
|
45 |
@ExcelProperty("设备注册表ID") |
|
46 |
private String clsId; |
|
47 |
|
|
48 |
@Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024") |
|
49 |
@ExcelProperty("创建时间") |
|
50 |
private Date createTime; |
|
51 |
|
|
52 |
@Schema(description = "更新时间", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024") |
|
53 |
@ExcelProperty("更新时间") |
|
54 |
private Date updateTime; |
|
55 |
} |