소스 검색

监测系统监控分页修改

gao.qiang 1 년 전
부모
커밋
539535acc2
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      business-service/src/main/resources/mapper/MonitorSystemMapper.xml

+ 1 - 1
business-service/src/main/resources/mapper/MonitorSystemMapper.xml

@@ -90,7 +90,7 @@
 (select CLIENT_ID,status,MONITOR_SYSTEM_NAME from monitor_system) mon  on log.CLIENT_ID=mon.CLIENT_ID
         <where>
             <if test="monitorSystemName != null and monitorSystemName != ''">
-                and mon.MONITOR_SYSTEM_NAME like concat("%",#{monitorSystemName},"%")
+                and mon.MONITOR_SYSTEM_NAME like concat('%',#{monitorSystemName},'%')
             </if>
             <if test="status != null and status != 0">
                 and mon.status = #{status}