|
|
@@ -37,6 +37,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<result property="passportPhoto" column="passport_photo" />
|
|
|
<result property="bankPhoto" column="bank_photo" />
|
|
|
<result property="merchantIntroduction" column="merchant_introduction" />
|
|
|
+ <result property="businessLicense" column="business_license" />
|
|
|
+ <result property="directorsScreenshot" column="directors_screenshot" />
|
|
|
+ <result property="foodPermit" column="food_permit" />
|
|
|
+ <result property="uboStatement" column="ubo_statement" />
|
|
|
<result property="offline" column="offline" />
|
|
|
<result property="storeId" column="store_id" />
|
|
|
<result property="address" column="address" />
|
|
|
@@ -112,6 +116,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="passportPhoto != null">passport_photo,</if>
|
|
|
<if test="bankPhoto != null">bank_photo,</if>
|
|
|
<if test="merchantIntroduction != null">merchant_introduction,</if>
|
|
|
+ <if test="businessLicense != null">business_license,</if>
|
|
|
+ <if test="directorsScreenshot != null">directors_screenshot,</if>
|
|
|
+ <if test="foodPermit != null">food_permit,</if>
|
|
|
+ <if test="uboStatement != null">ubo_statement,</if>
|
|
|
<if test="offline != null">offline,</if>
|
|
|
<if test="storeId != null">store_id,</if>
|
|
|
<if test="address != null and address != ''">address,</if>
|
|
|
@@ -147,6 +155,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="passportPhoto != null">#{passportPhoto},</if>
|
|
|
<if test="bankPhoto != null">#{bankPhoto},</if>
|
|
|
<if test="merchantIntroduction != null">#{merchantIntroduction},</if>
|
|
|
+ <if test="businessLicense != null">#{businessLicense},</if>
|
|
|
+ <if test="directorsScreenshot != null">#{directorsScreenshot},</if>
|
|
|
+ <if test="foodPermit != null">#{foodPermit},</if>
|
|
|
+ <if test="uboStatement != null">#{uboStatement},</if>
|
|
|
<if test="offline !=null">#{offline},</if>
|
|
|
<if test="storeId != null">#{storeId},</if>
|
|
|
<if test="address != null and address != ''">#{address},</if>
|
|
|
@@ -186,6 +198,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="passportPhoto != null">passport_photo = #{passportPhoto},</if>
|
|
|
<if test="bankPhoto != null">bank_photo = #{bankPhoto},</if>
|
|
|
<if test="merchantIntroduction != null">merchant_introduction = #{merchantIntroduction},</if>
|
|
|
+ <if test="businessLicense != null">business_license = #{businessLicense},</if>
|
|
|
+ <if test="directorsScreenshot != null">directors_screenshot = #{directorsScreenshot},</if>
|
|
|
+ <if test="foodPermit != null">food_permit = #{foodPermit},</if>
|
|
|
+ <if test="uboStatement != null">ubo_statement = #{uboStatement},</if>
|
|
|
<if test="offline != null">offline =#{offline},</if>
|
|
|
<if test="storeId != null">store_id = #{storeId},</if>
|
|
|
<if test="address != null and address != ''">address = #{address},</if>
|