|
@@ -9,6 +9,7 @@
|
|
|
<result column="description" property="description" jdbcType="VARCHAR" />
|
|
|
<result column="vehicle_type" property="vehicleType" jdbcType="VARCHAR" />
|
|
|
<result column="vehicle_model" property="vehicleModel" jdbcType="VARCHAR" />
|
|
|
+ <result column="vehicle_colour" property="vehicleColour" jdbcType="VARCHAR" />
|
|
|
<result column="max_speed" property="maxSpeed" jdbcType="DECIMAL" />
|
|
|
<result column="engine_power" property="enginePower" jdbcType="DECIMAL" />
|
|
|
<result column="max_deceleration" property="maxDeceleration" jdbcType="DECIMAL" />
|
|
@@ -54,6 +55,7 @@
|
|
|
description,
|
|
|
vehicle_type,
|
|
|
vehicle_model,
|
|
|
+ vehicle_colour,
|
|
|
max_speed,
|
|
|
engine_power,
|
|
|
max_deceleration,
|
|
@@ -94,6 +96,7 @@
|
|
|
description,
|
|
|
vehicle_type,
|
|
|
vehicle_model,
|
|
|
+ vehicle_colour,
|
|
|
max_speed,
|
|
|
engine_power,
|
|
|
max_deceleration,
|
|
@@ -125,6 +128,7 @@
|
|
|
#{description,jdbcType=VARCHAR},
|
|
|
#{vehicleType,jdbcType=VARCHAR},
|
|
|
#{vehicleModel,jdbcType=VARCHAR},
|
|
|
+ #{vehicleColour,jdbcType=VARCHAR},
|
|
|
#{maxSpeed,jdbcType=DECIMAL},
|
|
|
#{enginePower,jdbcType=DECIMAL},
|
|
|
#{maxDeceleration,jdbcType=DECIMAL},
|
|
@@ -158,6 +162,7 @@
|
|
|
description = #{description,jdbcType=VARCHAR},
|
|
|
vehicle_type = #{vehicleType,jdbcType=VARCHAR},
|
|
|
vehicle_model = #{vehicleModel,jdbcType=VARCHAR},
|
|
|
+ vehicle_colour = #{vehicleColour,jdbcType=VARCHAR},
|
|
|
max_speed = #{maxSpeed,jdbcType=DECIMAL},
|
|
|
engine_power = #{enginePower,jdbcType=DECIMAL},
|
|
|
max_deceleration = #{maxDeceleration,jdbcType=DECIMAL},
|