guoshilong
2024-01-31 a821c2819270f9be222f84b8c358e4ebfe3afb53
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
package cn.gistack.sm.resDataCheck.excel;
 
import com.alibaba.excel.annotation.ExcelProperty;
import com.alibaba.excel.annotation.write.style.ColumnWidth;
import com.alibaba.excel.annotation.write.style.ContentRowHeight;
import com.alibaba.excel.annotation.write.style.HeadRowHeight;
import lombok.Data;
 
import java.io.Serializable;
 
@Data
@ColumnWidth(25)
@HeadRowHeight(20)
@ContentRowHeight(18)
public class QualityManageExcel implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * 水库id
     */
    @ExcelProperty(value = "序号")
    private Integer no;
 
    //水库名称
    @ExcelProperty("水库名称")
    private String resName;
 
    /**
     * 数据来源
     */
    @ExcelProperty("数据来源")
    private String flag;
 
    //所在地点
    @ExcelProperty("所在地点")
    private String resLoc;
 
 
 
    //县(区)
    @ExcelProperty("管理行政区")
    private String adName;
 
    //注册登记号
    @ExcelProperty("注册登记号")
    private String resRegCode;
 
    //工程规模
    @ExcelProperty("工程规模")
    private String engScal;
 
    //校验规则名称
    @ExcelProperty("校验规则名称")
    private String ruleName;
 
    //校验规则描述
    @ExcelProperty("校验规则描述")
    private String ruleDesc;
 
    //校验结果描述
    @ExcelProperty("校验结果描述")
    private String proDesc;
 
    //校验结果描述
    @ExcelProperty("数据结果")
    private String val;
 
    //备注
    @ExcelProperty("校验时间")
    private String createTime;
 
 
}