|
|
@@ -27,21 +27,34 @@ public class LedgerSupervisionProblem extends BaseEntity {
|
|
27
|
27
|
@Excel(name = "部门名称")
|
|
28
|
28
|
private String deptName;
|
|
29
|
29
|
|
|
|
30
|
+ private Long deptId;
|
|
|
31
|
+
|
|
30
|
32
|
@Excel(name = "队室/班组")
|
|
31
|
33
|
private String teamName;
|
|
32
|
34
|
|
|
|
35
|
+ private Long teamId;
|
|
|
36
|
+
|
|
33
|
37
|
@Excel(name = "小组")
|
|
34
|
38
|
private String groupName;
|
|
35
|
39
|
|
|
|
40
|
+ private Long groupId;
|
|
|
41
|
+
|
|
|
42
|
+ private Long areaId;
|
|
|
43
|
+
|
|
36
|
44
|
@Excel(name = "巡查人")
|
|
37
|
45
|
private String inspectorName;
|
|
38
|
46
|
|
|
39
|
47
|
@Excel(name = "被查人")
|
|
40
|
48
|
private String inspectedName;
|
|
41
|
49
|
|
|
|
50
|
+ private Long inspectedId;
|
|
|
51
|
+
|
|
42
|
52
|
@Excel(name = "问题类型")
|
|
43
|
53
|
private String problemType;
|
|
44
|
54
|
|
|
|
55
|
+ @Excel(name = "问题层级")
|
|
|
56
|
+ private String problemLevel;
|
|
|
57
|
+
|
|
45
|
58
|
@Excel(name = "问题描述")
|
|
46
|
59
|
private String problemDesc;
|
|
47
|
60
|
|
|
|
@@ -51,9 +64,57 @@ public class LedgerSupervisionProblem extends BaseEntity {
|
|
51
|
64
|
@Excel(name = "通道号")
|
|
52
|
65
|
private String channelNo;
|
|
53
|
66
|
|
|
|
67
|
+ @Excel(name = "岗位")
|
|
|
68
|
+ private String position;
|
|
|
69
|
+
|
|
|
70
|
+ private Long positionId;
|
|
|
71
|
+
|
|
54
|
72
|
@Excel(name = "处理结果")
|
|
55
|
73
|
private String resultHandling;
|
|
56
|
74
|
|
|
|
75
|
+ @Excel(name = "依据")
|
|
|
76
|
+ private String basis;
|
|
|
77
|
+
|
|
|
78
|
+ @Excel(name = "队室质控员")
|
|
|
79
|
+ private String qualityOfficer;
|
|
|
80
|
+
|
|
|
81
|
+ @Excel(name = "质控推送队室负责人")
|
|
|
82
|
+ private String qualityPushLeader;
|
|
|
83
|
+
|
|
|
84
|
+ @Excel(name = "整改情况")
|
|
|
85
|
+ private String rectificationStatus;
|
|
|
86
|
+
|
|
|
87
|
+ @Excel(name = "佐证材料")
|
|
|
88
|
+ private String evidenceMaterial;
|
|
|
89
|
+
|
|
|
90
|
+ @Excel(name = "发送至相关人员")
|
|
|
91
|
+ private String sendToRelevant;
|
|
|
92
|
+
|
|
|
93
|
+ @Excel(name = "本月内发生问题次数")
|
|
|
94
|
+ private Integer monthlyProblemCount;
|
|
|
95
|
+
|
|
|
96
|
+ @Excel(name = "上月质控问题超过三次人员")
|
|
|
97
|
+ private String lastMonthExceedThree;
|
|
|
98
|
+
|
|
|
99
|
+ @Excel(name = "检查人员")
|
|
|
100
|
+ private String checkPersonnel;
|
|
|
101
|
+
|
|
|
102
|
+ @Excel(name = "分管质控经理")
|
|
|
103
|
+ private String manageQcManager;
|
|
|
104
|
+
|
|
|
105
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
106
|
+ @Excel(name = "录入时间", width = 20, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
|
|
107
|
+ private Date inputTime;
|
|
|
108
|
+
|
|
|
109
|
+ @Excel(name = "部门培训教员")
|
|
|
110
|
+ private String deptTrainingInstructor;
|
|
|
111
|
+
|
|
|
112
|
+ @Excel(name = "队室内勤")
|
|
|
113
|
+ private String teamInternalDuty;
|
|
|
114
|
+
|
|
|
115
|
+ @Excel(name = "队室负责人")
|
|
|
116
|
+ private String teamLeader;
|
|
|
117
|
+
|
|
57
|
118
|
@Excel(name = "扣分")
|
|
58
|
119
|
private BigDecimal deductScore;
|
|
59
|
120
|
|
|
|
@@ -86,21 +147,39 @@ public class LedgerSupervisionProblem extends BaseEntity {
|
|
86
|
147
|
public String getDeptName() { return deptName; }
|
|
87
|
148
|
public void setDeptName(String deptName) { this.deptName = deptName; }
|
|
88
|
149
|
|
|
|
150
|
+ public Long getDeptId() { return deptId; }
|
|
|
151
|
+ public void setDeptId(Long deptId) { this.deptId = deptId; }
|
|
|
152
|
+
|
|
89
|
153
|
public String getTeamName() { return teamName; }
|
|
90
|
154
|
public void setTeamName(String teamName) { this.teamName = teamName; }
|
|
91
|
155
|
|
|
|
156
|
+ public Long getTeamId() { return teamId; }
|
|
|
157
|
+ public void setTeamId(Long teamId) { this.teamId = teamId; }
|
|
|
158
|
+
|
|
92
|
159
|
public String getGroupName() { return groupName; }
|
|
93
|
160
|
public void setGroupName(String groupName) { this.groupName = groupName; }
|
|
94
|
161
|
|
|
|
162
|
+ public Long getGroupId() { return groupId; }
|
|
|
163
|
+ public void setGroupId(Long groupId) { this.groupId = groupId; }
|
|
|
164
|
+
|
|
|
165
|
+ public Long getAreaId() { return areaId; }
|
|
|
166
|
+ public void setAreaId(Long areaId) { this.areaId = areaId; }
|
|
|
167
|
+
|
|
95
|
168
|
public String getInspectorName() { return inspectorName; }
|
|
96
|
169
|
public void setInspectorName(String inspectorName) { this.inspectorName = inspectorName; }
|
|
97
|
170
|
|
|
98
|
171
|
public String getInspectedName() { return inspectedName; }
|
|
99
|
172
|
public void setInspectedName(String inspectedName) { this.inspectedName = inspectedName; }
|
|
100
|
173
|
|
|
|
174
|
+ public Long getInspectedId() { return inspectedId; }
|
|
|
175
|
+ public void setInspectedId(Long inspectedId) { this.inspectedId = inspectedId; }
|
|
|
176
|
+
|
|
101
|
177
|
public String getProblemType() { return problemType; }
|
|
102
|
178
|
public void setProblemType(String problemType) { this.problemType = problemType; }
|
|
103
|
179
|
|
|
|
180
|
+ public String getProblemLevel() { return problemLevel; }
|
|
|
181
|
+ public void setProblemLevel(String problemLevel) { this.problemLevel = problemLevel; }
|
|
|
182
|
+
|
|
104
|
183
|
public String getProblemDesc() { return problemDesc; }
|
|
105
|
184
|
public void setProblemDesc(String problemDesc) { this.problemDesc = problemDesc; }
|
|
106
|
185
|
|
|
|
@@ -110,9 +189,57 @@ public class LedgerSupervisionProblem extends BaseEntity {
|
|
110
|
189
|
public String getChannelNo() { return channelNo; }
|
|
111
|
190
|
public void setChannelNo(String channelNo) { this.channelNo = channelNo; }
|
|
112
|
191
|
|
|
|
192
|
+ public String getPosition() { return position; }
|
|
|
193
|
+ public void setPosition(String position) { this.position = position; }
|
|
|
194
|
+
|
|
|
195
|
+ public Long getPositionId() { return positionId; }
|
|
|
196
|
+ public void setPositionId(Long positionId) { this.positionId = positionId; }
|
|
|
197
|
+
|
|
113
|
198
|
public String getResultHandling() { return resultHandling; }
|
|
114
|
199
|
public void setResultHandling(String resultHandling) { this.resultHandling = resultHandling; }
|
|
115
|
200
|
|
|
|
201
|
+ public String getBasis() { return basis; }
|
|
|
202
|
+ public void setBasis(String basis) { this.basis = basis; }
|
|
|
203
|
+
|
|
|
204
|
+ public String getQualityOfficer() { return qualityOfficer; }
|
|
|
205
|
+ public void setQualityOfficer(String qualityOfficer) { this.qualityOfficer = qualityOfficer; }
|
|
|
206
|
+
|
|
|
207
|
+ public String getQualityPushLeader() { return qualityPushLeader; }
|
|
|
208
|
+ public void setQualityPushLeader(String qualityPushLeader) { this.qualityPushLeader = qualityPushLeader; }
|
|
|
209
|
+
|
|
|
210
|
+ public String getRectificationStatus() { return rectificationStatus; }
|
|
|
211
|
+ public void setRectificationStatus(String rectificationStatus) { this.rectificationStatus = rectificationStatus; }
|
|
|
212
|
+
|
|
|
213
|
+ public String getEvidenceMaterial() { return evidenceMaterial; }
|
|
|
214
|
+ public void setEvidenceMaterial(String evidenceMaterial) { this.evidenceMaterial = evidenceMaterial; }
|
|
|
215
|
+
|
|
|
216
|
+ public String getSendToRelevant() { return sendToRelevant; }
|
|
|
217
|
+ public void setSendToRelevant(String sendToRelevant) { this.sendToRelevant = sendToRelevant; }
|
|
|
218
|
+
|
|
|
219
|
+ public Integer getMonthlyProblemCount() { return monthlyProblemCount; }
|
|
|
220
|
+ public void setMonthlyProblemCount(Integer monthlyProblemCount) { this.monthlyProblemCount = monthlyProblemCount; }
|
|
|
221
|
+
|
|
|
222
|
+ public String getLastMonthExceedThree() { return lastMonthExceedThree; }
|
|
|
223
|
+ public void setLastMonthExceedThree(String lastMonthExceedThree) { this.lastMonthExceedThree = lastMonthExceedThree; }
|
|
|
224
|
+
|
|
|
225
|
+ public String getCheckPersonnel() { return checkPersonnel; }
|
|
|
226
|
+ public void setCheckPersonnel(String checkPersonnel) { this.checkPersonnel = checkPersonnel; }
|
|
|
227
|
+
|
|
|
228
|
+ public String getManageQcManager() { return manageQcManager; }
|
|
|
229
|
+ public void setManageQcManager(String manageQcManager) { this.manageQcManager = manageQcManager; }
|
|
|
230
|
+
|
|
|
231
|
+ public Date getInputTime() { return inputTime; }
|
|
|
232
|
+ public void setInputTime(Date inputTime) { this.inputTime = inputTime; }
|
|
|
233
|
+
|
|
|
234
|
+ public String getDeptTrainingInstructor() { return deptTrainingInstructor; }
|
|
|
235
|
+ public void setDeptTrainingInstructor(String deptTrainingInstructor) { this.deptTrainingInstructor = deptTrainingInstructor; }
|
|
|
236
|
+
|
|
|
237
|
+ public String getTeamInternalDuty() { return teamInternalDuty; }
|
|
|
238
|
+ public void setTeamInternalDuty(String teamInternalDuty) { this.teamInternalDuty = teamInternalDuty; }
|
|
|
239
|
+
|
|
|
240
|
+ public String getTeamLeader() { return teamLeader; }
|
|
|
241
|
+ public void setTeamLeader(String teamLeader) { this.teamLeader = teamLeader; }
|
|
|
242
|
+
|
|
116
|
243
|
public BigDecimal getDeductScore() { return deductScore; }
|
|
117
|
244
|
public void setDeductScore(BigDecimal deductScore) { this.deductScore = deductScore; }
|
|
118
|
245
|
|