Browse Source

Merge remote-tracking branch 'origin/dev_renhu'

dev
yinzuomei 3 years ago
parent
commit
2d289b63c9
  1. 3
      epmet-module/gov-org/gov-org-server/src/main/resources/mapper/IcNeighborHoodDao.xml
  2. 6
      epmet-user/epmet-user-server/src/main/resources/mapper/IcResiUserDao.xml

3
epmet-module/gov-org/gov-org-server/src/main/resources/mapper/IcNeighborHoodDao.xml

@ -160,7 +160,8 @@
AND a.DEL_FLAG = '0' AND a.DEL_FLAG = '0'
</where> </where>
ORDER BY CAST(a.NEIGHBOR_HOOD_NAME AS SIGNED),CONVERT(a.NEIGHBOR_HOOD_NAME using gbk) ORDER BY a.GRID_ID asc,
CAST(a.NEIGHBOR_HOOD_NAME AS SIGNED),CONVERT(a.NEIGHBOR_HOOD_NAME using gbk)
</select> </select>
<select id="searchAllNeighborhood" resultType="com.epmet.excel.IcNeighborHoodExcel"> <select id="searchAllNeighborhood" resultType="com.epmet.excel.IcNeighborHoodExcel">
select select

6
epmet-user/epmet-user-server/src/main/resources/mapper/IcResiUserDao.xml

@ -201,9 +201,9 @@
<include refid="listWhereForPage"></include> <include refid="listWhereForPage"></include>
<if test="keyword != null and keyword != ''"> <if test="keyword != null and keyword != ''">
AND ( AND (
NAME = #{keyword} NAME like concat('%', #{keyword},'%')
or MOBILE = #{keyword} or MOBILE like concat('%', #{keyword},'%')
or ID_CARD = #{keyword} or ID_CARD like concat('%', #{keyword},'%')
) )
</if> </if>
</where> </where>

Loading…
Cancel
Save