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

147 lines
8.8 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.DcEventVehicleAccidentMapper">
<resultMap type="com.zc.business.domain.DcEventVehicleAccident" id="DcEventVehicleAccidentResult">
<result property="id" column="id" />
<result property="reporterName" column="reporter_name" />
<result property="reporterPhoneNumber" column="reporter_phone_number" />
<result property="locationType" column="location_type" />
<result property="trafficJam" column="traffic_jam" />
<result property="weatherCondition" column="weather_condition" />
<result property="congestionAhead" column="congestion_ahead" />
<result property="atIntersection" column="at_intersection" />
<result property="onCurve" column="on_curve" />
<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="location" column="location" />
<result property="rampId" column="ramp_id" />
<result property="facilityId" column="facility_id" />
</resultMap>
<sql id="selectDcEventVehicleAccidentVo">
select location,ramp_id,facility_id, id, reporter_name, reporter_phone_number, location_type, traffic_jam, weather_condition, congestion_ahead, at_intersection, on_curve, small_car, trucks, buses, tankers, minor_injuries, serious_injuries, fatalities, is_private from dc_event_vehicle_accident
</sql>
<select id="selectDcEventVehicleAccidentList" parameterType="DcEventVehicleAccident" resultMap="DcEventVehicleAccidentResult">
<include refid="selectDcEventVehicleAccidentVo"/>
<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="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="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="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>
</where>
</select>
<select id="selectDcEventVehicleAccidentById" parameterType="String" resultMap="DcEventVehicleAccidentResult">
<include refid="selectDcEventVehicleAccidentVo"/>
where id = #{id}
</select>
<insert id="insertDcEventVehicleAccident" parameterType="DcEventVehicleAccident">
insert into dc_event_vehicle_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="locationType != null">location_type,</if>
<if test="trafficJam != null">traffic_jam,</if>
<if test="weatherCondition != null">weather_condition,</if>
<if test="congestionAhead != null">congestion_ahead,</if>
<if test="atIntersection != null">at_intersection,</if>
<if test="onCurve != null">on_curve,</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="location != null">location,</if>
<if test="rampId != null">ramp_id,</if>
<if test="facilityId != null">facility_id,</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="locationType != null">#{locationType},</if>
<if test="trafficJam != null">#{trafficJam},</if>
<if test="weatherCondition != null">#{weatherCondition},</if>
<if test="congestionAhead != null">#{congestionAhead},</if>
<if test="atIntersection != null">#{atIntersection},</if>
<if test="onCurve != null">#{onCurve},</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="location != null">#{location},</if>
<if test="rampId != null">#{rampId},</if>
<if test="facilityId != null">#{facilityId},</if>
</trim>
</insert>
<update id="updateDcEventVehicleAccident" parameterType="DcEventVehicleAccident">
update dc_event_vehicle_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="locationType != null">location_type = #{locationType},</if>
<if test="trafficJam != null">traffic_jam = #{trafficJam},</if>
<if test="weatherCondition != null">weather_condition = #{weatherCondition},</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="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="location != null">location = #{location},</if>
<if test="rampId != null">ramp_id = #{rampId},</if>
<if test="facilityId != null">facility_id = #{facilityId},</if>
</trim>
where id = #{id}
</update>
<delete id="deleteDcEventVehicleAccidentById" parameterType="String">
delete from dc_event_vehicle_accident where id = #{id}
</delete>
<delete id="deleteDcEventVehicleAccidentByIds" parameterType="String">
delete from dc_event_vehicle_accident where id in
<foreach item="id" collection="array" open="(" separator="," close=")">
#{id}
</foreach>
</delete>
</mapper>