|
@@ -85,7 +85,7 @@ public class TaIssueServiceImpl extends BaseServiceImpl<TaIssueMapper, TaIssue>
|
85
|
85
|
else if (Constants.DUTY_QUERY_PERSON.equals(duty)) {
|
86
|
86
|
Map<String, Object> res = baseMapper.statMaIndex(null);
|
87
|
87
|
result.add(new StatVo().setName("未处理").setValue(getStatValueBy(res.get("unassigned_num"), 0)));
|
88
|
|
- result.add(new StatVo().setName("已处理").setValue(getStatValueBy(res.get("assigned_num"), 0)));
|
|
88
|
+ result.add(new StatVo().setName("处理中").setValue(getStatValueBy(res.get("assigned_num"), 0)));
|
89
|
89
|
result.add(new StatVo().setName("已办结").setValue(getStatValueBy(res.get("end_num"), 0)));
|
90
|
90
|
}
|
91
|
91
|
|