package com.iailab.module.data.point.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.math.BigDecimal;
|
|
|
@Schema(description = "导出 - 测点信息 Response VO")
|
@Data
|
@ExcelIgnoreUnannotated
|
public class DaPointExcelVO {
|
|
@Schema(description = "测点编码")
|
@ExcelProperty("测点编码")
|
private String pointNo;
|
|
@Schema(description = "测点名称")
|
@ExcelProperty("测点名称")
|
private String pointName;
|
|
@Schema(description = "测点类型")
|
@ExcelProperty("测点类型")
|
private String pointType;
|
|
@Schema(description = "数据类型")
|
@ExcelProperty("数据类型")
|
private String dataType;
|
|
@Schema(description = "存储类型")
|
@ExcelProperty("存储类型")
|
private String storeType;
|
|
@Schema(description = "测量单位")
|
@ExcelProperty("测量单位")
|
private String unit;
|
|
@Schema(description = "单位转换")
|
@ExcelProperty("单位转换")
|
private BigDecimal unittransfactor;
|
|
@Schema(description = "默认值")
|
@ExcelProperty("默认值")
|
private BigDecimal defaultValue;
|
|
@Schema(description = "最大值")
|
@ExcelProperty("最大值")
|
private BigDecimal maxValue;
|
|
@Schema(description = "最小值")
|
@ExcelProperty("最小值")
|
private BigDecimal minValue;
|
|
@Schema(description = "采集频率")
|
@ExcelProperty("采集频率")
|
private String minfreqid;
|
|
@Schema(description = "备注")
|
@ExcelProperty("备注")
|
private String remark;
|
|
@Schema(description = "数据源类型")
|
@ExcelProperty("数据源类型")
|
private String sourceType;
|
|
@Schema(description = "数据源名称")
|
@ExcelProperty("数据源名称")
|
private String sourceName;
|
|
@Schema(description = "测点Tag")
|
@ExcelProperty("测点Tag")
|
private String tagNo;
|
|
@Schema(description = "平滑尺度")
|
@ExcelProperty("平滑尺度")
|
private Integer dimension;
|
|
@Schema(description = "值类型")
|
@ExcelProperty("值类型")
|
private String valueType;
|
|
@Schema(description = "计算公式")
|
@ExcelProperty("计算公式")
|
private String expression;
|
|
@Schema(description = "瞬时测点")
|
@ExcelProperty("瞬时测点")
|
private String momentPoint;
|
|
@Schema(description = "累计长度")
|
@ExcelProperty("累计长度")
|
private Integer length;
|
|
@Schema(description = "除数")
|
@ExcelProperty("除数")
|
private Integer divisor;
|
}
|