数据资源统计修改1
This commit is contained in:
parent
dfd3cbadb6
commit
274e1bbfa8
|
@ -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", "总数据数");
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
@ -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", "数据资源");
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue