数据资源统计修改1

This commit is contained in:
dinggang 2022-06-24 20:49:20 +08:00
parent dfd3cbadb6
commit 274e1bbfa8
2 changed files with 4 additions and 4 deletions

View File

@ -383,7 +383,7 @@ public class CensusControllerV2 {
result.add(new HashMap<String, Object>() { result.add(new HashMap<String, Object>() {
{ {
put("amount", 0L); put("amount", 0L);
put("type", "总数据"); put("type", "总数据");
} }
}); });
result.add(new HashMap<String, Object>() { result.add(new HashMap<String, Object>() {
@ -412,7 +412,7 @@ public class CensusControllerV2 {
result.add(new HashMap<String, Object>() { result.add(new HashMap<String, Object>() {
{ {
put("amount", dataResource.get("rows")); put("amount", dataResource.get("rows"));
put("type", "总数据"); put("type", "总数据");
} }
}); });
result.add(new HashMap<String, Object>() { result.add(new HashMap<String, Object>() {
@ -455,7 +455,7 @@ public class CensusControllerV2 {
result.add(new HashMap<String, Object>() { result.add(new HashMap<String, Object>() {
{ {
put("amount", finalTotal); put("amount", finalTotal);
put("type", "总数据"); put("type", "总数据");
} }
}); });
} }

View File

@ -401,7 +401,7 @@ public class ResourceServiceImpl extends CrudServiceImpl<ResourceDao, ResourceEn
Long finalTotal = total; Long finalTotal = total;
re.add(new HashMap<String, Object>() { re.add(new HashMap<String, Object>() {
{ {
put("amount", finalTotal); put("count", finalTotal);
put("type", "数据资源"); put("type", "数据资源");
} }
}); });