|
|
@@ -29,6 +29,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<result property="drivingLicense" column="driving_license" />
|
|
|
<result property="vehiclePhotos" column="vehicle_photos" />
|
|
|
<result property="licensePlate" column="license_plate" />
|
|
|
+ <result property="vehicleType" column="vehicle_type" />
|
|
|
<result property="fullName" column="full_name" />
|
|
|
<result property="idNumber" column="id_number" />
|
|
|
<result property="merchantType" column="merchant_type" />
|
|
|
@@ -107,6 +108,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="driversLicense != null">drivers_license,</if>
|
|
|
<if test="drivingLicense != null">driving_license,</if>
|
|
|
<if test="vehiclePhotos != null">vehicle_photos,</if>
|
|
|
+ <if test="vehicleType != null">vehicle_type,</if>
|
|
|
<if test="passportPhoto != null">passport_photo,</if>
|
|
|
<if test="bankPhoto != null">bank_photo,</if>
|
|
|
<if test="merchantIntroduction != null">merchant_introduction,</if>
|
|
|
@@ -141,6 +143,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="driversLicense != null">#{driversLicense},</if>
|
|
|
<if test="drivingLicense != null">#{drivingLicense},</if>
|
|
|
<if test="vehiclePhotos != null">#{vehiclePhotos},</if>
|
|
|
+ <if test="vehicleType != null">#{vehicleType},</if>
|
|
|
<if test="passportPhoto != null">#{passportPhoto},</if>
|
|
|
<if test="bankPhoto != null">#{bankPhoto},</if>
|
|
|
<if test="merchantIntroduction != null">#{merchantIntroduction},</if>
|
|
|
@@ -179,6 +182,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="driversLicense != null">drivers_license = #{driversLicense},</if>
|
|
|
<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="passportPhoto != null">passport_photo = #{passportPhoto},</if>
|
|
|
<if test="bankPhoto != null">bank_photo = #{bankPhoto},</if>
|
|
|
<if test="merchantIntroduction != null">merchant_introduction = #{merchantIntroduction},</if>
|