songhuangfeng123
2022-08-18 2b4afe24e1136e4eb25e37b7a76565603ddc1a85
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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
package com.gkhy.safePlatform.equipment.entity;
 
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.IdType;
 
/**
 * 重点监管装置/设备 详细信息(KeypointEquipmentInfo)表实体类
 *
 * @author xurui
 * @since 2022-08-09 09:39:39
 */
@SuppressWarnings("serial")
@TableName("keypoint_equipment_info")
public class KeypointEquipmentInfo extends BaseDomain {
 
 
    @TableId(type = IdType.AUTO)
    private Long id;
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    //类型/类别外键
    private Long equipmentTypeId;
 
    public Long getEquipmentTypeId() {
        return equipmentTypeId;
    }
 
    public void setEquipmentTypeId(Long equipmentTypeId) {
        this.equipmentTypeId = equipmentTypeId;
    }
    //名称
    private String name;
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
    //单位部门外键
    private Long departmentId;
 
    public Long getDepartmentId() {
        return departmentId;
    }
 
    public void setDepartmentId(Long departmentId) {
        this.departmentId = departmentId;
    }
    //具体位置
    private String position;
 
    public String getPosition() {
        return position;
    }
 
    public void setPosition(String position) {
        this.position = position;
    }
    //负责人姓名
    private String leadingPersonName;
 
    public String getLeadingPersonName() {
        return leadingPersonName;
    }
 
    public void setLeadingPersonName(String leadingPersonName) {
        this.leadingPersonName = leadingPersonName;
    }
    //联系人/外键
    private Long connectPersonId;
 
    public Long getConnectPersonId() {
        return connectPersonId;
    }
 
    public void setConnectPersonId(Long connectPersonId) {
        this.connectPersonId = connectPersonId;
    }
    //联系人名称
    private String connectPersonName;
 
    public String getConnectPersonName() {
        return connectPersonName;
    }
 
    public void setConnectPersonName(String connectPersonName) {
        this.connectPersonName = connectPersonName;
    }
    //录入人/外键
    private Long inputPersonId;
 
    public Long getInputPersonId() {
        return inputPersonId;
    }
 
    public void setInputPersonId(Long inputPersonId) {
        this.inputPersonId = inputPersonId;
    }
    //录入人名称
    private String inputPersonName;
 
    public String getInputPersonName() {
        return inputPersonName;
    }
 
    public void setInputPersonName(String inputPersonName) {
        this.inputPersonName = inputPersonName;
    }
    //责任人/外键
    private Long responsibilityPersonId;
 
    public Long getResponsibilityPersonId() {
        return responsibilityPersonId;
    }
 
    public void setResponsibilityPersonId(Long responsibilityPersonId) {
        this.responsibilityPersonId = responsibilityPersonId;
    }
    //责任人名称
    private String responsibilityPersonName;
 
    public String getResponsibilityPersonName() {
        return responsibilityPersonName;
    }
 
    public void setResponsibilityPersonName(String responsibilityPersonName) {
        this.responsibilityPersonName = responsibilityPersonName;
    }
    //装置部位分类 1:关键装置 2:重点部位
    private Integer partType;
 
    public Integer getPartType() {
        return partType;
    }
 
    public void setPartType(Integer partType) {
        this.partType = partType;
    }
    //检查周期
    private String checkCycle;
 
    public String getCheckCycle() {
        return checkCycle;
    }
 
    public void setCheckCycle(String checkCycle) {
        this.checkCycle = checkCycle;
    }
    //应急预案/外键
    private Long emergencePlanId;
 
    public Long getEmergencePlanId() {
        return emergencePlanId;
    }
 
    public void setEmergencePlanId(Long emergencePlanId) {
        this.emergencePlanId = emergencePlanId;
    }
    //主要危险有害因素
    private String dangerousElement;
 
    public String getDangerousElement() {
        return dangerousElement;
    }
 
    public void setDangerousElement(String dangerousElement) {
        this.dangerousElement = dangerousElement;
    }
    //易导致风险
    private String toDangerous;
 
    public String getToDangerous() {
        return toDangerous;
    }
 
    public void setToDangerous(String toDangerous) {
        this.toDangerous = toDangerous;
    }
    //应急处置措施
    private String treatment;
 
    public String getTreatment() {
        return treatment;
    }
 
    public void setTreatment(String treatment) {
        this.treatment = treatment;
    }
    //现场图片
    private String scenePic;
 
    public String getScenePic() {
        return scenePic;
    }
 
    public void setScenePic(String scenePic) {
        this.scenePic = scenePic;
    }
 
    //备注
    private String memo;
 
    public String getMemo() {
        return memo;
    }
 
    public void setMemo(String memo) {
        this.memo = memo;
    }
 
}