潘志宝
6 天以前 df99e46312fdd5ee830f1451e478f6658e09f9ed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
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;
 
    @Schema(description = "采集质量")
    @ExcelProperty("采集质量")
    private String collectQuality;
}