|
@ -4,7 +4,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
"http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
|
|
"http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
|
|
<mapper namespace="com.zc.business.mapper.DcEventVehicleAccidentMapper"> |
|
|
<mapper namespace="com.zc.business.mapper.DcEventVehicleAccidentMapper"> |
|
|
|
|
|
|
|
|
<resultMap type="DcEventVehicleAccident" id="DcEventVehicleAccidentResult"> |
|
|
<resultMap type="com.zc.business.domain.DcEventVehicleAccident" id="DcEventVehicleAccidentResult"> |
|
|
<result property="id" column="id" /> |
|
|
<result property="id" column="id" /> |
|
|
<result property="reporterName" column="reporter_name" /> |
|
|
<result property="reporterName" column="reporter_name" /> |
|
|
<result property="reporterPhoneNumber" column="reporter_phone_number" /> |
|
|
<result property="reporterPhoneNumber" column="reporter_phone_number" /> |
|
@ -14,7 +14,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
<result property="congestionAhead" column="congestion_ahead" /> |
|
|
<result property="congestionAhead" column="congestion_ahead" /> |
|
|
<result property="atIntersection" column="at_intersection" /> |
|
|
<result property="atIntersection" column="at_intersection" /> |
|
|
<result property="onCurve" column="on_curve" /> |
|
|
<result property="onCurve" column="on_curve" /> |
|
|
<result property="laneOccupancy" column="lane_occupancy" /> |
|
|
|
|
|
<result property="smallCar" column="small_car" /> |
|
|
<result property="smallCar" column="small_car" /> |
|
|
<result property="trucks" column="trucks" /> |
|
|
<result property="trucks" column="trucks" /> |
|
|
<result property="buses" column="buses" /> |
|
|
<result property="buses" column="buses" /> |
|
@ -23,10 +22,15 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
<result property="seriousInjuries" column="serious_injuries" /> |
|
|
<result property="seriousInjuries" column="serious_injuries" /> |
|
|
<result property="fatalities" column="fatalities" /> |
|
|
<result property="fatalities" column="fatalities" /> |
|
|
<result property="isPrivate" column="is_private" /> |
|
|
<result property="isPrivate" column="is_private" /> |
|
|
|
|
|
|
|
|
|
|
|
<result property="location" column="location" /> |
|
|
|
|
|
<result property="rampId" column="ramp_id" /> |
|
|
|
|
|
<result property="facilityId" column="facility_id" /> |
|
|
|
|
|
|
|
|
</resultMap> |
|
|
</resultMap> |
|
|
|
|
|
|
|
|
<sql id="selectDcEventVehicleAccidentVo"> |
|
|
<sql id="selectDcEventVehicleAccidentVo"> |
|
|
select id, reporter_name, reporter_phone_number, location_type, traffic_jam, weather_condition, congestion_ahead, at_intersection, on_curve, lane_occupancy, small_car, trucks, buses, tankers, minor_injuries, serious_injuries, fatalities, is_private from dc_event_vehicle_accident |
|
|
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> |
|
|
</sql> |
|
|
|
|
|
|
|
|
<select id="selectDcEventVehicleAccidentList" parameterType="DcEventVehicleAccident" resultMap="DcEventVehicleAccidentResult"> |
|
|
<select id="selectDcEventVehicleAccidentList" parameterType="DcEventVehicleAccident" resultMap="DcEventVehicleAccidentResult"> |
|
@ -40,7 +44,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
<if test="congestionAhead != null "> and congestion_ahead = #{congestionAhead}</if> |
|
|
<if test="congestionAhead != null "> and congestion_ahead = #{congestionAhead}</if> |
|
|
<if test="atIntersection != null "> and at_intersection = #{atIntersection}</if> |
|
|
<if test="atIntersection != null "> and at_intersection = #{atIntersection}</if> |
|
|
<if test="onCurve != null "> and on_curve = #{onCurve}</if> |
|
|
<if test="onCurve != null "> and on_curve = #{onCurve}</if> |
|
|
<if test="laneOccupancy != null "> and lane_occupancy = #{laneOccupancy}</if> |
|
|
|
|
|
<if test="smallCar != null "> and small_car = #{smallCar}</if> |
|
|
<if test="smallCar != null "> and small_car = #{smallCar}</if> |
|
|
<if test="trucks != null "> and trucks = #{trucks}</if> |
|
|
<if test="trucks != null "> and trucks = #{trucks}</if> |
|
|
<if test="buses != null "> and buses = #{buses}</if> |
|
|
<if test="buses != null "> and buses = #{buses}</if> |
|
@ -69,7 +72,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
<if test="congestionAhead != null">congestion_ahead,</if> |
|
|
<if test="congestionAhead != null">congestion_ahead,</if> |
|
|
<if test="atIntersection != null">at_intersection,</if> |
|
|
<if test="atIntersection != null">at_intersection,</if> |
|
|
<if test="onCurve != null">on_curve,</if> |
|
|
<if test="onCurve != null">on_curve,</if> |
|
|
<if test="laneOccupancy != null">lane_occupancy,</if> |
|
|
|
|
|
<if test="smallCar != null">small_car,</if> |
|
|
<if test="smallCar != null">small_car,</if> |
|
|
<if test="trucks != null">trucks,</if> |
|
|
<if test="trucks != null">trucks,</if> |
|
|
<if test="buses != null">buses,</if> |
|
|
<if test="buses != null">buses,</if> |
|
@ -78,6 +80,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
<if test="seriousInjuries != null">serious_injuries,</if> |
|
|
<if test="seriousInjuries != null">serious_injuries,</if> |
|
|
<if test="fatalities != null">fatalities,</if> |
|
|
<if test="fatalities != null">fatalities,</if> |
|
|
<if test="isPrivate != null">is_private,</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> |
|
|
<trim prefix="values (" suffix=")" suffixOverrides=","> |
|
|
<trim prefix="values (" suffix=")" suffixOverrides=","> |
|
|
<if test="id != null">#{id},</if> |
|
|
<if test="id != null">#{id},</if> |
|
@ -89,7 +94,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
<if test="congestionAhead != null">#{congestionAhead},</if> |
|
|
<if test="congestionAhead != null">#{congestionAhead},</if> |
|
|
<if test="atIntersection != null">#{atIntersection},</if> |
|
|
<if test="atIntersection != null">#{atIntersection},</if> |
|
|
<if test="onCurve != null">#{onCurve},</if> |
|
|
<if test="onCurve != null">#{onCurve},</if> |
|
|
<if test="laneOccupancy != null">#{laneOccupancy},</if> |
|
|
|
|
|
<if test="smallCar != null">#{smallCar},</if> |
|
|
<if test="smallCar != null">#{smallCar},</if> |
|
|
<if test="trucks != null">#{trucks},</if> |
|
|
<if test="trucks != null">#{trucks},</if> |
|
|
<if test="buses != null">#{buses},</if> |
|
|
<if test="buses != null">#{buses},</if> |
|
@ -98,6 +102,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
<if test="seriousInjuries != null">#{seriousInjuries},</if> |
|
|
<if test="seriousInjuries != null">#{seriousInjuries},</if> |
|
|
<if test="fatalities != null">#{fatalities},</if> |
|
|
<if test="fatalities != null">#{fatalities},</if> |
|
|
<if test="isPrivate != null">#{isPrivate},</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> |
|
|
</trim> |
|
|
</insert> |
|
|
</insert> |
|
|
|
|
|
|
|
@ -112,7 +119,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
<if test="congestionAhead != null">congestion_ahead = #{congestionAhead},</if> |
|
|
<if test="congestionAhead != null">congestion_ahead = #{congestionAhead},</if> |
|
|
<if test="atIntersection != null">at_intersection = #{atIntersection},</if> |
|
|
<if test="atIntersection != null">at_intersection = #{atIntersection},</if> |
|
|
<if test="onCurve != null">on_curve = #{onCurve},</if> |
|
|
<if test="onCurve != null">on_curve = #{onCurve},</if> |
|
|
<if test="laneOccupancy != null">lane_occupancy = #{laneOccupancy},</if> |
|
|
|
|
|
<if test="smallCar != null">small_car = #{smallCar},</if> |
|
|
<if test="smallCar != null">small_car = #{smallCar},</if> |
|
|
<if test="trucks != null">trucks = #{trucks},</if> |
|
|
<if test="trucks != null">trucks = #{trucks},</if> |
|
|
<if test="buses != null">buses = #{buses},</if> |
|
|
<if test="buses != null">buses = #{buses},</if> |
|
@ -121,6 +127,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
<if test="seriousInjuries != null">serious_injuries = #{seriousInjuries},</if> |
|
|
<if test="seriousInjuries != null">serious_injuries = #{seriousInjuries},</if> |
|
|
<if test="fatalities != null">fatalities = #{fatalities},</if> |
|
|
<if test="fatalities != null">fatalities = #{fatalities},</if> |
|
|
<if test="isPrivate != null">is_private = #{isPrivate},</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> |
|
|
</trim> |
|
|
where id = #{id} |
|
|
where id = #{id} |
|
|
</update> |
|
|
</update> |
|
|