houzhongjian
2024-12-04 a82313d17b2b5d1c02e880122efc1b701c401dcf
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
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.annotations.ExcelColumnSelect;
import com.iailab.framework.excel.core.convert.DictConvert;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.experimental.Accessors;
 
import java.math.BigDecimal;
 
/**
 * 用户 Excel 导入 VO
 */
@Data
@Builder
@AllArgsConstructor
@NoArgsConstructor
@Accessors(chain = false) // 设置 chain = false,避免用户导入有问题
public class PointImportExcelVO {
 
    @ExcelProperty("测点编码")
    private String pointNo;
 
    @ExcelProperty("测点名称")
    private String pointName;
 
    @ExcelProperty(value = "测点类型", converter = DictConvert.class)
    @ExcelColumnSelect(dictType = "data_point_type")
    @DictFormat("data_point_type")
    private String pointType;
 
    @ExcelProperty(value = "数据类型", converter = DictConvert.class)
    @ExcelColumnSelect(dictType = "point_data_type")
    @DictFormat("point_data_type")
    private String dataType;
 
    @ExcelProperty("存储类型")
    private String storeType;
 
    @ExcelProperty("测量单位")
    private String unit;
 
    @ExcelProperty("单位转换")
    private BigDecimal unittransfactor;
 
    @ExcelProperty("默认值")
    private BigDecimal defaultValue;
 
    @ExcelProperty("最大值")
    private BigDecimal maxValue;
 
    @ExcelProperty("最小值")
    private BigDecimal minValue;
 
    @ExcelProperty("采集频率")
    private String minfreqid;
 
    @Schema(description = "备注")
    @ExcelProperty("备注")
    private String remark;
 
    @ExcelProperty(value = "数据源类型", converter = DictConvert.class)
    @ExcelColumnSelect(dictType = "data_source_type")
    @DictFormat("data_source_type")
    private String sourceType;
 
    @ExcelProperty("数据源名称")
    private String sourceName;
 
    @ExcelProperty("测点Tag")
    private String tagNo;
 
    @ExcelProperty("平滑尺度")
    private Integer dimension;
 
    @ExcelProperty(value = "值类型", converter = DictConvert.class)
    @ExcelColumnSelect(dictType = "measure_value_type")
    @DictFormat("measure_value_type")
    private String valueType;
 
    @ExcelProperty("计算公式")
    private String expression;
 
    @ExcelProperty("瞬时测点")
    private String momentPoint;
 
    @ExcelProperty("累计长度")
    private Integer length;
 
    @ExcelProperty("除数")
    private Integer divisor;
 
}