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
package cn.gistack.sm.sjztmd.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;
 
@Data
@ColumnWidth(30)
@HeadRowHeight(25)
@ContentRowHeight(18)
public class AttResBaseUserExcel {
 
    @ColumnWidth(20)
    @ExcelProperty("水库名称")
    private String name;
 
    @ColumnWidth(20)
    @ExcelProperty("市")
    private String cityName;
    @ColumnWidth(20)
    @ExcelProperty("区县")
    private String countyName;
    @ColumnWidth(20)
    @ExcelProperty("街道乡镇")
    private String townName;
    @ColumnWidth(20)
    @ExcelProperty("管理行政区")
    private String adName;
    @ColumnWidth(20)
    @ExcelProperty("工程规模")
    private String engScal;
    @ColumnWidth(20)
    @ExcelProperty("注册登记码")
    private String resRegCode;
 
    @ExcelProperty({"行政责任人", "姓名"})
    private String areaUsername;
 
    @ExcelProperty({"行政责任人", "职务"})
    private String areaPosition;
 
    @ExcelProperty({"行政责任人", "所属单位"})
    private String areaUnitName;
 
    @ExcelProperty({"行政责任人", "联系电话"})
    private String areaPhone;
 
 
 
    @ExcelProperty({"主管部门责任人", "姓名"})
    private String customsUsername;
 
    @ExcelProperty({"主管部门责任人", "职务"})
    private String customsPosition;
 
    @ExcelProperty({"主管部门责任人", "所属单位"})
    private String customsUnitName;
 
    @ExcelProperty({"主管部门责任人", "联系电话"})
    private String customsPhone;
 
 
 
    @ExcelProperty({"管理单位责任人", "姓名"})
    private String manageUnitUsername;
 
    @ExcelProperty({"管理单位责任人", "职务"})
    private String manageUnitPosition;
 
    @ExcelProperty({"管理单位责任人", "所属单位"})
    private String manageUnitUnitName;
 
    @ExcelProperty({"管理单位责任人", "联系电话"})
    private String manageUnitPhone;
 
 
    @ExcelProperty({"技术责任人", "姓名"})
    private String technologyUsername;
 
    @ExcelProperty({"技术责任人", "职务"})
    private String technologyPosition;
 
    @ExcelProperty({"技术责任人", "所属单位"})
    private String technologyUnitName;
 
    @ExcelProperty({"技术责任人", "联系电话"})
    private String technologyPhone;
 
 
    @ExcelProperty({"巡查责任人", "姓名"})
    private String patrolUsername;
 
    @ExcelProperty({"巡查责任人", "职务"})
    private String patrolPosition;
 
    @ExcelProperty({"巡查责任人", "所属单位"})
    private String patrolUnitName;
 
    @ExcelProperty({"巡查责任人", "联系电话"})
    private String patrolPhone;
 
 
}