You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1.5 KiB
30 lines
1.5 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<!DOCTYPE mapper
|
|
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
|
<mapper namespace="com.zc.business.mapper.DcPerceivedEventsWarningMapper">
|
|
|
|
|
|
<select id="perceivedEventsWarningNum" resultType="java.lang.Integer">
|
|
select count(1) from dc_warning
|
|
</select>
|
|
<select id="perceivedEventsWarningHistoryNum" resultType="java.lang.Integer">
|
|
select count(1) from dc_warning_history
|
|
</select>
|
|
<select id="selectEventTypeList" resultType="com.zc.business.domain.DcEventType">
|
|
select event_type, event_name from dc_event_type
|
|
</select>
|
|
<select id="selectWarningTypeList" resultType="java.util.HashMap">
|
|
select event_type eventType,event_subclass eventSubclass from dc_event
|
|
</select>
|
|
<select id="selectPerceivedEventsList" resultType="com.zc.business.domain.DcWarning">
|
|
select `id`,`stake_mark_id`, `direction`,`dept_id`, `warning_state`,`warning_time`,`user_id`,
|
|
`warning_source`,`warning_level`, `remark`, `create_time`,`update_time`,`warning_type`,
|
|
`warning_subclass`,`warning_title`,`other_config` from dc_warning
|
|
<where>
|
|
<if test="warningType != null and warningType != ''"> and warning_type = #{warningType}</if>
|
|
<if test="warningSubclass != null and warningSubclass != ''"> and warning_subclass = #{warningSubclass}</if>
|
|
</where>
|
|
</select>
|
|
|
|
</mapper>
|