From 1e5e59e965012dd46d5cde0625e9f90e1d976ac3 Mon Sep 17 00:00:00 2001 From: sunyuchao Date: Fri, 3 Jul 2020 10:25:45 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A1=B9=E7=9B=AE=E6=95=B0=E6=8D=AE=E6=9F=A5?= =?UTF-8?q?=E8=AF=A2bug=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/resources/mapper/project/ProjectDao.xml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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