Browse Source

网格员项目统计修改

dev
zhaoqifeng 3 years ago
parent
commit
d8bca58fee
  1. 6
      epmet-module/data-aggregator/data-aggregator-server/src/main/resources/mapper/govproject/ProjectDao.xml

6
epmet-module/data-aggregator/data-aggregator-server/src/main/resources/mapper/govproject/ProjectDao.xml

@ -470,6 +470,9 @@
<if test="'grid' == orgType">
AND GRID_ID = #{orgId}
</if>
<if test="'agency' == orgType">
AND ORG_ID_PATH LIKE concat('%', #{orgId}, '%')
</if>
<if test="null != startDate and '' != startDate">
AND DATE_FORMAT(CREATED_TIME,"%Y%m%d%H%i%s") <![CDATA[ >= ]]> #{startDate}
</if>
@ -492,6 +495,9 @@
<if test="'grid' == orgType">
AND GRID_ID = #{orgId}
</if>
<if test="'agency' == orgType">
AND ORG_ID_PATH LIKE concat('%', #{orgId}, '%')
</if>
<if test="null != startDate and '' != startDate">
AND DATE_FORMAT(CREATED_TIME,"%Y%m%d%H%i%s") <![CDATA[ >= ]]> #{startDate}
</if>

Loading…
Cancel
Save