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.
185 lines
12 KiB
185 lines
12 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.DcEventAccidentMapper">
|
|
<resultMap type="com.zc.business.domain.DcEventAccident" id="DcEventAccidentResult">
|
|
<result property="id" column="id" />
|
|
<result property="reporterName" column="reporter_name" />
|
|
<result property="reporterPhoneNumber" column="reporter_phone_number" />
|
|
<result property="accidentType" column="accident_type" />
|
|
<result property="locationType" column="location_type" />
|
|
<result property="trafficJam" column="traffic_jam" />
|
|
<result property="weatherCondition" column="weather_condition" />
|
|
<result property="impactLevel" column="impact_level" />
|
|
<result property="isReverseCargo" column="is_reverse_cargo" />
|
|
<result property="isMaintenance" column="is_maintenance" />
|
|
<result property="policeContact" column="police_contact" />
|
|
<result property="towingServiceContact" column="towing_service_contact" />
|
|
<result property="congestionAhead" column="congestion_ahead" />
|
|
<result property="atIntersection" column="at_intersection" />
|
|
<result property="onCurve" column="on_curve" />
|
|
<result property="spillageItem" column="spillage_item" />
|
|
<result property="vehicleOwnerPhone" column="vehicle_owner_phone" />
|
|
<result property="smallCar" column="small_car" />
|
|
<result property="trucks" column="trucks" />
|
|
<result property="buses" column="buses" />
|
|
<result property="tankers" column="tankers" />
|
|
<result property="minorInjuries" column="minor_injuries" />
|
|
<result property="seriousInjuries" column="serious_injuries" />
|
|
<result property="fatalities" column="fatalities" />
|
|
<result property="isPrivate" column="is_private" />
|
|
<result property="facilityId" column="facility_id" />
|
|
<result property="rampId" column="ramp_id" />
|
|
<result property="location" column="location" />
|
|
</resultMap>
|
|
|
|
<sql id="selectDcEventAccidentVo">
|
|
select id, reporter_name, reporter_phone_number, accident_type, location_type, traffic_jam, weather_condition, impact_level, is_reverse_cargo, is_maintenance, police_contact, towing_service_contact, congestion_ahead, at_intersection, on_curve, spillage_item, vehicle_owner_phone, small_car, trucks, buses, tankers, minor_injuries, serious_injuries, fatalities, is_private, facility_id,location,ramp_id from dc_event_accident
|
|
</sql>
|
|
|
|
<select id="selectDcEventAccidentList" parameterType="DcEventAccident" resultMap="DcEventAccidentResult">
|
|
<include refid="selectDcEventAccidentVo"/>
|
|
<where>
|
|
<if test="reporterName != null and reporterName != ''"> and reporter_name like concat('%', #{reporterName}, '%')</if>
|
|
<if test="reporterPhoneNumber != null and reporterPhoneNumber != ''"> and reporter_phone_number = #{reporterPhoneNumber}</if>
|
|
<if test="accidentType != null "> and accident_type = #{accidentType}</if>
|
|
<if test="locationType != null "> and location_type = #{locationType}</if>
|
|
<if test="trafficJam != null "> and traffic_jam = #{trafficJam}</if>
|
|
<if test="weatherCondition != null "> and weather_condition = #{weatherCondition}</if>
|
|
<if test="impactLevel != null "> and impact_level = #{impactLevel}</if>
|
|
<if test="isReverseCargo != null "> and is_reverse_cargo = #{isReverseCargo}</if>
|
|
<if test="isMaintenance != null "> and is_maintenance = #{isMaintenance}</if>
|
|
<if test="policeContact != null "> and police_contact = #{policeContact}</if>
|
|
<if test="towingServiceContact != null "> and towing_service_contact = #{towingServiceContact}</if>
|
|
<if test="congestionAhead != null "> and congestion_ahead = #{congestionAhead}</if>
|
|
<if test="atIntersection != null "> and at_intersection = #{atIntersection}</if>
|
|
<if test="onCurve != null "> and on_curve = #{onCurve}</if>
|
|
<if test="spillageItem != null and spillageItem != ''"> and spillage_item = #{spillageItem}</if>
|
|
<if test="vehicleOwnerPhone != null and vehicleOwnerPhone != ''"> and vehicle_owner_phone = #{vehicleOwnerPhone}</if>
|
|
<if test="smallCar != null "> and small_car = #{smallCar}</if>
|
|
<if test="trucks != null "> and trucks = #{trucks}</if>
|
|
<if test="buses != null "> and buses = #{buses}</if>
|
|
<if test="tankers != null "> and tankers = #{tankers}</if>
|
|
<if test="minorInjuries != null "> and minor_injuries = #{minorInjuries}</if>
|
|
<if test="seriousInjuries != null "> and serious_injuries = #{seriousInjuries}</if>
|
|
<if test="fatalities != null "> and fatalities = #{fatalities}</if>
|
|
<if test="isPrivate != null "> and is_private = #{isPrivate}</if>
|
|
<if test="facilityId != null "> and facility_id = #{facilityId}</if>
|
|
</where>
|
|
</select>
|
|
|
|
<select id="selectDcEventAccidentById" parameterType="String" resultMap="DcEventAccidentResult">
|
|
<include refid="selectDcEventAccidentVo"/>
|
|
where id = #{id}
|
|
</select>
|
|
|
|
<insert id="insertDcEventAccident" parameterType="DcEventAccident">
|
|
insert into dc_event_accident
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
|
<if test="id != null">id,</if>
|
|
<if test="reporterName != null and reporterName != ''">reporter_name,</if>
|
|
<if test="reporterPhoneNumber != null and reporterPhoneNumber != ''">reporter_phone_number,</if>
|
|
<if test="accidentType != null">accident_type,</if>
|
|
<if test="locationType != null">location_type,</if>
|
|
<if test="trafficJam != null">traffic_jam,</if>
|
|
<if test="weatherCondition != null">weather_condition,</if>
|
|
<if test="impactLevel != null">impact_level,</if>
|
|
<if test="isReverseCargo != null">is_reverse_cargo,</if>
|
|
<if test="isMaintenance != null">is_maintenance,</if>
|
|
<if test="policeContact != null">police_contact,</if>
|
|
<if test="towingServiceContact != null">towing_service_contact,</if>
|
|
<if test="congestionAhead != null">congestion_ahead,</if>
|
|
<if test="atIntersection != null">at_intersection,</if>
|
|
<if test="onCurve != null">on_curve,</if>
|
|
<if test="spillageItem != null">spillage_item,</if>
|
|
<if test="vehicleOwnerPhone != null">vehicle_owner_phone,</if>
|
|
<if test="smallCar != null">small_car,</if>
|
|
<if test="trucks != null">trucks,</if>
|
|
<if test="buses != null">buses,</if>
|
|
<if test="tankers != null">tankers,</if>
|
|
<if test="minorInjuries != null">minor_injuries,</if>
|
|
<if test="seriousInjuries != null">serious_injuries,</if>
|
|
<if test="fatalities != null">fatalities,</if>
|
|
<if test="isPrivate != null">is_private,</if>
|
|
<if test="facilityId != null">facility_id,</if>
|
|
<if test="rampId != null">ramp_id,</if>
|
|
<if test="location != null">location,</if>
|
|
</trim>
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
<if test="id != null">#{id},</if>
|
|
<if test="reporterName != null and reporterName != ''">#{reporterName},</if>
|
|
<if test="reporterPhoneNumber != null and reporterPhoneNumber != ''">#{reporterPhoneNumber},</if>
|
|
<if test="accidentType != null">#{accidentType},</if>
|
|
<if test="locationType != null">#{locationType},</if>
|
|
<if test="trafficJam != null">#{trafficJam},</if>
|
|
<if test="weatherCondition != null">#{weatherCondition},</if>
|
|
<if test="impactLevel != null">#{impactLevel},</if>
|
|
<if test="isReverseCargo != null">#{isReverseCargo},</if>
|
|
<if test="isMaintenance != null">#{isMaintenance},</if>
|
|
<if test="policeContact != null">#{policeContact},</if>
|
|
<if test="towingServiceContact != null">#{towingServiceContact},</if>
|
|
<if test="congestionAhead != null">#{congestionAhead},</if>
|
|
<if test="atIntersection != null">#{atIntersection},</if>
|
|
<if test="onCurve != null">#{onCurve},</if>
|
|
<if test="spillageItem != null">#{spillageItem},</if>
|
|
<if test="vehicleOwnerPhone != null">#{vehicleOwnerPhone},</if>
|
|
<if test="smallCar != null">#{smallCar},</if>
|
|
<if test="trucks != null">#{trucks},</if>
|
|
<if test="buses != null">#{buses},</if>
|
|
<if test="tankers != null">#{tankers},</if>
|
|
<if test="minorInjuries != null">#{minorInjuries},</if>
|
|
<if test="seriousInjuries != null">#{seriousInjuries},</if>
|
|
<if test="fatalities != null">#{fatalities},</if>
|
|
<if test="isPrivate != null">#{isPrivate},</if>
|
|
<if test="facilityId != null">#{facilityId},</if>
|
|
<if test="location != null">#{location},</if>
|
|
<if test="rampId != null">#{rampId},</if>
|
|
</trim>
|
|
</insert>
|
|
|
|
<update id="updateDcEventAccident" parameterType="DcEventAccident">
|
|
update dc_event_accident
|
|
<trim prefix="SET" suffixOverrides=",">
|
|
<if test="reporterName != null and reporterName != ''">reporter_name = #{reporterName},</if>
|
|
<if test="reporterPhoneNumber != null and reporterPhoneNumber != ''">reporter_phone_number = #{reporterPhoneNumber},</if>
|
|
<if test="accidentType != null">accident_type = #{accidentType},</if>
|
|
<if test="locationType != null">location_type = #{locationType},</if>
|
|
<if test="trafficJam != null">traffic_jam = #{trafficJam},</if>
|
|
<if test="weatherCondition != null">weather_condition = #{weatherCondition},</if>
|
|
<if test="impactLevel != null">impact_level = #{impactLevel},</if>
|
|
<if test="isReverseCargo != null">is_reverse_cargo = #{isReverseCargo},</if>
|
|
<if test="isMaintenance != null">is_maintenance = #{isMaintenance},</if>
|
|
<if test="policeContact != null">police_contact = #{policeContact},</if>
|
|
<if test="towingServiceContact != null">towing_service_contact = #{towingServiceContact},</if>
|
|
<if test="congestionAhead != null">congestion_ahead = #{congestionAhead},</if>
|
|
<if test="atIntersection != null">at_intersection = #{atIntersection},</if>
|
|
<if test="onCurve != null">on_curve = #{onCurve},</if>
|
|
<if test="spillageItem != null">spillage_item = #{spillageItem},</if>
|
|
<if test="vehicleOwnerPhone != null">vehicle_owner_phone = #{vehicleOwnerPhone},</if>
|
|
<if test="smallCar != null">small_car = #{smallCar},</if>
|
|
<if test="trucks != null">trucks = #{trucks},</if>
|
|
<if test="buses != null">buses = #{buses},</if>
|
|
<if test="tankers != null">tankers = #{tankers},</if>
|
|
<if test="minorInjuries != null">minor_injuries = #{minorInjuries},</if>
|
|
<if test="seriousInjuries != null">serious_injuries = #{seriousInjuries},</if>
|
|
<if test="fatalities != null">fatalities = #{fatalities},</if>
|
|
<if test="isPrivate != null">is_private = #{isPrivate},</if>
|
|
<if test="facilityId != null">facility_id = #{facilityId},</if>
|
|
<if test="rampId != null">ramp_id = #{rampId},</if>
|
|
<if test="location != null">location = #{location},</if>
|
|
</trim>
|
|
where id = #{id}
|
|
</update>
|
|
|
|
<delete id="deleteDcEventAccidentById" parameterType="String">
|
|
delete from dc_event_accident where id = #{id}
|
|
</delete>
|
|
|
|
<delete id="deleteDcEventAccidentByIds" parameterType="String">
|
|
delete from dc_event_accident where id in
|
|
<foreach item="id" collection="array" open="(" separator="," close=")">
|
|
#{id}
|
|
</foreach>
|
|
</delete>
|
|
</mapper>
|