|
|
@@ -30,6 +30,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<result property="vehiclePhotos" column="vehicle_photos" />
|
|
|
<result property="licensePlate" column="license_plate" />
|
|
|
<result property="vehicleType" column="vehicle_type" />
|
|
|
+ <result property="riderHeadPhoto" column="rider_head_photo" />
|
|
|
<result property="preLaunchCity" column="pre_launch_city" />
|
|
|
<result property="birthday" column="birthday" />
|
|
|
<result property="insurancePhoto" column="insurance_photo" />
|
|
|
@@ -117,6 +118,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="drivingLicense != null">driving_license,</if>
|
|
|
<if test="vehiclePhotos != null">vehicle_photos,</if>
|
|
|
<if test="vehicleType != null">vehicle_type,</if>
|
|
|
+ <if test="riderHeadPhoto != null">rider_head_photo,</if>
|
|
|
<if test="preLaunchCity != null">pre_launch_city,</if>
|
|
|
<if test="birthday != null">birthday,</if>
|
|
|
<if test="insurancePhoto != null">insurance_photo,</if>
|
|
|
@@ -160,6 +162,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="drivingLicense != null">#{drivingLicense},</if>
|
|
|
<if test="vehiclePhotos != null">#{vehiclePhotos},</if>
|
|
|
<if test="vehicleType != null">#{vehicleType},</if>
|
|
|
+ <if test="riderHeadPhoto != null">#{riderHeadPhoto},</if>
|
|
|
<if test="preLaunchCity != null">#{preLaunchCity},</if>
|
|
|
<if test="birthday != null">#{birthday},</if>
|
|
|
<if test="insurancePhoto != null">#{insurancePhoto},</if>
|
|
|
@@ -207,6 +210,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="drivingLicense != null">driving_license = #{drivingLicense},</if>
|
|
|
<if test="vehiclePhotos != null">vehicle_photos = #{vehiclePhotos},</if>
|
|
|
<if test="vehicleType != null">vehicle_type = #{vehicleType},</if>
|
|
|
+ <if test="riderHeadPhoto != null">rider_head_photo = #{riderHeadPhoto},</if>
|
|
|
<if test="preLaunchCity != null">pre_launch_city = #{preLaunchCity},</if>
|
|
|
<if test="birthday != null">birthday = #{birthday},</if>
|
|
|
<if test="insurancePhoto != null">insurance_photo = #{insurancePhoto},</if>
|