guoshilong
2024-01-31 8ff278ea65cd6e4c649867e8c2b8da62064ab220
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
104
105
106
107
108
109
110
111
112
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 cityName;
 
 
 
    //县(区)
    @ExcelProperty("县(区)")
    private String countyName;
 
    //注册登记号
    @ExcelProperty("注册登记号")
    private String resRegCode;
 
    //工程规模
    @ExcelProperty("工程规模")
    private String engScal;
 
    //是否有闸
    @ExcelProperty("是否有闸")
    private String isGate;
 
 
    //是否病险
    @ExcelProperty("是否病险")
    private String isDanger;
 
    //实时水位
    @ExcelProperty("当前水位(m)")
    private String rz;
 
    //堰顶高程
    @ExcelProperty("堰顶高程(m)")
    private String tbWeirTopElevation;
 
    //主汛期限制水位
    @ExcelProperty("汛限水位(m)")
    private String tbFlseLimStag;
 
    //正常蓄水位
    @ExcelProperty("正常水位(m)")
    private String tbNormPoolStag;
 
 
    //控制运行水位
    @ExcelProperty("控制水位(m)")
    private String tbControlZ;
 
 
    //设计洪水位
    @ExcelProperty("设计水位(m)")
    private String tbDesFlStag;
 
 
    //校核洪水位
    @ExcelProperty("校核水位(m)")
    private String tbCheckFlStag;
 
 
    //坝顶高程
    @ExcelProperty("坝顶高程(m)")
    private String tbDamTopElevation;
 
    //死水位
    @ExcelProperty("死水位(m)")
    private String tbDeadStag;
 
    //校验时间
    @ExcelProperty("校验时间")
    private String createTime;
 
    //备注
    @ExcelProperty("备注")
    @ColumnWidth(50)
    private String remark;
 
 
}