This commit is contained in:
苏竹红
2024-04-10 14:00:43 +08:00
parent f05c419958
commit c4ad9e2801

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},'%')