mybatis
This commit is contained in:
@@ -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},'%')
|
||||
|
||||
Reference in New Issue
Block a user