diff --git a/epmet-module/data-report/data-report-server/src/main/resources/mapper/project/ProjectDao.xml b/epmet-module/data-report/data-report-server/src/main/resources/mapper/project/ProjectDao.xml
index 6a0a73c526..cd08762de4 100644
--- a/epmet-module/data-report/data-report-server/src/main/resources/mapper/project/ProjectDao.xml
+++ b/epmet-module/data-report/data-report-server/src/main/resources/mapper/project/ProjectDao.xml
@@ -86,7 +86,7 @@
da.agency_name AS "name",
IFNULL(fapd.pending_total,0) AS "value",
"处理中" AS "type",
- IFNULL(fapd.project_total,0)
+ IFNULL(fapd.project_total,0) AS "projectTotal"
FROM
fact_agency_project_daily fapd
LEFT JOIN dim_agency da ON fapd.agency_id = da.id
@@ -102,7 +102,7 @@
da.agency_name AS "name",
IFNULL(fapd.closed_total,0) AS "value",
"已结案" AS "type",
- IFNULL(fapd.project_total,0)
+ IFNULL(fapd.project_total,0) AS "projectTotal"
FROM
fact_agency_project_daily fapd
LEFT JOIN dim_agency da ON fapd.agency_id = da.id
@@ -113,7 +113,7 @@
)
) a
ORDER BY
- a.project_total DESC
+ a.projectTotal DESC