|
|
@ -475,6 +475,9 @@ |
|
|
|
<if test="currentAddress!=null and currentAddress!=''"> |
|
|
|
and t.CURRENT_ADDRESS like concat('%', #{currentAddress}, '%') |
|
|
|
</if> |
|
|
|
<if test="residentName!=null and residentName!=''"> |
|
|
|
and t.RESIDENTS_NAME like concat('%', #{residentName}, '%') |
|
|
|
</if> |
|
|
|
group by t.ID |
|
|
|
LIMIT #{pageIndex},#{pageSize} |
|
|
|
</select> |
|
|
@ -488,6 +491,9 @@ |
|
|
|
<if test="currentAddress!=null and currentAddress!=''"> |
|
|
|
and CURRENT_ADDRESS like concat('%', #{currentAddress}, '%') |
|
|
|
</if> |
|
|
|
<if test="residentName!=null and residentName!=''"> |
|
|
|
and t.RESIDENTS_NAME like concat('%', #{residentName}, '%') |
|
|
|
</if> |
|
|
|
</select> |
|
|
|
<select id="selectPeopleByCurrentAddressExportList" |
|
|
|
resultType="com.elink.esua.epdc.dto.epdc.result.EpdcScreenResidentInfoByCurrentAddressResultDTO"> |
|
|
|