对比新文件 |
| | |
| | | package com.iailab.module.data.plan.item.vo; |
| | | |
| | | import com.alibaba.excel.annotation.ExcelIgnoreUnannotated; |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | |
| | | import java.util.Date; |
| | | |
| | | /** |
| | | * @author PanZhibao |
| | | * @Description |
| | | * @createTime 2024年11月04日 |
| | | */ |
| | | @Schema(description = "导出 - 测点数据 Response VO") |
| | | @Data |
| | | @ExcelIgnoreUnannotated |
| | | public class PlanItemValueExportVO { |
| | | |
| | | @Schema(description = "采集值") |
| | | @ExcelProperty("采集值") |
| | | private String dataValue; |
| | | |
| | | @Schema(description = "采集时间") |
| | | @ExcelProperty("采集时间") |
| | | private String dataTime; |
| | | } |