From 94a7a9c3055cf45c344b169b6040fbc3b07bcc0c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B0=95=EC=84=9D=20=EC=B5=9C?= Date: Wed, 23 Nov 2022 11:51:20 +0900 Subject: [PATCH] =?UTF-8?q?=EC=82=AC=EC=9A=A9=EC=9E=90=EB=A1=9C=EA=B7=B8?= =?UTF-8?q?=20=EC=9E=91=EC=97=85=20=EC=99=84=EB=A3=8C.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/dbnt/faisp/config/BaseController.java | 1 + .../dbnt/faisp/config/FaispInterceptor.java | 1 + .../com/dbnt/faisp/config/SecurityConfig.java | 10 +-- .../com/dbnt/faisp/config/WebMvcConfig.java | 1 + .../main/codeMgt/service/CodeMgtService.java | 1 - .../main/userInfo/model/UserInoutLog.java | 2 + .../main/userInfo/model/UserRequestLog.java | 13 +--- .../mybatisMapper/UserInfoMapper.xml | 43 ++++++++++++- .../resources/static/js/userMgt/userLog.js | 8 ++- .../adminPage/authMgt/authEditModal.html | 4 +- .../templates/adminPage/authMgt/authMgt.html | 2 +- .../templates/adminPage/codeMgt/codeMgt.html | 4 +- .../templates/adminPage/menuMgt/menuMgt.html | 2 +- .../templates/adminPage/userLog/inoutLog.html | 64 +++++++++---------- .../adminPage/userLog/requestLog.html | 64 +++++++++---------- .../templates/adminPage/userMgt/userMgt.html | 2 +- .../common/modal/crackdownStatusModal.html | 2 +- .../templates/common/modal/menuModal.html | 2 +- .../templates/common/modal/userModal.html | 2 +- .../templates/equip/cellPhoneList.html | 2 +- .../templates/equip/equipHistory.html | 2 +- .../resources/templates/equip/equipList.html | 2 +- .../templates/equip/equipLogList.html | 2 +- .../templates/equip/equipStatus.html | 4 +- .../templates/equip/pvreUseList.html | 2 +- .../resources/templates/equip/qirUseList.html | 2 +- .../resources/templates/equip/useHistory.html | 2 +- .../resources/templates/faRpt/faRptBoard.html | 2 +- .../fishingBoat/fishingBoatMgt.html | 2 +- .../templates/fipTarget/ipShipList.html | 2 +- .../templates/fipTarget/partInfoList.html | 6 +- .../templates/fipTarget/partWorkList.html | 4 +- .../templates/fipTarget/vulnerableList.html | 4 +- .../igActivities/fpiMgt/affair/affairMgt.html | 6 +- .../fpiMgt/affairPlan/planMgt.html | 6 +- .../fpiMgt/affairResult/resultMgt.html | 6 +- .../templates/police/career/careerMgt.html | 2 +- .../police/education/educationMgt.html | 2 +- .../personnelStatus/personnelStatus.html | 6 +- .../templates/police/police/policeList.html | 2 +- .../publicBoard/board/boardPage.html | 2 +- .../publicBoard/notice/noticePage.html | 2 +- .../templates/publicBoard/qna/qnaPage.html | 2 +- .../publicBoard/reference/referencePage.html | 2 +- .../resources/templates/sri/sriBoard.html | 6 +- .../templates/translator/translator.html | 2 +- .../translator/translatorStatisticsLang.html | 4 +- src/main/resources/templates/user/myInfo.html | 4 +- 48 files changed, 180 insertions(+), 140 deletions(-) diff --git a/src/main/java/com/dbnt/faisp/config/BaseController.java b/src/main/java/com/dbnt/faisp/config/BaseController.java index 988d6a65..cb159880 100644 --- a/src/main/java/com/dbnt/faisp/config/BaseController.java +++ b/src/main/java/com/dbnt/faisp/config/BaseController.java @@ -76,6 +76,7 @@ public class BaseController { session.setAttribute("menuList", menuMgtService.selectAccessMenuListWhereUserSeq(loginUser.getUserSeq())); Map> codeMap = codeMgtService.getCommonCode(); session.setAttribute("commonCode", codeMap); + session.setAttribute("userOrgan", loginUser.getOgCd()); String belongValue = ""; belongValue += searchCodeValue(loginUser.getOgCd(), codeMap.get("OG")); belongValue += searchCodeValue(loginUser.getOfcCd(), codeMap.get("OFC")); diff --git a/src/main/java/com/dbnt/faisp/config/FaispInterceptor.java b/src/main/java/com/dbnt/faisp/config/FaispInterceptor.java index d97f2188..cbb6f5cc 100644 --- a/src/main/java/com/dbnt/faisp/config/FaispInterceptor.java +++ b/src/main/java/com/dbnt/faisp/config/FaispInterceptor.java @@ -36,6 +36,7 @@ public class FaispInterceptor implements HandlerInterceptor { log.setRequestMethod(request.getMethod()); log.setSearchParams(request.getQueryString()); log.setHandlerDescription(((HandlerMethod) handler).toString()); + log.setUserOrgan((String) request.getSession().getAttribute("userOrgan")); log.setUserBelong((String) request.getSession().getAttribute("belongValue")); userLogService.saveRequestLog(log); } diff --git a/src/main/java/com/dbnt/faisp/config/SecurityConfig.java b/src/main/java/com/dbnt/faisp/config/SecurityConfig.java index 99e017aa..eef3717f 100644 --- a/src/main/java/com/dbnt/faisp/config/SecurityConfig.java +++ b/src/main/java/com/dbnt/faisp/config/SecurityConfig.java @@ -19,6 +19,7 @@ import org.springframework.security.web.SecurityFilterChain; import org.springframework.security.web.access.AccessDeniedHandler; import org.springframework.security.web.authentication.AuthenticationFailureHandler; import org.springframework.security.web.authentication.AuthenticationSuccessHandler; +import org.springframework.security.web.authentication.logout.LogoutHandler; import org.springframework.security.web.authentication.logout.LogoutSuccessHandler; import org.springframework.security.web.savedrequest.HttpSessionRequestCache; import org.springframework.security.web.savedrequest.SavedRequest; @@ -72,6 +73,7 @@ public class SecurityConfig{ inoutLog.setInoutType("IOT001"); inoutLog.setContactIp(Utils.getClientIP(request)); inoutLog.setSessionId(request.getSession().getId()); + inoutLog.setUserOrgan((String) request.getSession().getAttribute("userOrgan")); inoutLog.setUserBelong((String) request.getSession().getAttribute("belongValue")); userLogService.saveInoutLog(inoutLog); @@ -95,16 +97,15 @@ public class SecurityConfig{ }; } @Bean - public LogoutSuccessHandler logoutSuccessHandler(){ + public LogoutHandler logoutHandler(){ return (request, response, authentication) -> { UserInoutLog inoutLog = new UserInoutLog(); inoutLog.setInoutType("IOT003"); inoutLog.setContactIp(Utils.getClientIP(request)); inoutLog.setSessionId(request.getSession().getId()); + inoutLog.setUserOrgan((String) request.getSession().getAttribute("userOrgan")); inoutLog.setUserBelong((String) request.getSession().getAttribute("belongValue")); userLogService.saveInoutLog(inoutLog); - - new DefaultRedirectStrategy().sendRedirect(request, response, "/"); }; } @@ -152,7 +153,8 @@ public class SecurityConfig{ .successHandler(loginSuccessHandler()) // 로그인 성공시 동작 수행. .and() // 로그아웃 설정 .logout().logoutRequestMatcher(new AntPathRequestMatcher("/logout")) // 로그아웃 시 URL 재정의 - .logoutSuccessHandler(logoutSuccessHandler()) // 로그아웃 성공시 동작 수행. + .addLogoutHandler(logoutHandler()) // 로그아웃 전 실행. + .logoutSuccessUrl("/login") .invalidateHttpSession(true) // HTTP Session 초기화 .deleteCookies("JSESSIONID") // 특정 쿠키 제거 .and() // 403 예외처리 핸들링 diff --git a/src/main/java/com/dbnt/faisp/config/WebMvcConfig.java b/src/main/java/com/dbnt/faisp/config/WebMvcConfig.java index f80e70fd..74e0fc7b 100644 --- a/src/main/java/com/dbnt/faisp/config/WebMvcConfig.java +++ b/src/main/java/com/dbnt/faisp/config/WebMvcConfig.java @@ -16,6 +16,7 @@ public class WebMvcConfig implements WebMvcConfigurer { .addPathPatterns("/**") .excludePathPatterns( "/", + "/login", "/favicon.ico", "/editorFileDisplay", "/fileDisplay", diff --git a/src/main/java/com/dbnt/faisp/main/codeMgt/service/CodeMgtService.java b/src/main/java/com/dbnt/faisp/main/codeMgt/service/CodeMgtService.java index a600d14c..6684e3a4 100644 --- a/src/main/java/com/dbnt/faisp/main/codeMgt/service/CodeMgtService.java +++ b/src/main/java/com/dbnt/faisp/main/codeMgt/service/CodeMgtService.java @@ -44,7 +44,6 @@ public class CodeMgtService{ } public Map> getCommonCode() { - //return codeMgtRepository.findByUseChkOrderByItemCdAsc("T"); List categoryList = codeCatgRepository.findAll(); List codeList = codeMgtRepository.findByOrderByItemCdAsc(); Map> categoryMap = new HashMap<>(); diff --git a/src/main/java/com/dbnt/faisp/main/userInfo/model/UserInoutLog.java b/src/main/java/com/dbnt/faisp/main/userInfo/model/UserInoutLog.java index 344b4d16..8fc3313f 100644 --- a/src/main/java/com/dbnt/faisp/main/userInfo/model/UserInoutLog.java +++ b/src/main/java/com/dbnt/faisp/main/userInfo/model/UserInoutLog.java @@ -32,6 +32,8 @@ public class UserInoutLog extends BaseModel { private String contactIp; @Column(name = "session_id") private String sessionId; + @Column(name = "user_organ") + private String userOrgan; @Column(name = "user_belong") private String userBelong; @Column(name = "wrt_dt") diff --git a/src/main/java/com/dbnt/faisp/main/userInfo/model/UserRequestLog.java b/src/main/java/com/dbnt/faisp/main/userInfo/model/UserRequestLog.java index 93727134..8f5711be 100644 --- a/src/main/java/com/dbnt/faisp/main/userInfo/model/UserRequestLog.java +++ b/src/main/java/com/dbnt/faisp/main/userInfo/model/UserRequestLog.java @@ -31,20 +31,11 @@ public class UserRequestLog extends BaseModel { private String searchParams; @Column(name = "handler_description") private String handlerDescription; + @Column(name = "user_organ") + private String userOrgan; @Column(name = "user_belong") private String userBelong; @Column(name = "wrt_dt") @DateTimeFormat(pattern = "yyyy-MM-dd") private LocalDateTime wrtDt; - - @Transient - private String organValue; - @Transient - private String officeValue; - @Transient - private String titleValue; - @Transient - private String userNm; - @Transient - private String userId; } diff --git a/src/main/resources/mybatisMapper/UserInfoMapper.xml b/src/main/resources/mybatisMapper/UserInfoMapper.xml index 80912433..d0411a19 100644 --- a/src/main/resources/mybatisMapper/UserInfoMapper.xml +++ b/src/main/resources/mybatisMapper/UserInfoMapper.xml @@ -316,7 +316,28 @@ - + user_organ in + + #{organCd} + + + and contact_ip like '%'||#{contactIp}||'%' + + + and request_url like '%'||#{requestUrl}||'%' + + + and request_method = #{requestMethod} + + + and user_belong like '%'||#{userBelong}||'%' + + + and wrt_dt >= #{startDate}::date + + + and wrt_dt <= #{endDate}::date+1 + - + user_organ in + + #{organCd} + + + and contact_ip like '%'||#{contactIp}||'%' + + + and inout_type = #{inoutType} + + + and user_belong like '%'||#{userBelong}||'%' + + + and wrt_dt >= #{startDate}::date + + + and wrt_dt <= #{endDate}::date+1 + 대분류 중분류 diff --git a/src/main/resources/templates/adminPage/userLog/inoutLog.html b/src/main/resources/templates/adminPage/userLog/inoutLog.html index b48383fa..7c918cc4 100644 --- a/src/main/resources/templates/adminPage/userLog/inoutLog.html +++ b/src/main/resources/templates/adminPage/userLog/inoutLog.html @@ -7,7 +7,7 @@
-

외사경찰 관리

+

사용자 로그

-
-
-
- +
+
+
+
+
+ +
+
+ +
+
+
+
+ +
+
+
+ + +
+
+
-
- +
+
-
- -
-
- -
-
- -
-
@@ -72,7 +70,7 @@
- + diff --git a/src/main/resources/templates/adminPage/userLog/requestLog.html b/src/main/resources/templates/adminPage/userLog/requestLog.html index 85f7c7d3..6fa843fc 100644 --- a/src/main/resources/templates/adminPage/userLog/requestLog.html +++ b/src/main/resources/templates/adminPage/userLog/requestLog.html @@ -7,7 +7,7 @@
-

외사경찰 관리

+

사용자 로그

-
+
-
- +
+
+
+ +
+
+ +
+
+ +
+
+
+
+ +
+
+
+ + +
+
+
-
- +
+
-
- -
-
- -
-
- -
-
@@ -72,7 +72,7 @@
접속아이피 결과 사용자
- + diff --git a/src/main/resources/templates/adminPage/userMgt/userMgt.html b/src/main/resources/templates/adminPage/userMgt/userMgt.html index f3dc6951..d2b1ee08 100644 --- a/src/main/resources/templates/adminPage/userMgt/userMgt.html +++ b/src/main/resources/templates/adminPage/userMgt/userMgt.html @@ -75,7 +75,7 @@
접속아이피 요청 URL 접근 방식
- + diff --git a/src/main/resources/templates/common/modal/crackdownStatusModal.html b/src/main/resources/templates/common/modal/crackdownStatusModal.html index 39e3ef91..a6ecedb0 100644 --- a/src/main/resources/templates/common/modal/crackdownStatusModal.html +++ b/src/main/resources/templates/common/modal/crackdownStatusModal.html @@ -24,7 +24,7 @@
소속 부서
- + diff --git a/src/main/resources/templates/common/modal/menuModal.html b/src/main/resources/templates/common/modal/menuModal.html index 7e23b827..ce49e555 100644 --- a/src/main/resources/templates/common/modal/menuModal.html +++ b/src/main/resources/templates/common/modal/menuModal.html @@ -52,7 +52,7 @@
연번 사건번호 나포일시
- + diff --git a/src/main/resources/templates/common/modal/userModal.html b/src/main/resources/templates/common/modal/userModal.html index 4824c68d..346379b7 100644 --- a/src/main/resources/templates/common/modal/userModal.html +++ b/src/main/resources/templates/common/modal/userModal.html @@ -43,7 +43,7 @@
대분류 중분류
- + diff --git a/src/main/resources/templates/equip/cellPhoneList.html b/src/main/resources/templates/equip/cellPhoneList.html index ec9c3d2e..2a00e99d 100644 --- a/src/main/resources/templates/equip/cellPhoneList.html +++ b/src/main/resources/templates/equip/cellPhoneList.html @@ -46,7 +46,7 @@
소속 부서
- + diff --git a/src/main/resources/templates/equip/equipHistory.html b/src/main/resources/templates/equip/equipHistory.html index be642b01..2404243f 100644 --- a/src/main/resources/templates/equip/equipHistory.html +++ b/src/main/resources/templates/equip/equipHistory.html @@ -19,7 +19,7 @@
연번 소속
- + diff --git a/src/main/resources/templates/equip/equipList.html b/src/main/resources/templates/equip/equipList.html index f16d09fb..a2cdd642 100644 --- a/src/main/resources/templates/equip/equipList.html +++ b/src/main/resources/templates/equip/equipList.html @@ -38,7 +38,7 @@
작성자 등록일
- + diff --git a/src/main/resources/templates/equip/equipLogList.html b/src/main/resources/templates/equip/equipLogList.html index ffb170d9..5f299990 100644 --- a/src/main/resources/templates/equip/equipLogList.html +++ b/src/main/resources/templates/equip/equipLogList.html @@ -46,7 +46,7 @@
소속 세부소속
- + diff --git a/src/main/resources/templates/equip/equipStatus.html b/src/main/resources/templates/equip/equipStatus.html index a0f53ab1..04f9d11f 100644 --- a/src/main/resources/templates/equip/equipStatus.html +++ b/src/main/resources/templates/equip/equipStatus.html @@ -38,7 +38,7 @@
분류 세부분류 관서
- + @@ -49,7 +49,7 @@ - + diff --git a/src/main/resources/templates/equip/pvreUseList.html b/src/main/resources/templates/equip/pvreUseList.html index c9870117..a6f9da6d 100644 --- a/src/main/resources/templates/equip/pvreUseList.html +++ b/src/main/resources/templates/equip/pvreUseList.html @@ -73,7 +73,7 @@
분류 세부분류 총계동해 제주
인천서 평택서
- + diff --git a/src/main/resources/templates/equip/qirUseList.html b/src/main/resources/templates/equip/qirUseList.html index 31a77706..3c16651f 100644 --- a/src/main/resources/templates/equip/qirUseList.html +++ b/src/main/resources/templates/equip/qirUseList.html @@ -73,7 +73,7 @@
연번 경찰서
- + diff --git a/src/main/resources/templates/equip/useHistory.html b/src/main/resources/templates/equip/useHistory.html index 0e454a3b..66538025 100644 --- a/src/main/resources/templates/equip/useHistory.html +++ b/src/main/resources/templates/equip/useHistory.html @@ -19,7 +19,7 @@
연번 경찰서
- + diff --git a/src/main/resources/templates/faRpt/faRptBoard.html b/src/main/resources/templates/faRpt/faRptBoard.html index b98ad520..0e2e399e 100644 --- a/src/main/resources/templates/faRpt/faRptBoard.html +++ b/src/main/resources/templates/faRpt/faRptBoard.html @@ -77,7 +77,7 @@
작성자 등록일
- + diff --git a/src/main/resources/templates/faStatistics/fishingBoat/fishingBoatMgt.html b/src/main/resources/templates/faStatistics/fishingBoat/fishingBoatMgt.html index f0ca854a..4d171294 100644 --- a/src/main/resources/templates/faStatistics/fishingBoat/fishingBoatMgt.html +++ b/src/main/resources/templates/faStatistics/fishingBoat/fishingBoatMgt.html @@ -132,7 +132,7 @@
상태 분류
- + diff --git a/src/main/resources/templates/fipTarget/ipShipList.html b/src/main/resources/templates/fipTarget/ipShipList.html index 8de9ec19..608d7d9a 100644 --- a/src/main/resources/templates/fipTarget/ipShipList.html +++ b/src/main/resources/templates/fipTarget/ipShipList.html @@ -34,7 +34,7 @@
나포일시 나포해점
- + diff --git a/src/main/resources/templates/fipTarget/partInfoList.html b/src/main/resources/templates/fipTarget/partInfoList.html index 752f6003..0dc13908 100644 --- a/src/main/resources/templates/fipTarget/partInfoList.html +++ b/src/main/resources/templates/fipTarget/partInfoList.html @@ -81,7 +81,7 @@
항로 사업자
(한국대리점)
선명
- + @@ -92,7 +92,7 @@ - + @@ -110,7 +110,7 @@ - + diff --git a/src/main/resources/templates/fipTarget/partWorkList.html b/src/main/resources/templates/fipTarget/partWorkList.html index 5ef49105..f37470b1 100644 --- a/src/main/resources/templates/fipTarget/partWorkList.html +++ b/src/main/resources/templates/fipTarget/partWorkList.html @@ -36,7 +36,7 @@
해경서 육경서 터미널명공공요금 최종수정일
폐쇄 0개소 0명
근무방법 비고
- + @@ -45,7 +45,7 @@ - + diff --git a/src/main/resources/templates/fipTarget/vulnerableList.html b/src/main/resources/templates/fipTarget/vulnerableList.html index b7dff6f3..17c98e03 100644 --- a/src/main/resources/templates/fipTarget/vulnerableList.html +++ b/src/main/resources/templates/fipTarget/vulnerableList.html @@ -28,12 +28,12 @@
외사
터미널명
작성자 일시첨부파일 최근수정일
사건처리 범죄첩보제공 SRI
- + - + diff --git a/src/main/resources/templates/igActivities/fpiMgt/affair/affairMgt.html b/src/main/resources/templates/igActivities/fpiMgt/affair/affairMgt.html index efa845da..dab4c1c7 100644 --- a/src/main/resources/templates/igActivities/fpiMgt/affair/affairMgt.html +++ b/src/main/resources/templates/igActivities/fpiMgt/affair/affairMgt.html @@ -117,9 +117,9 @@
-
구분 경찰서 취약등급
A급 B급 C급
+
- + @@ -141,7 +141,7 @@ - + diff --git a/src/main/resources/templates/igActivities/fpiMgt/affairPlan/planMgt.html b/src/main/resources/templates/igActivities/fpiMgt/affairPlan/planMgt.html index af32e12f..3a82968b 100644 --- a/src/main/resources/templates/igActivities/fpiMgt/affairPlan/planMgt.html +++ b/src/main/resources/templates/igActivities/fpiMgt/affairPlan/planMgt.html @@ -83,9 +83,9 @@
-
분야1 분야2
+
- + @@ -97,7 +97,7 @@ - + diff --git a/src/main/resources/templates/igActivities/fpiMgt/affairResult/resultMgt.html b/src/main/resources/templates/igActivities/fpiMgt/affairResult/resultMgt.html index 6f7a21d6..d066c944 100644 --- a/src/main/resources/templates/igActivities/fpiMgt/affairResult/resultMgt.html +++ b/src/main/resources/templates/igActivities/fpiMgt/affairResult/resultMgt.html @@ -78,9 +78,9 @@
-
제목 시행일자상태
+
- + @@ -93,7 +93,7 @@ - + diff --git a/src/main/resources/templates/police/career/careerMgt.html b/src/main/resources/templates/police/career/careerMgt.html index 6c89d2e9..e930f0cc 100644 --- a/src/main/resources/templates/police/career/careerMgt.html +++ b/src/main/resources/templates/police/career/careerMgt.html @@ -78,7 +78,7 @@
제목 사업기간상태
- + diff --git a/src/main/resources/templates/police/education/educationMgt.html b/src/main/resources/templates/police/education/educationMgt.html index 9ca74f71..abb094b3 100644 --- a/src/main/resources/templates/police/education/educationMgt.html +++ b/src/main/resources/templates/police/education/educationMgt.html @@ -79,7 +79,7 @@
순번 계급 성명
- + diff --git a/src/main/resources/templates/police/personnelStatus/personnelStatus.html b/src/main/resources/templates/police/personnelStatus/personnelStatus.html index 0dec5d07..20786ab8 100644 --- a/src/main/resources/templates/police/personnelStatus/personnelStatus.html +++ b/src/main/resources/templates/police/personnelStatus/personnelStatus.html @@ -34,7 +34,7 @@
순번 계급 성명
- + @@ -44,7 +44,7 @@ - + @@ -53,7 +53,7 @@ - + diff --git a/src/main/resources/templates/police/police/policeList.html b/src/main/resources/templates/police/police/policeList.html index 8d65e4b6..e0588d2b 100644 --- a/src/main/resources/templates/police/police/policeList.html +++ b/src/main/resources/templates/police/police/policeList.html @@ -82,7 +82,7 @@
관서 정원 현원 수정일
현원
- + diff --git a/src/main/resources/templates/publicBoard/board/boardPage.html b/src/main/resources/templates/publicBoard/board/boardPage.html index dbf54fe2..25d7cc84 100644 --- a/src/main/resources/templates/publicBoard/board/boardPage.html +++ b/src/main/resources/templates/publicBoard/board/boardPage.html @@ -58,7 +58,7 @@
순번 계급 성명
- + diff --git a/src/main/resources/templates/publicBoard/notice/noticePage.html b/src/main/resources/templates/publicBoard/notice/noticePage.html index 3cf9d580..669e0f42 100644 --- a/src/main/resources/templates/publicBoard/notice/noticePage.html +++ b/src/main/resources/templates/publicBoard/notice/noticePage.html @@ -61,7 +61,7 @@
제목 관서
- + diff --git a/src/main/resources/templates/publicBoard/qna/qnaPage.html b/src/main/resources/templates/publicBoard/qna/qnaPage.html index a851a1d1..74c59f32 100644 --- a/src/main/resources/templates/publicBoard/qna/qnaPage.html +++ b/src/main/resources/templates/publicBoard/qna/qnaPage.html @@ -59,7 +59,7 @@
제목 관서
- + diff --git a/src/main/resources/templates/publicBoard/reference/referencePage.html b/src/main/resources/templates/publicBoard/reference/referencePage.html index ee1edc70..28b05249 100644 --- a/src/main/resources/templates/publicBoard/reference/referencePage.html +++ b/src/main/resources/templates/publicBoard/reference/referencePage.html @@ -68,7 +68,7 @@
제목 관서
- + diff --git a/src/main/resources/templates/sri/sriBoard.html b/src/main/resources/templates/sri/sriBoard.html index a307ebb4..9a422c08 100644 --- a/src/main/resources/templates/sri/sriBoard.html +++ b/src/main/resources/templates/sri/sriBoard.html @@ -72,9 +72,9 @@
-
제목 관서
+
- + @@ -87,7 +87,7 @@ - + diff --git a/src/main/resources/templates/translator/translator.html b/src/main/resources/templates/translator/translator.html index 87e6e18e..aaa7bfe6 100644 --- a/src/main/resources/templates/translator/translator.html +++ b/src/main/resources/templates/translator/translator.html @@ -92,7 +92,7 @@
상태 보고서
번호
작성일시
- + diff --git a/src/main/resources/templates/translator/translatorStatisticsLang.html b/src/main/resources/templates/translator/translatorStatisticsLang.html index 59eb4134..d1785af3 100644 --- a/src/main/resources/templates/translator/translatorStatisticsLang.html +++ b/src/main/resources/templates/translator/translatorStatisticsLang.html @@ -25,7 +25,7 @@
연번 관서명 언어
- + @@ -34,7 +34,7 @@ - + diff --git a/src/main/resources/templates/user/myInfo.html b/src/main/resources/templates/user/myInfo.html index 9d1b36a9..e7ab5a6a 100644 --- a/src/main/resources/templates/user/myInfo.html +++ b/src/main/resources/templates/user/myInfo.html @@ -191,9 +191,9 @@ -
어권별 구분 총계 중부청동해청 제주청
연번
+
- +
순번 대분류