|
@@ -345,6 +345,19 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
</trim>
|
|
</trim>
|
|
|
</insert>
|
|
</insert>
|
|
|
|
|
|
|
|
|
|
+ <update id="auditStore" parameterType="FsStoreScrm">
|
|
|
|
|
+ update fs_store_scrm
|
|
|
|
|
+ <trim prefix="SET" suffixOverrides=",">
|
|
|
|
|
+ <if test="updateTime != null">update_time = #{updateTime},</if>
|
|
|
|
|
+ <if test="isAudit != null">is_audit = #{isAudit},</if>
|
|
|
|
|
+ <if test="qualificationUpdateTime !=null ">qualification_update_time = #{qualificationUpdateTime} , </if>
|
|
|
|
|
+ <if test="selectableProductTypes !=null and selectableProductTypes !=''"> selectable_product_types = #{selectableProductTypes} ,</if>
|
|
|
|
|
+ <if test="permStatus !=null ">perm_status = #{permStatus}, </if>
|
|
|
|
|
+ </trim>
|
|
|
|
|
+ where store_id = #{storeId}
|
|
|
|
|
+ </update>
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
<update id="updateFsStore" parameterType="FsStoreScrm">
|
|
<update id="updateFsStore" parameterType="FsStoreScrm">
|
|
|
update fs_store_scrm
|
|
update fs_store_scrm
|
|
|
<trim prefix="SET" suffixOverrides=",">
|
|
<trim prefix="SET" suffixOverrides=",">
|