|
|
@@ -30,15 +30,33 @@ public class LedgerRealtimeInterception extends BaseEntity {
|
|
30
|
30
|
@Excel(name = "部门名称")
|
|
31
|
31
|
private String deptName;
|
|
32
|
32
|
|
|
|
33
|
+ private Long deptId;
|
|
|
34
|
+
|
|
33
|
35
|
@Excel(name = "队室/班组")
|
|
34
|
36
|
private String teamName;
|
|
35
|
37
|
|
|
|
38
|
+ private Long teamId;
|
|
|
39
|
+
|
|
36
|
40
|
@Excel(name = "小组")
|
|
37
|
41
|
private String groupName;
|
|
38
|
42
|
|
|
|
43
|
+ private Long groupId;
|
|
|
44
|
+
|
|
|
45
|
+ private Long areaId;
|
|
|
46
|
+
|
|
|
47
|
+ @Excel(name = "区域")
|
|
|
48
|
+ private String location;
|
|
|
49
|
+
|
|
|
50
|
+ @Excel(name = "岗位")
|
|
|
51
|
+ private String position;
|
|
|
52
|
+
|
|
|
53
|
+ private Long positionId;
|
|
|
54
|
+
|
|
39
|
55
|
@Excel(name = "查获人")
|
|
40
|
56
|
private String inspectorName;
|
|
41
|
57
|
|
|
|
58
|
+ private Long inspectorId;
|
|
|
59
|
+
|
|
42
|
60
|
@Excel(name = "通道号")
|
|
43
|
61
|
private String channelNo;
|
|
44
|
62
|
|
|
|
@@ -69,6 +87,66 @@ public class LedgerRealtimeInterception extends BaseEntity {
|
|
69
|
87
|
@Excel(name = "处理结果")
|
|
70
|
88
|
private String resultHandling;
|
|
71
|
89
|
|
|
|
90
|
+ @Excel(name = "问题类型")
|
|
|
91
|
+ private String problemType;
|
|
|
92
|
+
|
|
|
93
|
+ @Excel(name = "整改措施")
|
|
|
94
|
+ private String rectificationMeasures;
|
|
|
95
|
+
|
|
|
96
|
+ @Excel(name = "问题层级")
|
|
|
97
|
+ private String problemLevel;
|
|
|
98
|
+
|
|
|
99
|
+ @Excel(name = "附件")
|
|
|
100
|
+ private String attachment;
|
|
|
101
|
+
|
|
|
102
|
+ @Excel(name = "问题类别")
|
|
|
103
|
+ private String problemCategory;
|
|
|
104
|
+
|
|
|
105
|
+ @Excel(name = "个人复盘")
|
|
|
106
|
+ private String personalReview;
|
|
|
107
|
+
|
|
|
108
|
+ @Excel(name = "队室复盘")
|
|
|
109
|
+ private String teamReview;
|
|
|
110
|
+
|
|
|
111
|
+ @Excel(name = "队室质控员")
|
|
|
112
|
+ private String qualityOfficer;
|
|
|
113
|
+
|
|
|
114
|
+ @Excel(name = "质控推送队室负责人")
|
|
|
115
|
+ private String qualityPushLeader;
|
|
|
116
|
+
|
|
|
117
|
+ @Excel(name = "开机年限")
|
|
|
118
|
+ private String operationYears;
|
|
|
119
|
+
|
|
|
120
|
+ @Excel(name = "责任人开机年龄")
|
|
|
121
|
+ private String responsibleOperationAge;
|
|
|
122
|
+
|
|
|
123
|
+ @Excel(name = "发送至相关人员")
|
|
|
124
|
+ private String sendToRelevant;
|
|
|
125
|
+
|
|
|
126
|
+ @Excel(name = "本月内发生问题次数")
|
|
|
127
|
+ private Integer monthlyProblemCount;
|
|
|
128
|
+
|
|
|
129
|
+ @Excel(name = "上月质控问题发生次数")
|
|
|
130
|
+ private Integer lastMonthProblemCount;
|
|
|
131
|
+
|
|
|
132
|
+ @Excel(name = "实时图像漏检难易度")
|
|
|
133
|
+ private String imageMissDifficulty;
|
|
|
134
|
+
|
|
|
135
|
+ @Excel(name = "检查人员")
|
|
|
136
|
+ private String checkPersonnel;
|
|
|
137
|
+
|
|
|
138
|
+ @Excel(name = "部门培训教员")
|
|
|
139
|
+ private String deptTrainingInstructor;
|
|
|
140
|
+
|
|
|
141
|
+ @Excel(name = "分管质控经理")
|
|
|
142
|
+ private String manageQcManager;
|
|
|
143
|
+
|
|
|
144
|
+ @Excel(name = "队室内勤")
|
|
|
145
|
+ private String teamInternalDuty;
|
|
|
146
|
+
|
|
|
147
|
+ @Excel(name = "队室负责人")
|
|
|
148
|
+ private String teamLeader;
|
|
|
149
|
+
|
|
72
|
150
|
@Excel(name = "扣分")
|
|
73
|
151
|
private BigDecimal deductScore;
|
|
74
|
152
|
|
|
|
@@ -104,15 +182,39 @@ public class LedgerRealtimeInterception extends BaseEntity {
|
|
104
|
182
|
public String getDeptName() { return deptName; }
|
|
105
|
183
|
public void setDeptName(String deptName) { this.deptName = deptName; }
|
|
106
|
184
|
|
|
|
185
|
+ public Long getDeptId() { return deptId; }
|
|
|
186
|
+ public void setDeptId(Long deptId) { this.deptId = deptId; }
|
|
|
187
|
+
|
|
107
|
188
|
public String getTeamName() { return teamName; }
|
|
108
|
189
|
public void setTeamName(String teamName) { this.teamName = teamName; }
|
|
109
|
190
|
|
|
|
191
|
+ public Long getTeamId() { return teamId; }
|
|
|
192
|
+ public void setTeamId(Long teamId) { this.teamId = teamId; }
|
|
|
193
|
+
|
|
110
|
194
|
public String getGroupName() { return groupName; }
|
|
111
|
195
|
public void setGroupName(String groupName) { this.groupName = groupName; }
|
|
112
|
196
|
|
|
|
197
|
+ public Long getGroupId() { return groupId; }
|
|
|
198
|
+ public void setGroupId(Long groupId) { this.groupId = groupId; }
|
|
|
199
|
+
|
|
|
200
|
+ public Long getAreaId() { return areaId; }
|
|
|
201
|
+ public void setAreaId(Long areaId) { this.areaId = areaId; }
|
|
|
202
|
+
|
|
|
203
|
+ public String getLocation() { return location; }
|
|
|
204
|
+ public void setLocation(String location) { this.location = location; }
|
|
|
205
|
+
|
|
|
206
|
+ public String getPosition() { return position; }
|
|
|
207
|
+ public void setPosition(String position) { this.position = position; }
|
|
|
208
|
+
|
|
|
209
|
+ public Long getPositionId() { return positionId; }
|
|
|
210
|
+ public void setPositionId(Long positionId) { this.positionId = positionId; }
|
|
|
211
|
+
|
|
113
|
212
|
public String getInspectorName() { return inspectorName; }
|
|
114
|
213
|
public void setInspectorName(String inspectorName) { this.inspectorName = inspectorName; }
|
|
115
|
214
|
|
|
|
215
|
+ public Long getInspectorId() { return inspectorId; }
|
|
|
216
|
+ public void setInspectorId(Long inspectorId) { this.inspectorId = inspectorId; }
|
|
|
217
|
+
|
|
116
|
218
|
public String getChannelNo() { return channelNo; }
|
|
117
|
219
|
public void setChannelNo(String channelNo) { this.channelNo = channelNo; }
|
|
118
|
220
|
|
|
|
@@ -143,6 +245,66 @@ public class LedgerRealtimeInterception extends BaseEntity {
|
|
143
|
245
|
public String getResultHandling() { return resultHandling; }
|
|
144
|
246
|
public void setResultHandling(String resultHandling) { this.resultHandling = resultHandling; }
|
|
145
|
247
|
|
|
|
248
|
+ public String getProblemType() { return problemType; }
|
|
|
249
|
+ public void setProblemType(String problemType) { this.problemType = problemType; }
|
|
|
250
|
+
|
|
|
251
|
+ public String getRectificationMeasures() { return rectificationMeasures; }
|
|
|
252
|
+ public void setRectificationMeasures(String rectificationMeasures) { this.rectificationMeasures = rectificationMeasures; }
|
|
|
253
|
+
|
|
|
254
|
+ public String getProblemLevel() { return problemLevel; }
|
|
|
255
|
+ public void setProblemLevel(String problemLevel) { this.problemLevel = problemLevel; }
|
|
|
256
|
+
|
|
|
257
|
+ public String getAttachment() { return attachment; }
|
|
|
258
|
+ public void setAttachment(String attachment) { this.attachment = attachment; }
|
|
|
259
|
+
|
|
|
260
|
+ public String getProblemCategory() { return problemCategory; }
|
|
|
261
|
+ public void setProblemCategory(String problemCategory) { this.problemCategory = problemCategory; }
|
|
|
262
|
+
|
|
|
263
|
+ public String getPersonalReview() { return personalReview; }
|
|
|
264
|
+ public void setPersonalReview(String personalReview) { this.personalReview = personalReview; }
|
|
|
265
|
+
|
|
|
266
|
+ public String getTeamReview() { return teamReview; }
|
|
|
267
|
+ public void setTeamReview(String teamReview) { this.teamReview = teamReview; }
|
|
|
268
|
+
|
|
|
269
|
+ public String getQualityOfficer() { return qualityOfficer; }
|
|
|
270
|
+ public void setQualityOfficer(String qualityOfficer) { this.qualityOfficer = qualityOfficer; }
|
|
|
271
|
+
|
|
|
272
|
+ public String getQualityPushLeader() { return qualityPushLeader; }
|
|
|
273
|
+ public void setQualityPushLeader(String qualityPushLeader) { this.qualityPushLeader = qualityPushLeader; }
|
|
|
274
|
+
|
|
|
275
|
+ public String getOperationYears() { return operationYears; }
|
|
|
276
|
+ public void setOperationYears(String operationYears) { this.operationYears = operationYears; }
|
|
|
277
|
+
|
|
|
278
|
+ public String getResponsibleOperationAge() { return responsibleOperationAge; }
|
|
|
279
|
+ public void setResponsibleOperationAge(String responsibleOperationAge) { this.responsibleOperationAge = responsibleOperationAge; }
|
|
|
280
|
+
|
|
|
281
|
+ public String getSendToRelevant() { return sendToRelevant; }
|
|
|
282
|
+ public void setSendToRelevant(String sendToRelevant) { this.sendToRelevant = sendToRelevant; }
|
|
|
283
|
+
|
|
|
284
|
+ public Integer getMonthlyProblemCount() { return monthlyProblemCount; }
|
|
|
285
|
+ public void setMonthlyProblemCount(Integer monthlyProblemCount) { this.monthlyProblemCount = monthlyProblemCount; }
|
|
|
286
|
+
|
|
|
287
|
+ public Integer getLastMonthProblemCount() { return lastMonthProblemCount; }
|
|
|
288
|
+ public void setLastMonthProblemCount(Integer lastMonthProblemCount) { this.lastMonthProblemCount = lastMonthProblemCount; }
|
|
|
289
|
+
|
|
|
290
|
+ public String getImageMissDifficulty() { return imageMissDifficulty; }
|
|
|
291
|
+ public void setImageMissDifficulty(String imageMissDifficulty) { this.imageMissDifficulty = imageMissDifficulty; }
|
|
|
292
|
+
|
|
|
293
|
+ public String getCheckPersonnel() { return checkPersonnel; }
|
|
|
294
|
+ public void setCheckPersonnel(String checkPersonnel) { this.checkPersonnel = checkPersonnel; }
|
|
|
295
|
+
|
|
|
296
|
+ public String getDeptTrainingInstructor() { return deptTrainingInstructor; }
|
|
|
297
|
+ public void setDeptTrainingInstructor(String deptTrainingInstructor) { this.deptTrainingInstructor = deptTrainingInstructor; }
|
|
|
298
|
+
|
|
|
299
|
+ public String getManageQcManager() { return manageQcManager; }
|
|
|
300
|
+ public void setManageQcManager(String manageQcManager) { this.manageQcManager = manageQcManager; }
|
|
|
301
|
+
|
|
|
302
|
+ public String getTeamInternalDuty() { return teamInternalDuty; }
|
|
|
303
|
+ public void setTeamInternalDuty(String teamInternalDuty) { this.teamInternalDuty = teamInternalDuty; }
|
|
|
304
|
+
|
|
|
305
|
+ public String getTeamLeader() { return teamLeader; }
|
|
|
306
|
+ public void setTeamLeader(String teamLeader) { this.teamLeader = teamLeader; }
|
|
|
307
|
+
|
|
146
|
308
|
public BigDecimal getDeductScore() { return deductScore; }
|
|
147
|
309
|
public void setDeductScore(BigDecimal deductScore) { this.deductScore = deductScore; }
|
|
148
|
310
|
|