Merge remote-tracking branch 'origin/cc_partner_init' into cc_partner_init

This commit is contained in:
zhangchenbiao
2024-04-10 14:10:39 +08:00
3 changed files with 17 additions and 5 deletions

View File

@@ -364,6 +364,9 @@
<if test="userId != null and userId != ''">
and a.investment_manager = #{userId}
</if>
<if test="request.workflowSubStage != null">
and a.workflow_sub_stage = #{request.workflowSubStage}
</if>
<if test="wantShopAreaName != null">
and b.area_path like concat('%',#{wantShopAreaName},'%')
</if>
@@ -407,7 +410,7 @@
and a.join_status = #{request.joinStatus}
</if>
<if test="request.keyword != null and request.keyword!=''">
and (a.username like #{request.keyword} or a.mobile like #{request.keyword})
and (a.username like concat('%',#{request.keyword},'%') or a.mobile like concat('%',#{request.keyword},'%'))
</if>
<if test="wantShopAreaName != null">
and b.area_path like concat('%',#{wantShopAreaName},'%')