|
|
@@ -30,6 +30,10 @@ 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="preLaunchCity" column="pre_launch_city" />
|
|
|
+ <result property="birthday" column="birthday" />
|
|
|
+ <result property="insurancePhoto" column="insurance_photo" />
|
|
|
+ <result property="policeCertificate" column="police_certificate" />
|
|
|
<result property="fullName" column="full_name" />
|
|
|
<result property="idNumber" column="id_number" />
|
|
|
<result property="merchantType" column="merchant_type" />
|
|
|
@@ -113,6 +117,10 @@ 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="preLaunchCity != null">pre_launch_city,</if>
|
|
|
+ <if test="birthday != null">birthday,</if>
|
|
|
+ <if test="insurancePhoto != null">insurance_photo,</if>
|
|
|
+ <if test="policeCertificate != null">police_certificate,</if>
|
|
|
<if test="passportPhoto != null">passport_photo,</if>
|
|
|
<if test="bankPhoto != null">bank_photo,</if>
|
|
|
<if test="merchantIntroduction != null">merchant_introduction,</if>
|
|
|
@@ -152,6 +160,10 @@ 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="preLaunchCity != null">#{preLaunchCity},</if>
|
|
|
+ <if test="birthday != null">#{birthday},</if>
|
|
|
+ <if test="insurancePhoto != null">#{insurancePhoto},</if>
|
|
|
+ <if test="policeCertificate != null">#{policeCertificate},</if>
|
|
|
<if test="passportPhoto != null">#{passportPhoto},</if>
|
|
|
<if test="bankPhoto != null">#{bankPhoto},</if>
|
|
|
<if test="merchantIntroduction != null">#{merchantIntroduction},</if>
|
|
|
@@ -195,6 +207,10 @@ 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="preLaunchCity != null">pre_launch_city = #{preLaunchCity},</if>
|
|
|
+ <if test="birthday != null">birthday = #{birthday},</if>
|
|
|
+ <if test="insurancePhoto != null">insurance_photo = #{insurancePhoto},</if>
|
|
|
+ <if test="policeCertificate != null">police_certificate = #{policeCertificate},</if>
|
|
|
<if test="passportPhoto != null">passport_photo = #{passportPhoto},</if>
|
|
|
<if test="bankPhoto != null">bank_photo = #{bankPhoto},</if>
|
|
|
<if test="merchantIntroduction != null">merchant_introduction = #{merchantIntroduction},</if>
|