| | |
| | | package com.iailab.module.data.point.vo; |
| | | |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | import com.iailab.framework.excel.core.annotations.DictFormat; |
| | | import com.iailab.framework.excel.core.convert.DictConvert; |
| | | import com.iailab.module.system.enums.DictTypeConstants; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.AllArgsConstructor; |
| | | import lombok.Builder; |
| | |
| | | @Accessors(chain = false) // 设置 chain = false,避免用户导入有问题 |
| | | public class PointImportExcelVO { |
| | | |
| | | @ExcelProperty("测点编码") |
| | | private String pointNo; |
| | | |
| | | @ExcelProperty("测点名称") |
| | | private String pointName; |
| | | |
| | |
| | | |
| | | @ExcelProperty("数据类型") |
| | | private String dataType; |
| | | |
| | | @ExcelProperty("值类型") |
| | | private String valueType; |
| | | |
| | | @ExcelProperty("存储类型") |
| | | private String storeType; |
| | |
| | | @ExcelProperty("采集频率") |
| | | private String minfreqid; |
| | | |
| | | @Schema(description = "备注") |
| | | @ExcelProperty("备注") |
| | | private String remark; |
| | | |
| | | @ExcelProperty("数据源类型") |
| | | private String sourceType; |
| | | |
| | | @ExcelProperty("数据源ID") |
| | | private String sourceId; |
| | | @ExcelProperty("数据源名称") |
| | | private String sourceName; |
| | | |
| | | @ExcelProperty("测点Tag") |
| | | private String tagNo; |
| | | |
| | | @ExcelProperty("平滑尺度") |
| | | private Integer dimension; |
| | | |
| | | @ExcelProperty("值类型") |
| | | private String valueType; |
| | | |
| | | @ExcelProperty("计算公式") |
| | | private String expression; |
| | | |
| | | } |