Browse Source

Merge branch 'dev_plugins' into dev_temp

dev_shibei_match
sunyuchao 5 years ago
parent
commit
7e26c65ce8
  1. 4
      epmet-module/oper-customize/oper-customize-server/src/main/resources/mapper/FunctionCustomizedDao.xml

4
epmet-module/oper-customize/oper-customize-server/src/main/resources/mapper/FunctionCustomizedDao.xml

@ -63,7 +63,7 @@
WHERE f.DEL_FLAG = '0'
AND cu.DEL_FLAG = '0'
<if test="customizedName != null and customizedName.trim() != ''">
AND cu.CUSTOMIZED_NAME = #{customizedName}
AND cu.CUSTOMIZED_NAME like concat('%', #{customizedName}, '%')
</if>
<if test="fromApp != null and fromApp.trim() != ''">
AND cu.FROM_APP = 'gov'
@ -81,7 +81,7 @@
WHERE f.DEL_FLAG = '0'
AND cu.DEL_FLAG = '0'
<if test="customizedName != null and customizedName.trim() != ''">
AND cu.CUSTOMIZED_NAME = #{customizedName}
AND cu.CUSTOMIZED_NAME like concat('%', #{customizedName}, '%')
</if>
<if test="fromApp != null and fromApp.trim() != ''">
AND cu.FROM_APP = 'gov'

Loading…
Cancel
Save