feat
This commit is contained in:
@@ -176,8 +176,8 @@
|
||||
<if test="param.userPortrait != null and param.userPortrait != ''">
|
||||
#{param.userPortrait},
|
||||
</if>
|
||||
<if test="param.isJoin != null">
|
||||
#{param.isJoin},
|
||||
<if test="param.joinStatus != null">
|
||||
#{param.joinStatus},
|
||||
</if>
|
||||
<if test="param.lineStatus != null">
|
||||
#{param.lineStatus},
|
||||
@@ -200,33 +200,84 @@
|
||||
</trim>
|
||||
ON DUPLICATE KEY UPDATE
|
||||
<trim suffixOverrides=",">
|
||||
<if test="param.partnerId != null and param.partnerId != ''">
|
||||
partner_id = #{param.partnerId},
|
||||
</if>
|
||||
<if test="param.regionId != null">
|
||||
region_id = #{param.regionId},
|
||||
</if>
|
||||
<if test="param.mobile != null and param.mobile != ''">
|
||||
mobile = #{param.mobile},
|
||||
</if>
|
||||
<if test="param.username != null and param.username != ''">
|
||||
username = #{param.username},
|
||||
</if>
|
||||
<if test="param.sex != null and param.sex != ''">
|
||||
sex = #{param.sex},
|
||||
</if>
|
||||
<if test="param.wantShopAreaId != null">
|
||||
want_shop_area_id = #{param.wantShopAreaId},
|
||||
</if>
|
||||
<if test="param.liveAddress != null and param.liveAddress != ''">
|
||||
live_address = #{param.liveAddress},
|
||||
</if>
|
||||
<if test="param.workflowStage != null">
|
||||
workflow_stage = #{param.workflowStage},
|
||||
</if>
|
||||
<if test="param.workflowSubStage != null">
|
||||
workflow_sub_stage = #{param.workflowSubStage}
|
||||
</if>
|
||||
<if test="param.partnerId != null and param.partnerId != ''">
|
||||
partner_id = #{param.partnerId},
|
||||
</if>
|
||||
<if test="param.regionId != null">
|
||||
region_id = #{param.regionId},
|
||||
</if>
|
||||
<if test="param.mobile != null and param.mobile != ''">
|
||||
mobile = #{param.mobile},
|
||||
</if>
|
||||
<if test="param.username != null and param.username != ''">
|
||||
username = #{param.username},
|
||||
</if>
|
||||
<if test="param.sex != null and param.sex != ''">
|
||||
sex = #{param.sex},
|
||||
</if>
|
||||
<if test="param.wantShopAreaId != null">
|
||||
want_shop_area_id = #{param.wantShopAreaId},
|
||||
</if>
|
||||
<if test="param.liveAddress != null and param.liveAddress != ''">
|
||||
live_address = #{param.liveAddress},
|
||||
</if>
|
||||
<if test="param.workflowStage != null">
|
||||
workflow_stage = #{param.workflowStage},
|
||||
</if>
|
||||
<if test="param.workflowSubStage != null">
|
||||
workflow_sub_stage = #{param.workflowSubStage},
|
||||
</if>
|
||||
<if test="param.workflowSubStageStatus != null">
|
||||
workflow_sub_stage_status = #{param.workflowSubStageStatus},
|
||||
</if>
|
||||
<if test="param.selectSiteNum != null">
|
||||
select_site_num = #{param.selectSiteNum},
|
||||
</if>
|
||||
<if test="param.prepareShopNum != null">
|
||||
prepare_shop_num = #{param.prepareShopNum},
|
||||
</if>
|
||||
<if test="param.openShopNum != null">
|
||||
open_shop_num = #{param.openShopNum},
|
||||
</if>
|
||||
<if test="param.lineSource != null">
|
||||
line_source = #{param.lineSource},
|
||||
</if>
|
||||
<if test="param.investmentManager != null and param.investmentManager != ''">
|
||||
investment_manager = #{param.investmentManager},
|
||||
</if>
|
||||
<if test="param.developmentManager != null and param.developmentManager != ''">
|
||||
development_manager = #{param.developmentManager},
|
||||
</if>
|
||||
<if test="param.firstInterviewer != null and param.firstInterviewer != ''">
|
||||
first_interviewer = #{param.firstInterviewer},
|
||||
</if>
|
||||
<if test="param.secondInterviewer != null and param.secondInterviewer != ''">
|
||||
second_interviewer = #{param.secondInterviewer},
|
||||
</if>
|
||||
<if test="param.userPortrait != null and param.userPortrait != ''">
|
||||
user_portrait = #{param.userPortrait},
|
||||
</if>
|
||||
<if test="param.joinStatus != null">
|
||||
join_status = #{param.joinStatus},
|
||||
</if>
|
||||
<if test="param.lineStatus != null">
|
||||
line_status = #{param.lineStatus},
|
||||
</if>
|
||||
<if test="param.createTime != null">
|
||||
create_time = #{param.createTime},
|
||||
</if>
|
||||
<if test="param.updateTime != null">
|
||||
update_time = #{param.updateTime},
|
||||
</if>
|
||||
<if test="param.createUserId != null and param.createUserId != ''">
|
||||
create_user_id = #{param.createUserId},
|
||||
</if>
|
||||
<if test="param.updateUserId != null and param.updateUserId != ''">
|
||||
update_user_id = #{param.updateUserId},
|
||||
</if>
|
||||
<if test="param.deleted != null">
|
||||
deleted = #{param.deleted}
|
||||
</if>
|
||||
</trim>
|
||||
</insert>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user