|
|
@@ -21,36 +21,64 @@ public class LedgerServicePatrol extends BaseEntity {
|
|
21
|
21
|
private Long id;
|
|
22
|
22
|
|
|
23
|
23
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
|
24
|
|
- @Excel(name = "巡查日期", width = 20, dateFormat = "yyyy-MM-dd")
|
|
|
24
|
+ @Excel(name = "时间", width = 20, dateFormat = "yyyy-MM-dd")
|
|
25
|
25
|
private Date recordDate;
|
|
26
|
26
|
|
|
27
|
27
|
@Excel(name = "部门名称")
|
|
28
|
28
|
private String deptName;
|
|
29
|
29
|
|
|
30
|
|
- @Excel(name = "队室/班组")
|
|
|
30
|
+ private Long deptId;
|
|
|
31
|
+
|
|
31
|
32
|
private String teamName;
|
|
32
|
33
|
|
|
33
|
|
- @Excel(name = "小组")
|
|
|
34
|
+ private Long teamId;
|
|
|
35
|
+
|
|
34
|
36
|
private String groupName;
|
|
35
|
37
|
|
|
36
|
|
- @Excel(name = "巡查人")
|
|
37
|
|
- private String inspectorName;
|
|
|
38
|
+ private Long groupId;
|
|
38
|
39
|
|
|
39
|
|
- @Excel(name = "被查人")
|
|
|
40
|
+ private Long areaId;
|
|
|
41
|
+
|
|
|
42
|
+ @Excel(name = "区域")
|
|
|
43
|
+ private String location;
|
|
|
44
|
+
|
|
|
45
|
+ @Excel(name = "工作点")
|
|
|
46
|
+ private String channelNo;
|
|
|
47
|
+
|
|
|
48
|
+ @Excel(name = "岗位")
|
|
|
49
|
+ private String position;
|
|
|
50
|
+
|
|
|
51
|
+ private Long positionId;
|
|
|
52
|
+
|
|
|
53
|
+ @Excel(name = "责任人")
|
|
40
|
54
|
private String inspectedName;
|
|
41
|
55
|
|
|
42
|
|
- @Excel(name = "服务类型")
|
|
43
|
|
- private String serviceType;
|
|
|
56
|
+ private Long inspectedId;
|
|
44
|
57
|
|
|
45
|
58
|
@Excel(name = "问题描述")
|
|
46
|
59
|
private String problemDesc;
|
|
47
|
60
|
|
|
48
|
|
- @Excel(name = "巡查地点")
|
|
49
|
|
- private String location;
|
|
|
61
|
+ @Excel(name = "问题类型")
|
|
|
62
|
+ private String serviceType;
|
|
50
|
63
|
|
|
51
|
|
- @Excel(name = "处理结果")
|
|
|
64
|
+ @Excel(name = "整改措施")
|
|
52
|
65
|
private String resultHandling;
|
|
53
|
66
|
|
|
|
67
|
+ @Excel(name = "问题层级")
|
|
|
68
|
+ private String problemLevel;
|
|
|
69
|
+
|
|
|
70
|
+ @Excel(name = "附件")
|
|
|
71
|
+ private String evidenceFile;
|
|
|
72
|
+
|
|
|
73
|
+ @Excel(name = "整改情况")
|
|
|
74
|
+ private String rectificationStatus;
|
|
|
75
|
+
|
|
|
76
|
+ @Excel(name = "佐证材料")
|
|
|
77
|
+ private String evidenceMaterial;
|
|
|
78
|
+
|
|
|
79
|
+ @Excel(name = "检查人员")
|
|
|
80
|
+ private String checkPersonnel;
|
|
|
81
|
+
|
|
54
|
82
|
@Excel(name = "扣分")
|
|
55
|
83
|
private BigDecimal deductScore;
|
|
56
|
84
|
|
|
|
@@ -63,12 +91,6 @@ public class LedgerServicePatrol extends BaseEntity {
|
|
63
|
91
|
@Excel(name = "评分指标")
|
|
64
|
92
|
private String scoreIndicator;
|
|
65
|
93
|
|
|
66
|
|
- @Excel(name = "佐证附件")
|
|
67
|
|
- private String evidenceFile;
|
|
68
|
|
-
|
|
69
|
|
- @Excel(name = "备注")
|
|
70
|
|
- private String remark;
|
|
71
|
|
-
|
|
72
|
94
|
private String importBatch;
|
|
73
|
95
|
|
|
74
|
96
|
@Excel(name = "数据来源")
|
|
|
@@ -77,54 +99,6 @@ public class LedgerServicePatrol extends BaseEntity {
|
|
77
|
99
|
@Excel(name = "同步标志(0=未同步;1=已同步)")
|
|
78
|
100
|
private String syncFlag;
|
|
79
|
101
|
|
|
80
|
|
- // ========== 新增字段 ==========
|
|
81
|
|
- @Excel(name = "工作点")
|
|
82
|
|
- private String channelNo;
|
|
83
|
|
-
|
|
84
|
|
- @Excel(name = "岗位")
|
|
85
|
|
- private String position;
|
|
86
|
|
-
|
|
87
|
|
- @Excel(name = "问题层级")
|
|
88
|
|
- private String problemLevel;
|
|
89
|
|
-
|
|
90
|
|
- @Excel(name = "队室服务联络人")
|
|
91
|
|
- private String serviceContactPerson;
|
|
92
|
|
-
|
|
93
|
|
- @Excel(name = "服务推送队室负责人")
|
|
94
|
|
- private String servicePushLeader;
|
|
95
|
|
-
|
|
96
|
|
- @Excel(name = "整改情况")
|
|
97
|
|
- private String rectificationStatus;
|
|
98
|
|
-
|
|
99
|
|
- @Excel(name = "佐证材料")
|
|
100
|
|
- private String evidenceMaterial;
|
|
101
|
|
-
|
|
102
|
|
- @Excel(name = "发送至相关人员")
|
|
103
|
|
- private String sendToRelevant;
|
|
104
|
|
-
|
|
105
|
|
- @Excel(name = "本月内发生问题次数")
|
|
106
|
|
- private Integer monthlyProblemCount;
|
|
107
|
|
-
|
|
108
|
|
- @Excel(name = "检查人员")
|
|
109
|
|
- private String checkPersonnel;
|
|
110
|
|
-
|
|
111
|
|
- @Excel(name = "分管服务经理")
|
|
112
|
|
- private String manageServiceManager;
|
|
113
|
|
-
|
|
114
|
|
- @Excel(name = "队室内勤")
|
|
115
|
|
- private String teamInternalDuty;
|
|
116
|
|
-
|
|
117
|
|
- @Excel(name = "队室负责人")
|
|
118
|
|
- private String teamLeader;
|
|
119
|
|
-
|
|
120
|
|
- // ========== ID字段 ==========
|
|
121
|
|
- private Long inspectedId;
|
|
122
|
|
- private Long deptId;
|
|
123
|
|
- private Long teamId;
|
|
124
|
|
- private Long groupId;
|
|
125
|
|
- private Long positionId;
|
|
126
|
|
- private Long areaId;
|
|
127
|
|
-
|
|
128
|
102
|
public Long getId() { return id; }
|
|
129
|
103
|
public void setId(Long id) { this.id = id; }
|
|
130
|
104
|
|
|
|
@@ -134,72 +108,56 @@ public class LedgerServicePatrol extends BaseEntity {
|
|
134
|
108
|
public String getDeptName() { return deptName; }
|
|
135
|
109
|
public void setDeptName(String deptName) { this.deptName = deptName; }
|
|
136
|
110
|
|
|
|
111
|
+ public Long getDeptId() { return deptId; }
|
|
|
112
|
+ public void setDeptId(Long deptId) { this.deptId = deptId; }
|
|
|
113
|
+
|
|
137
|
114
|
public String getTeamName() { return teamName; }
|
|
138
|
115
|
public void setTeamName(String teamName) { this.teamName = teamName; }
|
|
139
|
116
|
|
|
|
117
|
+ public Long getTeamId() { return teamId; }
|
|
|
118
|
+ public void setTeamId(Long teamId) { this.teamId = teamId; }
|
|
|
119
|
+
|
|
140
|
120
|
public String getGroupName() { return groupName; }
|
|
141
|
121
|
public void setGroupName(String groupName) { this.groupName = groupName; }
|
|
142
|
122
|
|
|
143
|
|
- public String getInspectorName() { return inspectorName; }
|
|
144
|
|
- public void setInspectorName(String inspectorName) { this.inspectorName = inspectorName; }
|
|
145
|
|
-
|
|
146
|
|
- public String getInspectedName() { return inspectedName; }
|
|
147
|
|
- public void setInspectedName(String inspectedName) { this.inspectedName = inspectedName; }
|
|
148
|
|
-
|
|
149
|
|
- public String getServiceType() { return serviceType; }
|
|
150
|
|
- public void setServiceType(String serviceType) { this.serviceType = serviceType; }
|
|
|
123
|
+ public Long getGroupId() { return groupId; }
|
|
|
124
|
+ public void setGroupId(Long groupId) { this.groupId = groupId; }
|
|
151
|
125
|
|
|
152
|
|
- public String getProblemDesc() { return problemDesc; }
|
|
153
|
|
- public void setProblemDesc(String problemDesc) { this.problemDesc = problemDesc; }
|
|
|
126
|
+ public Long getAreaId() { return areaId; }
|
|
|
127
|
+ public void setAreaId(Long areaId) { this.areaId = areaId; }
|
|
154
|
128
|
|
|
155
|
129
|
public String getLocation() { return location; }
|
|
156
|
130
|
public void setLocation(String location) { this.location = location; }
|
|
157
|
131
|
|
|
158
|
|
- public String getResultHandling() { return resultHandling; }
|
|
159
|
|
- public void setResultHandling(String resultHandling) { this.resultHandling = resultHandling; }
|
|
160
|
|
-
|
|
161
|
|
- public BigDecimal getDeductScore() { return deductScore; }
|
|
162
|
|
- public void setDeductScore(BigDecimal deductScore) { this.deductScore = deductScore; }
|
|
163
|
|
-
|
|
164
|
|
- public BigDecimal getAddScore() { return addScore; }
|
|
165
|
|
- public void setAddScore(BigDecimal addScore) { this.addScore = addScore; }
|
|
166
|
|
-
|
|
167
|
|
- public String getScoreDimension() { return scoreDimension; }
|
|
168
|
|
- public void setScoreDimension(String scoreDimension) { this.scoreDimension = scoreDimension; }
|
|
169
|
|
-
|
|
170
|
|
- public String getScoreIndicator() { return scoreIndicator; }
|
|
171
|
|
- public void setScoreIndicator(String scoreIndicator) { this.scoreIndicator = scoreIndicator; }
|
|
|
132
|
+ public String getChannelNo() { return channelNo; }
|
|
|
133
|
+ public void setChannelNo(String channelNo) { this.channelNo = channelNo; }
|
|
172
|
134
|
|
|
173
|
|
- public String getEvidenceFile() { return evidenceFile; }
|
|
174
|
|
- public void setEvidenceFile(String evidenceFile) { this.evidenceFile = evidenceFile; }
|
|
|
135
|
+ public String getPosition() { return position; }
|
|
|
136
|
+ public void setPosition(String position) { this.position = position; }
|
|
175
|
137
|
|
|
176
|
|
- public String getRemark() { return remark; }
|
|
177
|
|
- public void setRemark(String remark) { this.remark = remark; }
|
|
|
138
|
+ public Long getPositionId() { return positionId; }
|
|
|
139
|
+ public void setPositionId(Long positionId) { this.positionId = positionId; }
|
|
178
|
140
|
|
|
179
|
|
- public String getImportBatch() { return importBatch; }
|
|
180
|
|
- public void setImportBatch(String importBatch) { this.importBatch = importBatch; }
|
|
|
141
|
+ public String getInspectedName() { return inspectedName; }
|
|
|
142
|
+ public void setInspectedName(String inspectedName) { this.inspectedName = inspectedName; }
|
|
181
|
143
|
|
|
182
|
|
- public String getSourceType() { return sourceType; }
|
|
183
|
|
- public void setSourceType(String sourceType) { this.sourceType = sourceType; }
|
|
|
144
|
+ public Long getInspectedId() { return inspectedId; }
|
|
|
145
|
+ public void setInspectedId(Long inspectedId) { this.inspectedId = inspectedId; }
|
|
184
|
146
|
|
|
185
|
|
- public String getSyncFlag() { return syncFlag; }
|
|
186
|
|
- public void setSyncFlag(String syncFlag) { this.syncFlag = syncFlag; }
|
|
|
147
|
+ public String getProblemDesc() { return problemDesc; }
|
|
|
148
|
+ public void setProblemDesc(String problemDesc) { this.problemDesc = problemDesc; }
|
|
187
|
149
|
|
|
188
|
|
- // ========== 新增字段的getter/setter ==========
|
|
189
|
|
- public String getChannelNo() { return channelNo; }
|
|
190
|
|
- public void setChannelNo(String channelNo) { this.channelNo = channelNo; }
|
|
|
150
|
+ public String getServiceType() { return serviceType; }
|
|
|
151
|
+ public void setServiceType(String serviceType) { this.serviceType = serviceType; }
|
|
191
|
152
|
|
|
192
|
|
- public String getPosition() { return position; }
|
|
193
|
|
- public void setPosition(String position) { this.position = position; }
|
|
|
153
|
+ public String getResultHandling() { return resultHandling; }
|
|
|
154
|
+ public void setResultHandling(String resultHandling) { this.resultHandling = resultHandling; }
|
|
194
|
155
|
|
|
195
|
156
|
public String getProblemLevel() { return problemLevel; }
|
|
196
|
157
|
public void setProblemLevel(String problemLevel) { this.problemLevel = problemLevel; }
|
|
197
|
158
|
|
|
198
|
|
- public String getServiceContactPerson() { return serviceContactPerson; }
|
|
199
|
|
- public void setServiceContactPerson(String serviceContactPerson) { this.serviceContactPerson = serviceContactPerson; }
|
|
200
|
|
-
|
|
201
|
|
- public String getServicePushLeader() { return servicePushLeader; }
|
|
202
|
|
- public void setServicePushLeader(String servicePushLeader) { this.servicePushLeader = servicePushLeader; }
|
|
|
159
|
+ public String getEvidenceFile() { return evidenceFile; }
|
|
|
160
|
+ public void setEvidenceFile(String evidenceFile) { this.evidenceFile = evidenceFile; }
|
|
203
|
161
|
|
|
204
|
162
|
public String getRectificationStatus() { return rectificationStatus; }
|
|
205
|
163
|
public void setRectificationStatus(String rectificationStatus) { this.rectificationStatus = rectificationStatus; }
|
|
|
@@ -207,40 +165,27 @@ public class LedgerServicePatrol extends BaseEntity {
|
|
207
|
165
|
public String getEvidenceMaterial() { return evidenceMaterial; }
|
|
208
|
166
|
public void setEvidenceMaterial(String evidenceMaterial) { this.evidenceMaterial = evidenceMaterial; }
|
|
209
|
167
|
|
|
210
|
|
- public String getSendToRelevant() { return sendToRelevant; }
|
|
211
|
|
- public void setSendToRelevant(String sendToRelevant) { this.sendToRelevant = sendToRelevant; }
|
|
212
|
|
-
|
|
213
|
|
- public Integer getMonthlyProblemCount() { return monthlyProblemCount; }
|
|
214
|
|
- public void setMonthlyProblemCount(Integer monthlyProblemCount) { this.monthlyProblemCount = monthlyProblemCount; }
|
|
215
|
|
-
|
|
216
|
168
|
public String getCheckPersonnel() { return checkPersonnel; }
|
|
217
|
169
|
public void setCheckPersonnel(String checkPersonnel) { this.checkPersonnel = checkPersonnel; }
|
|
218
|
170
|
|
|
219
|
|
- public String getManageServiceManager() { return manageServiceManager; }
|
|
220
|
|
- public void setManageServiceManager(String manageServiceManager) { this.manageServiceManager = manageServiceManager; }
|
|
221
|
|
-
|
|
222
|
|
- public String getTeamInternalDuty() { return teamInternalDuty; }
|
|
223
|
|
- public void setTeamInternalDuty(String teamInternalDuty) { this.teamInternalDuty = teamInternalDuty; }
|
|
224
|
|
-
|
|
225
|
|
- public String getTeamLeader() { return teamLeader; }
|
|
226
|
|
- public void setTeamLeader(String teamLeader) { this.teamLeader = teamLeader; }
|
|
|
171
|
+ public BigDecimal getDeductScore() { return deductScore; }
|
|
|
172
|
+ public void setDeductScore(BigDecimal deductScore) { this.deductScore = deductScore; }
|
|
227
|
173
|
|
|
228
|
|
- // ========== ID字段的getter/setter ==========
|
|
229
|
|
- public Long getInspectedId() { return inspectedId; }
|
|
230
|
|
- public void setInspectedId(Long inspectedId) { this.inspectedId = inspectedId; }
|
|
|
174
|
+ public BigDecimal getAddScore() { return addScore; }
|
|
|
175
|
+ public void setAddScore(BigDecimal addScore) { this.addScore = addScore; }
|
|
231
|
176
|
|
|
232
|
|
- public Long getDeptId() { return deptId; }
|
|
233
|
|
- public void setDeptId(Long deptId) { this.deptId = deptId; }
|
|
|
177
|
+ public String getScoreDimension() { return scoreDimension; }
|
|
|
178
|
+ public void setScoreDimension(String scoreDimension) { this.scoreDimension = scoreDimension; }
|
|
234
|
179
|
|
|
235
|
|
- public Long getTeamId() { return teamId; }
|
|
236
|
|
- public void setTeamId(Long teamId) { this.teamId = teamId; }
|
|
|
180
|
+ public String getScoreIndicator() { return scoreIndicator; }
|
|
|
181
|
+ public void setScoreIndicator(String scoreIndicator) { this.scoreIndicator = scoreIndicator; }
|
|
237
|
182
|
|
|
238
|
|
- public Long getGroupId() { return groupId; }
|
|
239
|
|
- public void setGroupId(Long groupId) { this.groupId = groupId; }
|
|
|
183
|
+ public String getImportBatch() { return importBatch; }
|
|
|
184
|
+ public void setImportBatch(String importBatch) { this.importBatch = importBatch; }
|
|
240
|
185
|
|
|
241
|
|
- public Long getPositionId() { return positionId; }
|
|
242
|
|
- public void setPositionId(Long positionId) { this.positionId = positionId; }
|
|
|
186
|
+ public String getSourceType() { return sourceType; }
|
|
|
187
|
+ public void setSourceType(String sourceType) { this.sourceType = sourceType; }
|
|
243
|
188
|
|
|
244
|
|
- public Long getAreaId() { return areaId; }
|
|
245
|
|
- public void setAreaId(Long areaId) { this.areaId = areaId; }
|
|
246
|
|
-}
|
|
|
189
|
+ public String getSyncFlag() { return syncFlag; }
|
|
|
190
|
+ public void setSyncFlag(String syncFlag) { this.syncFlag = syncFlag; }
|
|
|
191
|
+}
|