济菏高速数据中心代码
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.
 
 
 
 
 

420 lines
23 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.DcWarningMapper">
<resultMap type="DcWarning" id="DcWarningResult">
<result property="id" column="id" />
<result property="stakeMark" column="stake_mark" />
<result property="direction" column="direction" />
<result property="deptId" column="dept_id" />
<result property="warningState" column="warning_state" />
<result property="warningTime" column="warning_time" />
<result property="userId" column="user_id" />
<result property="warningSource" column="warning_source" />
<result property="warningLevel" column="warning_level" />
<result property="remark" column="remark" />
<result property="createTime" column="create_time" />
<result property="updateTime" column="update_time" />
<result property="warningType" column="warning_type" />
<result property="warningSubclass" column="warning_subclass" />
<result property="warningTitle" column="warning_title" />
<result property="otherConfig" column="other_config" />
<result property="lane" column="lane" />
<result property="vehicleType" column="vehicle_type" />
<result property="relieveReason" column="relieve_reason" />
<result property="relieveType" column="relieve_type" />
</resultMap>
<resultMap type="map" id="eventMap">
<result property="targetId" column="targetId" />
<result property="coordinate" column="coordinate" />
<result property="warningSubclass" column="warning_subclass" />
<result property="warningtype" column="warning_type" />
<result property="stakeMark" column="stake_mark" />
<result property="Id" column="id" />
</resultMap>
<sql id="selectDcWarningVo">
select id, stake_mark stakeMark, direction, dept_id deptId,
warning_state warningState,vehicle_type vehicleType,
DATE_FORMAT(warning_time,'%Y-%m-%d %H:%m:%s')warningTime,
user_id userId, warning_source warningSource, warning_level warningLevel,
remark, DATE_FORMAT(create_time,'%Y-%m-%d %H:%m:%s')createTime,
DATE_FORMAT(update_time,'%Y-%m-%d %H:%m:%s')updateTime,
warning_type warningType, warning_subclass warningSubclass, warning_title warningTitle,
other_config otherConfig, lane from dc_warning
</sql>
<select id="selectDcWarningList" parameterType="DcWarning" resultType="hashmap">
<include refid="selectDcWarningVo"/>
<where>
<if test="stakeMark != null and stakeMark != ''"> and stake_mark = #{stakeMark}</if>
<if test="direction != null and direction != ''"> and direction = #{direction}</if>
<if test="deptId != null "> and dept_id = #{deptId}</if>
<if test="warningState != null "> and warning_state = #{warningState}</if>
<if test="warningTime != null "> and warning_time = #{warningTime}</if>
<if test="userId != null "> and user_id = #{userId}</if>
<if test="warningSource != null "> and warning_source = #{warningSource}</if>
<if test="warningLevel != null "> and warning_level = #{warningLevel}</if>
<if test="warningType != null "> and warning_type = #{warningType}</if>
<if test="warningSubclass != null and warningSubclass != ''"> and warning_subclass = #{warningSubclass}</if>
<if test="warningTitle != null and warningTitle != ''"> and warning_title = #{warningTitle}</if>
<if test="otherConfig != null and otherConfig != ''"> and other_config = #{otherConfig}</if>
<if test="lane != null and lane != ''"> and lane = #{lane}</if>
<if test="startDate != null and startDate != ''"> and date_format(warning_time,'%Y-%m-%d') >= #{startDate}</if>
<if test="endDate != null and endDate != ''"> and date_format(warning_time,'%Y-%m-%d') &lt;= #{endDate}</if>
</where>
</select>
<select id="selectDcWarningById" parameterType="string" resultType="hashmap">
<include refid="selectDcWarningVo"/>
where id = #{id}
</select>
<select id="export" resultType="com.zc.business.domain.DcWarning">
SELECT warning.`id`,warning.`stake_mark`, warning.`direction`,warning.end_time,warning.event_cause,
warning.lane,warning.vehicle_type,mark.longitude,mark.latitude,
warning.`dept_id`,warning.`warning_state`,warning.`warning_time`,
warning.`user_id`, warning.`warning_source`,warning.`warning_level`,
warning.`remark`, warning.`create_time`,warning.`update_time`,
warning.`warning_type`,warning.`warning_subclass`,warning.`warning_title`,
warning.`other_config` FROM dc_warning AS warning
LEFT JOIN dc_stake_mark AS mark ON mark.stake_mark=warning.stake_mark and warning.direction =mark.direction
<where>
<if test="warningSource == null || warningSource == ''">and warning.warning_source !=6</if>
<if test="warningSource != null and warningSource != ''">and warning.warning_source = #{warningSource}</if>
<if test="warningState != null and warningState != ''">and warning.warning_state = #{warningState}</if>
<if test="warningType != null and warningType != ''">and warning.warning_type = #{warningType}</if>
<if test="warningSubclass != null and warningSubclass != ''">and warning.warning_subclass =
#{warningSubclass}
</if>
<if test="direction != null and direction != ''">and warning.direction = #{direction}</if>
<if test="stakeMark != null and stakeMark != ''">and warning.stake_mark = #{stakeMark}</if>
<if test="startTime != null and completeTime != null ">
and warning.warning_time between #{startTime} and #{completeTime}
</if>
<if test="startStakeMark != null and startStakeMark != ''">
and CAST(SUBSTRING(SUBSTRING_INDEX(warning.stake_mark,'+',1),2)AS UNSIGNED)*1000
+CAST(SUBSTRING_INDEX(warning.stake_mark, '+', -1) AS UNSIGNED)&gt;#{startStakeMark}
</if>
<if test=" endStakeMark != null and endStakeMark != '' ">
and CAST(SUBSTRING(SUBSTRING_INDEX(warning.stake_mark,'+',1),2)AS UNSIGNED)*1000
+CAST(SUBSTRING_INDEX(warning.stake_mark, '+', -1) AS UNSIGNED)&lt;#{endStakeMark}
</if>
</where>
</select>
<insert id="insertDcWarning" parameterType="DcWarning" useGeneratedKeys="true" keyProperty="id">
insert into dc_warning
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="id != null">id,</if>
<if test="stakeMark != null and stakeMark != ''">stake_mark,</if>
<if test="direction != null">direction,</if>
<if test="deptId != null">dept_id,</if>
<if test="warningState != null">warning_state,</if>
<if test="warningTime != null">warning_time,</if>
<if test="userId != null">user_id,</if>
<if test="warningSource != null">warning_source,</if>
<if test="warningLevel != null">warning_level,</if>
<if test="remark != null">remark,</if>
<if test="createTime != null">create_time,</if>
<if test="updateTime != null">update_time,</if>
<if test="warningType != null">warning_type,</if>
<if test="warningSubclass != null">warning_subclass,</if>
<if test="warningTitle != null">warning_title,</if>
<if test="otherConfig != null">other_config,</if>
<if test="lane != null">lane,</if>
<if test="vehicleType != null">vehicle_type,</if>
<if test="endTime != null">end_time,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="id != null">#{id},</if>
<if test="stakeMark != null and stakeMark != ''">#{stakeMark},</if>
<if test="direction != null">#{direction},</if>
<if test="deptId != null">#{deptId},</if>
<if test="warningState != null">#{warningState},</if>
<if test="warningTime != null">#{warningTime},</if>
<if test="userId != null">#{userId},</if>
<if test="warningSource != null">#{warningSource},</if>
<if test="warningLevel != null">#{warningLevel},</if>
<if test="remark != null">#{remark},</if>
<if test="createTime != null">#{createTime},</if>
<if test="updateTime != null">#{updateTime},</if>
<if test="warningType != null">#{warningType},</if>
<if test="warningSubclass != null">#{warningSubclass},</if>
<if test="warningTitle != null">#{warningTitle},</if>
<if test="otherConfig != null">#{otherConfig},</if>
<if test="lane != null">#{lane},</if>
<if test="vehicleType != null">#{vehicleType},</if>
<if test="endTime != null">#{endTime},</if>
</trim>
</insert>
<insert id="insertDispatchResource" parameterType="DcDispatchResource">
insert into dc_dispatch_resource
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="id != null">id,</if>
<if test="dispatchType != null">dispatch_type,</if>
<if test="resourceId != null">resource_id,</if>
<if test="dispatchId != null">dispatch_id,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="id != null">#{id},</if>
<if test="dispatchType != null">#{dispatchType},</if>
<if test="resourceId != null">#{resourceId},</if>
<if test="dispatchId != null">#{dispatchId},</if>
</trim>
</insert>
<insert id="insertDcDispatch" parameterType="DcDispatch" useGeneratedKeys="true" keyProperty="id">
insert into dc_dispatch
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="id != null">id,</if>
<if test="organizationId != null">organization_id,</if>
<if test="eventId != null and eventId != ''">event_id,</if>
<if test="dispatchName != null">dispatch_name,</if>
<if test="dispatchStatus != null">dispatch_status,</if>
<if test="startTime != null">start_time,</if>
<if test="endTime != null">end_time,</if>
<if test="remark != null">remark,</if>
<if test="deptId != null">dept_id,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="id != null">#{id},</if>
<if test="organizationId != null">#{organizationId},</if>
<if test="eventId != null and eventId != ''">#{eventId},</if>
<if test="dispatchName != null">#{dispatchName},</if>
<if test="dispatchStatus != null">#{dispatchStatus},</if>
<if test="startTime != null">#{startTime},</if>
<if test="endTime != null">#{endTime},</if>
<if test="remark != null">#{remark},</if>
<if test="deptId != null">#{deptId},</if>
</trim>
</insert>
<update id="updateDcWarning" parameterType="DcWarning">
update dc_warning
<trim prefix="SET" suffixOverrides=",">
<if test="stakeMark != null and stakeMark != ''">stake_mark = #{stakeMark},</if>
<if test="direction != null">direction = #{direction},</if>
<if test="deptId != null">dept_id = #{deptId},</if>
<if test="warningState != null">warning_state = #{warningState},</if>
<if test="warningTime != null">warning_time = #{warningTime},</if>
<if test="userId != null">user_id = #{userId},</if>
<if test="warningSource != null">warning_source = #{warningSource},</if>
<if test="warningLevel != null">warning_level = #{warningLevel},</if>
<if test="remark != null">remark = #{remark},</if>
<if test="createTime != null">create_time = #{createTime},</if>
<if test="updateTime != null">update_time = #{updateTime},</if>
<if test="warningType != null">warning_type = #{warningType},</if>
<if test="warningSubclass != null">warning_subclass = #{warningSubclass},</if>
<if test="warningTitle != null">warning_title = #{warningTitle},</if>
<if test="otherConfig != null">other_config = #{otherConfig},</if>
<if test="lane != null">lane = #{lane},</if>
<if test="vehicleType != null">vehicle_type = #{vehicleType},</if>
</trim>
where id = #{id}
</update>
<update id="updateState">
update dc_warning set warning_state=2,user_id=#{userId} where id=#{id}
</update>
<update id="batchUpdateState">
update dc_warning set warning_state = 2,user_id = #{userId}
where id in
<foreach collection="dcWarningList" item="item" index="index"
separator="," open="(" close=")">
#{item.id}
</foreach>
</update>
<update id="updateOtherConfig">
update dc_warning set other_config=#{otherConfig},update_time=now(),end_time=#{endTime} where id=#{id}
</update>
<update id="updateEndSection">
update dc_warning set warning_state = 4
where id in
<foreach collection="dcWarningList" item="item" index="index"
separator="," open="(" close=")">
#{item.id}
</foreach>
</update>
<update id="updateDcDispatch">
update dc_dispatch set organization_id=#{organization_id} where id=#{id}
</update>
<update id="falseAlarmResolution">
update dc_warning
<trim prefix="SET" suffixOverrides=",">
<if test="relieveReason != null and relieveReason != ''">relieve_reason = #{relieveReason},</if>
<if test="relieveType != null">relieve_type = #{relieveType},</if>
<if test="updateTime != null">update_time = #{updateTime},</if>
warning_state=3
</trim>
where id = #{id}
</update>
<delete id="deleteDcWarningById" parameterType="Integer">
delete from dc_warning where id = #{id}
</delete>
<delete id="deleteDcWarningByIds" parameterType="String">
delete from dc_warning where id= #{id}
</delete>
<delete id="deleteDcWarningByStringId">
delete from dc_warning where id= #{id}
</delete>
<delete id="batchDelete">
delete from dc_warning
where id in
<foreach collection="dcWarningList" item="item" index="index"
separator="," open="(" close=")">
#{item.id}
</foreach>
</delete>
<delete id="deleteDispatchResource">
delete from dc_dispatch_resource where dispatch_id=#{dispatchId}
</delete>
<select id="selectCount" resultType="int">
SELECT COUNT(*)AS count FROM dc_warning
</select>
<select id="selectDcWarningoTherConfig" parameterType="DcWarning" resultType="map" resultMap="eventMap">
SELECT id,stake_mark,warning_type,warning_subclass, other_config->'$.coordinate' AS coordinate ,other_config->'$.targetId' AS targetId
FROM dc_warning
<where>
<if test="stakeMark != null and stakeMark != ''"> and stake_mark = #{stakeMark}</if>
<if test="warningState != null "> and warning_state = #{warningState}</if>
<if test="warningSource != null "> and warning_source = #{warningSource}</if>
<if test="warningType != null "> and warning_type = #{warningType}</if>
<if test="warningSubclass != null and warningSubclass != ''"> and warning_subclass = #{warningSubclass}</if>
</where>
</select>
<select id="selectDcWaringStrategyList" resultType="com.zc.business.domain.DcWaringStrategy">
select id, warning_source, warning_type, warning_subclass, strategy,priority,
strategy_time, create_by, create_time,
update_by, update_time from dc_waring_strategy
<where>
<if test="warningSource != null "> and warning_source = #{warningSource}</if>
<if test="warningType != null "> and warning_type = #{warningType}</if>
<if test="warningSubclass != null and warningSubclass != ''"> and warning_subclass = #{warningSubclass}</if>
<if test="strategy != null "> and strategy = #{strategy}</if>
</where>
</select>
<select id="selectEndSection" resultType="com.zc.business.domain.DcWarning">
select id from dc_warning where YEAR(end_time) = YEAR(CURDATE()) and warning_state!=4 and now()>end_time
</select>
<select id="selectSectionId" resultType="java.lang.Long">
select section_id from dc_satke_mark where stake_mark=#{stakeMark} and direction=#{direction}
</select>
<select id="selectRecentlySection" resultType="hashmap">
select id,organization_name organizationName,stake_mark stakeMark from dc_organization
where parent_id!=0
</select>
<select id="selectOrganizationEmployees" resultType="java.util.HashMap">
select id, name,contact_number contactNumber from dc_employees where organization_id=#{organizationId} and employees_type=2
</select>
<select id="selectShifts" resultType="java.util.HashMap">
select shifts.scheduling,employees.name shiftsName,employees.contact_number shiftsNumber from dc_shifts as shifts
left join dc_employees as employees on shifts.employees_id=employees.id
where shifts.station=#{station} and DATE(date) = CURDATE();
</select>
<select id="selectVehicles" resultType="java.util.HashMap">
select id,vehicle_type vehicleType,vehicle_plate vehiclePlate from dc_vehicles
where vehicle_status=1 and organization_id=#{organizationId}
</select>
<select id="selectDcDispatch" resultType="java.util.HashMap">
select dc_dispatch.id id,sys_dept.dept_name deptName
from dc_dispatch
left join dc_organization on dc_dispatch.organization_id=dc_organization.id
LEFT JOIN sys_dept on sys_dept.dept_id=dc_dispatch.dept_id
where event_id=#{eventId}
</select>
<select id="selectDispatchResource" resultType="java.util.HashMap">
SELECT DISTINCT
dc_dispatch_resource.resource_id resourceId,
dc_dispatch_resource.dispatch_type dispatchType,
CASE
WHEN dc_dispatch_resource.dispatch_type = 1 THEN dc_employees.name
WHEN dc_dispatch_resource.dispatch_type = 2 THEN dc_vehicles.vehicle_type
ELSE NULL
END AS resourceName,
CASE
WHEN dc_dispatch_resource.dispatch_type = 1 THEN dc_employees.contact_number
WHEN dc_dispatch_resource.dispatch_type = 2 THEN dc_vehicles.vehicle_plate
ELSE NULL
END AS resourceValue
FROM
dc_dispatch_resource
LEFT JOIN dc_employees ON dc_dispatch_resource.resource_id = dc_employees.id AND dc_dispatch_resource.dispatch_type = 1
LEFT JOIN dc_vehicles ON dc_dispatch_resource.resource_id = dc_vehicles.id AND dc_dispatch_resource.dispatch_type = 2
where dc_dispatch_resource.dispatch_id=#{dispatchId}
</select>
<select id="selectShiftsEmployeesToday" resultType="java.util.HashMap">
select DISTINCT employees.name shiftsName,employees.contact_number shiftsNumber from dc_shifts as shifts
left join dc_employees as employees on shifts.employees_id=employees.id
where DATE(date) = CURDATE();
</select>
<select id="selectShiftsEmployees" resultType="java.util.HashMap">
select shifts.name shiftsName,shifts.contact_number shiftsNumber
from dc_employees as shifts
</select>
<select id="selectEmployeesDispatch" resultType="java.util.HashMap">
SELECT DISTINCT dc_employees.id,
dc_employees.name,
dc_employees.contact_number AS contactNumber,
CASE
WHEN t.id IS NOT NULL THEN 1 -- 连接成立
ELSE 0 -- 连接不成立
END AS state
from dc_employees
LEFT JOIN(
select employees.id id, employees.name, employees.contact_number contactNumber
from dc_employees as employees
left JOIN dc_dispatch_resource as respurce on respurce.resource_id = employees.id
LEFT JOIN dc_dispatch as path on path.id = respurce.dispatch_id
where employees.organization_id = #{organizationId}
and employees.employees_type = 2
and respurce.dispatch_type = 1
and path.event_id = #{eventId}) as t on t.id = dc_employees.id
where organization_id = #{organizationId}
</select>
<select id="selectVehiclesDispatch" resultType="java.util.HashMap">
select DISTINCT dc_vehicles.id,
dc_vehicles.vehicle_type vehicleType,
dc_vehicles.vehicle_plate vehiclePlate,
CASE
WHEN t.id IS NOT NULL THEN 1 -- 连接成立
ELSE 0 -- 连接不成立
END AS state
from dc_vehicles
LEFT JOIN(
select vehicles.id, vehicles.vehicle_type vehicleType, vehicles.vehicle_plate vehiclePlate
from dc_vehicles as vehicles
LEFT JOIN dc_dispatch_resource as resource on resource.resource_id = vehicles.id
LEFT JOIN dc_dispatch as path on path.id = resource.dispatch_id
where vehicles.organization_id = #{organizationId}
and vehicles.vehicle_status = 1
and resource.dispatch_type = 2
and path.event_id = #{eventId}) as t on t.id = dc_vehicles.id
where vehicle_status = 1
and organization_id = #{organizationId}
</select>
<select id="selectOrganization" resultType="java.util.HashMap">
select id from dc_organization where parent_id=0;
</select>
<select id="selectEmployeesChoice" resultType="java.util.HashMap">
select DISTINCT employees.id,employees.`name` from dc_dispatch_resource as resource
LEFT JOIN dc_employees as employees on resource.resource_id=employees.id
WHERE resource.dispatch_id=#{dispatchId} and resource.dispatch_type=1
</select>
<select id="selectVehiclesChoice" resultType="java.util.HashMap">
select DISTINCT vehicle.id,vehicle.vehicle_type vehicleType,vehicle.vehicle_plate vehiclePlate from dc_dispatch_resource as resource
LEFT JOIN dc_vehicles as vehicle on resource.resource_id=vehicle.id
WHERE resource.dispatch_id=#{dispatchId} and resource.dispatch_type=2
</select>
<select id="selectDcDispatchById" resultType="com.zc.business.domain.DcDispatch">
select * from dc_dispatch where id = #{id}
</select>
</mapper>