Browse Source

Merge remote-tracking branch 'origin/dev_bugfix' into dev

dev_shibei_match
yinzuomei 5 years ago
parent
commit
be433248be
  1. 2
      epmet-module/data-report/data-report-server/src/main/resources/mapper/screen/ScreenCustomerAgencyDao.xml
  2. 4
      epmet-module/data-report/data-report-server/src/main/resources/mapper/screen/ScreenCustomerGridDao.xml
  3. 2
      epmet-module/data-report/data-report-server/src/main/resources/mapper/screen/ScreenDifficultyDataDao.xml

2
epmet-module/data-report/data-report-server/src/main/resources/mapper/screen/ScreenCustomerAgencyDao.xml

@ -73,7 +73,7 @@
<select id="selectUserDistributionAgency" resultType="com.epmet.evaluationindex.screen.dto.result.UserDistributionResultDTO"> <select id="selectUserDistributionAgency" resultType="com.epmet.evaluationindex.screen.dto.result.UserDistributionResultDTO">
SELECT SELECT
sutd.org_id AS subId, sutd.org_id AS subId,
sca.center_mark AS centerMark, IFNULL(sca.center_mark,'') AS centerMark,
sutd.user_total AS totalNum, sutd.user_total AS totalNum,
sca.area_marks AS areaMarks, sca.area_marks AS areaMarks,
sca.agency_name AS subName, sca.agency_name AS subName,

4
epmet-module/data-report/data-report-server/src/main/resources/mapper/screen/ScreenCustomerGridDao.xml

@ -23,7 +23,7 @@
SELECT SELECT
scg.grid_id AS gridId, scg.grid_id AS gridId,
scg.grid_name AS gridName, scg.grid_name AS gridName,
scg.party_mark AS partyMark IFNULL(scg.party_mark,'') AS partyMark
FROM FROM
screen_customer_grid scg screen_customer_grid scg
LEFT JOIN screen_customer_agency sca ON sca.AGENCY_ID = scg.PARENT_AGENCY_ID AND sca.IS_DISPLAY = 1 LEFT JOIN screen_customer_agency sca ON sca.AGENCY_ID = scg.PARENT_AGENCY_ID AND sca.IS_DISPLAY = 1
@ -37,7 +37,7 @@
<select id="selectUserDistribution" resultType="com.epmet.evaluationindex.screen.dto.result.UserDistributionResultDTO"> <select id="selectUserDistribution" resultType="com.epmet.evaluationindex.screen.dto.result.UserDistributionResultDTO">
SELECT SELECT
sutd.org_id AS subId, sutd.org_id AS subId,
scg.center_mark AS centerMark, IFNULL(scg.center_mark,'') AS centerMark,
sutd.user_total AS totalNum, sutd.user_total AS totalNum,
scg.area_marks AS areaMarks, scg.area_marks AS areaMarks,
scg.grid_name AS subName, scg.grid_name AS subName,

2
epmet-module/data-report/data-report-server/src/main/resources/mapper/screen/ScreenDifficultyDataDao.xml

@ -12,7 +12,7 @@
ROUND(diff.EVENT_COST_TIME/60,0) AS totalHours, ROUND(diff.EVENT_COST_TIME/60,0) AS totalHours,
diff.EVENT_SOURCE AS gridName, diff.EVENT_SOURCE AS gridName,
diff.EVENT_IMG_URL AS imgUrl, diff.EVENT_IMG_URL AS imgUrl,
diff.EVENT_CATEGORY_NAME AS categoryName, IFNULL(diff.EVENT_CATEGORY_NAME,'') AS categoryName,
diff.EVENT_RE_ORG AS handleDepts, diff.EVENT_RE_ORG AS handleDepts,
diff.EVENT_RE_ORG AS handleCount diff.EVENT_RE_ORG AS handleCount
FROM FROM

Loading…
Cancel
Save