| | |
| | | AND e.event_type = 5 |
| | | AND e.event_process_status = 2 |
| | | <if test="statisticsDTO.gridId!=null"> |
| | | AND grid_id = #{statisticsDTO.gridId} |
| | | AND e.grid_id = #{statisticsDTO.gridId} |
| | | </if> |
| | | <if test='statisticsDTO.startTime != null and statisticsDTO.startTime != ""'> |
| | | AND create_at <![CDATA[ >= ]]> #{statisticsDTO.startTime} |
| | | AND e.create_at <![CDATA[ >= ]]> #{statisticsDTO.startTime} |
| | | </if> |
| | | <if test='statisticsDTO.endTime != null and statisticsDTO.endTime != ""'> |
| | | AND create_at <![CDATA[ <= ]]> #{statisticsDTO.endTime} |
| | | AND e.create_at <![CDATA[ <= ]]> #{statisticsDTO.endTime} |
| | | </if> |
| | | </select> |
| | | |