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
             if (null == res) res = new HashMap<>();
112
             if (null == res) res = new HashMap<>();
113
             result.add(new StatVo().setName("未处理").setValue(getStatValueBy(res.get("unassigned_num"), 0)));
113
             result.add(new StatVo().setName("未处理").setValue(getStatValueBy(res.get("unassigned_num"), 0)));
114
             result.add(new StatVo().setName("已处理").setValue(getStatValueBy(res.get("assigned_num"), 0) + getStatValueBy(res.get("end_num"), 0)));
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
         return result;
118
         return result;