2023-06-22 15:12
This commit is contained in:
parent
3a47a5486a
commit
8f64fafd9d
@ -109,8 +109,19 @@ public class EgovLoginLogController {
|
||||
loginLog.setSearchSortCnd("logId");
|
||||
loginLog.setSearchSortOrd("desc");
|
||||
}
|
||||
|
||||
System.out.println("loginLog.getSearchStartDt()");
|
||||
System.out.println(loginLog.getSearchStartDt());
|
||||
System.out.println(loginLog.getSearchEndDt());
|
||||
|
||||
List<LoginLog> adminLogList = loginLogService.selectAmdinLog(loginLog);
|
||||
int adminLogListCnt = loginLogService.selectAmdinLogTotCnt(loginLog);
|
||||
int adminLogListCnt = 0;
|
||||
|
||||
if (adminLogList.size()>0) {
|
||||
adminLogListCnt = adminLogList.get(0).getTotCnt();
|
||||
}
|
||||
|
||||
//int adminLogListCnt = loginLogService.selectAmdinLogTotCnt(loginLog);
|
||||
paginationInfo.setTotalRecordCount(adminLogListCnt);
|
||||
model.addAttribute("paginationInfo", paginationInfo);
|
||||
model.addAttribute("adminLogList", adminLogList);
|
||||
|
||||
@ -232,6 +232,7 @@
|
||||
<select id="LoginLogDAO.selectAmdinLog" parameterClass="loginLog" resultClass="loginLog">
|
||||
/* 임시.*NOT_SQL_LOG.* */
|
||||
SELECT
|
||||
COUNT(1) OVER() AS totCnt ,
|
||||
a.ADMINLOG_ID logId ,
|
||||
b.USER_NM loginNm,
|
||||
DATE_FORMAT(a.CREAT_DT, '%Y-%m-%d %T' ) creatDt,
|
||||
@ -257,6 +258,14 @@
|
||||
a.URL LIKE CONCAT('%' , #searchKeyword#, '%')
|
||||
</isEqual>
|
||||
</isNotEmpty>
|
||||
|
||||
<isNotEmpty property="searchStartDt">
|
||||
AND DATE_FORMAT(a.CREAT_DT, '%Y.%m.%d' ) >= #searchStartDt#
|
||||
</isNotEmpty>
|
||||
<isNotEmpty property="searchEndDt">
|
||||
AND #searchEndDt# >= DATE_FORMAT(a.CREAT_DT, '%Y.%m.%d' )
|
||||
</isNotEmpty>
|
||||
|
||||
ORDER BY 1=1
|
||||
<isNotEmpty property="searchSortCnd">
|
||||
,$searchSortCnd$
|
||||
|
||||
@ -54,6 +54,8 @@
|
||||
<pattern>*/oprtn/stts/sttsEduCnt.jsp </pattern> <!-- 체험교실, 콘텐츠 통계 화면 -->
|
||||
<pattern>*/oprtn/stts/sttsEduContentCnt.jsp </pattern> <!-- 교육콘텐츠, 월별 교육과정 통계 화면 -->
|
||||
|
||||
<pattern>*/log/clg/*</pattern> <!-- 운영관리/로그관리 화면 -->
|
||||
|
||||
|
||||
</decorator>
|
||||
|
||||
|
||||
@ -153,7 +153,7 @@ function fncReset(thisObj){
|
||||
|
||||
<div class="list_top_2">
|
||||
<div class="util_left">
|
||||
<p>등록일자</p>
|
||||
<p>접속일자</p>
|
||||
</div>
|
||||
<div class="util_right">
|
||||
<div class="calendar_wrap">
|
||||
@ -190,7 +190,7 @@ function fncReset(thisObj){
|
||||
|
||||
|
||||
<!-- list -->
|
||||
<div class="list tbType01">
|
||||
<div class="list tb_type01">
|
||||
<table>
|
||||
<colgroup>
|
||||
<col style="width: 8%">
|
||||
|
||||
Loading…
Reference in New Issue
Block a user