提交 | 用户 | 时间
|
139c6a
|
1 |
package com.iailab.module.data.point.vo; |
D |
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 |
@Schema(description = "导出 - 测点数据 Response VO") |
|
9 |
@Data |
|
10 |
@ExcelIgnoreUnannotated |
|
11 |
public class PointValueExportVO { |
|
12 |
|
|
13 |
@Schema(description = "采集值") |
|
14 |
@ExcelProperty("采集值") |
|
15 |
private String datavalue; |
|
16 |
|
|
17 |
@Schema(description = "采集时间") |
|
18 |
@ExcelProperty("采集时间") |
|
19 |
private String datatime; |
|
20 |
} |