From 4ad4c9a37f74bf87bf52c8e677b1b128ece8da41 Mon Sep 17 00:00:00 2001 From: myname Date: Wed, 12 Jun 2024 10:04:45 +0900 Subject: [PATCH] =?UTF-8?q?2024-06-12=20=EA=B4=80=EB=A6=AC=EC=9E=90=20?= =?UTF-8?q?=EB=A1=9C=EA=B7=B8=EC=9D=B8=20=EA=B2=80=EC=83=89=20=EC=BF=BC?= =?UTF-8?q?=EB=A6=AC=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../let/sym/log/clg/web/EgovLoginLogController.java | 2 +- .../sqlmap/let/sym/log/clg/EgovLoginLog_SQL_Mysql.xml | 11 +++++++++-- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/src/main/java/itn/let/sym/log/clg/web/EgovLoginLogController.java b/src/main/java/itn/let/sym/log/clg/web/EgovLoginLogController.java index 115f1a4f..ea2cf490 100644 --- a/src/main/java/itn/let/sym/log/clg/web/EgovLoginLogController.java +++ b/src/main/java/itn/let/sym/log/clg/web/EgovLoginLogController.java @@ -120,7 +120,7 @@ public class EgovLoginLogController { loginLog.setSearchStartDate(beforeMonthDay); } - List adminLogList = loginLogService.selectAmdinLog(loginLog); + List adminLogList = loginLogService.selectAmdinLog(loginLog); int adminLogListCnt = loginLogService.selectAmdinLogTotCnt(loginLog); paginationInfo.setTotalRecordCount(adminLogListCnt); model.addAttribute("paginationInfo", paginationInfo); diff --git a/src/main/resources/egovframework/sqlmap/let/sym/log/clg/EgovLoginLog_SQL_Mysql.xml b/src/main/resources/egovframework/sqlmap/let/sym/log/clg/EgovLoginLog_SQL_Mysql.xml index ec63bb81..8176b09f 100644 --- a/src/main/resources/egovframework/sqlmap/let/sym/log/clg/EgovLoginLog_SQL_Mysql.xml +++ b/src/main/resources/egovframework/sqlmap/let/sym/log/clg/EgovLoginLog_SQL_Mysql.xml @@ -270,7 +270,7 @@ AND a.CONECT_ID != '' - ( a.MENU_NM LIKE CONCAT('%' , #searchKeyword#, '%') OR a.URL LIKE CONCAT('%' , #searchKeyword#, '%') ) + ( a.MENU_NM LIKE CONCAT('%' , #searchKeyword#, '%') OR a.URL LIKE CONCAT('%' , #searchKeyword#, '%') OR c.EMPLYR_ID LIKE CONCAT('%' , #searchKeyword#, '%') ) a.MENU_NM LIKE CONCAT('%' , #searchKeyword#, '%') @@ -278,6 +278,9 @@ a.URL LIKE CONCAT('%' , #searchKeyword#, '%') + + c.EMPLYR_ID LIKE CONCAT('%' , #searchKeyword#, '%') + @@ -302,6 +305,7 @@