Yansen 6 个月前
父节点
当前提交
de58065be7
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      src/main/java/com/example/civilizedcity/service/impl/TaIssueServiceImpl.java

+ 1
- 1
src/main/java/com/example/civilizedcity/service/impl/TaIssueServiceImpl.java 查看文件

@@ -112,7 +112,7 @@ public class TaIssueServiceImpl extends BaseServiceImpl<TaIssueMapper, TaIssue>
112 112
             if (null == res) res = new HashMap<>();
113 113
             result.add(new StatVo().setName("未处理").setValue(getStatValueBy(res.get("unassigned_num"), 0)));
114 114
             result.add(new StatVo().setName("已处理").setValue(getStatValueBy(res.get("assigned_num"), 0) + getStatValueBy(res.get("end_num"), 0)));
115
-            result.add(new StatVo().setName("已回").setValue(getStatValueBy(res.get("reject_num"), 0)));
115
+            result.add(new StatVo().setName("已退回").setValue(getStatValueBy(res.get("reject_num"), 0)));
116 116
         }
117 117
 
118 118
         return result;