Browse Source

难点堵点加分数字段

dev
zxc 4 years ago
parent
commit
13bd6e4340
  1. 5
      epmet-module/data-report/data-report-server/src/main/resources/mapper/project/ProjectDao.xml

5
epmet-module/data-report/data-report-server/src/main/resources/mapper/project/ProjectDao.xml

@ -279,7 +279,12 @@
floor(diff.EVENT_COST_TIME/60) AS totalHours,
diff.EVENT_RE_ORG AS reOrg,
diff.EVENT_HANDLED_COUNT AS handledCount,
<if test="status!= null and status == 'pending'">
spd.SATISFACTION_SCORE AS score
</if>
<if test="status!= null and status == 'closed'">
IFNULL(spd.SATISFACTION_SCORE,80) AS score
</if>
FROM
(
select scg.AREA_CODE,sdd1.* from screen_difficulty_data sdd1

Loading…
Cancel
Save