zhangfeng
2022-09-21 fee66fde68610850d4c8c52df022b9d53a0cd3f7
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
package com.gkhy.safePlatform.equipment.model.dto.req;
 
import com.gkhy.safePlatform.equipment.utils.poihelper.ExcelCell;
 
import java.io.Serializable;
 
public class KeypointEquipmentInfoImportExcel implements Serializable {
    //类型/类别外键
    @ExcelCell(index = 1)
    private Long equipmentTypeId;
    //名称
    @ExcelCell(index = 2)
    private String name;
    //单位部门外键
    @ExcelCell(index = 3)
    private Long departmentId;
    //所属部门名称
    private String departmentName;
    //具体位置
    @ExcelCell(index = 4)
    private String position;
    //负责人姓名
    @ExcelCell(index = 5)
    private String leadingPersonName;
    //联系人/外键
    @ExcelCell(index = 6)
    private Long connectPersonId;
    //录入人/外键
    @ExcelCell(index = 7)
    private Long inputPersonId;
    //责任人/外键
    @ExcelCell(index = 8)
    private Long responsibilityPersonId;
    //装置部位分类 1:关键装置 2:重点部位
    @ExcelCell(index = 9)
    private Byte partType;
    //检查周期
    @ExcelCell(index = 10)
    private String checkCycle;
    //应急预案/外键
    @ExcelCell(index = 11)
    private Long emergencePlanId;
    //主要危险有害因素
    @ExcelCell(index = 12)
    private String dangerousElement;
    //易导致风险
    @ExcelCell(index = 13)
    private String toDangerous;
    //应急处置措施
    @ExcelCell(index = 14)
    private String treatment;
    //现场图片
    @ExcelCell(index = 15)
    private String scenePic;
 
    public String getDepartmentName() {
        return departmentName;
    }
 
    public void setDepartmentName(String departmentName) {
        this.departmentName = departmentName;
    }
    //类型/类别外键
    public Long getEquipmentTypeId() {
        return equipmentTypeId;
    }
 
    public void setEquipmentTypeId(Long equipmentTypeId) {
        this.equipmentTypeId = equipmentTypeId;
    }
    //名称
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
    //单位部门外键
    public Long getDepartmentId() {
        return departmentId;
    }
 
    public void setDepartmentId(Long departmentId) {
        this.departmentId = departmentId;
    }
    //具体位置
    public String getPosition() {
        return position;
    }
 
    public void setPosition(String position) {
        this.position = position;
    }
    //负责人姓名
    public String getLeadingPersonName() {
        return leadingPersonName;
    }
 
    public void setLeadingPersonName(String leadingPersonName) {
        this.leadingPersonName = leadingPersonName;
    }
    //联系人/外键
    public Long getConnectPersonId() {
        return connectPersonId;
    }
 
    public void setConnectPersonId(Long connectPersonId) {
        this.connectPersonId = connectPersonId;
    }
    //录入人/外键
    public Long getInputPersonId() {
        return inputPersonId;
    }
 
    public void setInputPersonId(Long inputPersonId) {
        this.inputPersonId = inputPersonId;
    }
    //责任人/外键
    public Long getResponsibilityPersonId() {
        return responsibilityPersonId;
    }
 
    public void setResponsibilityPersonId(Long responsibilityPersonId) {
        this.responsibilityPersonId = responsibilityPersonId;
    }
    //装置部位分类 1:关键装置 2:重点部位
    public Byte getPartType() {
        return partType;
    }
 
    public void setPartType(Byte partType) {
        this.partType = partType;
    }
    //检查周期
    public String getCheckCycle() {
        return checkCycle;
    }
 
    public void setCheckCycle(String checkCycle) {
        this.checkCycle = checkCycle;
    }
    //应急预案/外键
    public Long getEmergencePlanId() {
        return emergencePlanId;
    }
 
    public void setEmergencePlanId(Long emergencePlanId) {
        this.emergencePlanId = emergencePlanId;
    }
    //主要危险有害因素
    public String getDangerousElement() {
        return dangerousElement;
    }
 
    public void setDangerousElement(String dangerousElement) {
        this.dangerousElement = dangerousElement;
    }
    //易导致风险
    public String getToDangerous() {
        return toDangerous;
    }
 
    public void setToDangerous(String toDangerous) {
        this.toDangerous = toDangerous;
    }
    //应急处置措施
    public String getTreatment() {
        return treatment;
    }
 
    public void setTreatment(String treatment) {
        this.treatment = treatment;
    }
    //现场图片
    public String getScenePic() {
        return scenePic;
    }
 
    public void setScenePic(String scenePic) {
        this.scenePic = scenePic;
    }
 
}