diff --git a/src/main/java/geoinfo/drilling/inquiry/DrillingInquiryController.java b/src/main/java/geoinfo/drilling/inquiry/DrillingInquiryController.java index a1ecc9f6..30e1bd4d 100644 --- a/src/main/java/geoinfo/drilling/inquiry/DrillingInquiryController.java +++ b/src/main/java/geoinfo/drilling/inquiry/DrillingInquiryController.java @@ -5,6 +5,7 @@ import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; +import java.io.UnsupportedEncodingException; import java.net.MalformedURLException; import java.net.URL; import java.text.ParseException; @@ -29,6 +30,7 @@ import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.http.MediaType; +import org.springframework.http.ResponseEntity; import org.springframework.stereotype.Controller; import org.springframework.ui.ModelMap; import org.springframework.web.bind.annotation.RequestBody; @@ -70,9 +72,9 @@ public class DrillingInquiryController { return "/drilling/inquiry/drilling_inquiry"; } - @RequestMapping(value = "/drilling/inquiry/list.do", method = RequestMethod.GET) + @RequestMapping(value = "/drilling/inquiry/list.do", method = RequestMethod.GET, produces = { "application/json; charset=utf-8" }) @ResponseBody - public JSONObject drillingInquiryList ( + public ResponseEntity drillingInquiryList ( HttpServletRequest request, @RequestParam HashMap params, HttpServletResponse response @@ -113,6 +115,25 @@ public class DrillingInquiryController { "jSONOResponse.toJSONString():[" + jSONOResponse.toJSONString() + "]\n" + "\n--------------------------------------------------------------\n"); - return jSONOResponse; + + int contentLength = 0; + try { + contentLength = jSONOResponse.toJSONString().getBytes("UTF-8").length; + } catch (UnsupportedEncodingException e1) { + // TODO Auto-generated catch block + e1.printStackTrace(); + } + response.setStatus(HttpServletResponse.SC_OK); + response.setCharacterEncoding("UTF-8"); + response.setHeader("Content-Type", "application/json; charset=utf-8"); + response.setContentLength(contentLength); // Content-Length 설정 + try { + response.getWriter().print(jSONOResponse); + } catch (IOException e) { + // TODO Auto-generated catch block + e.printStackTrace(); + } + + return null; } } diff --git a/src/main/java/geoinfo/drilling/inquiry/service/impl/DrillingInquiryServiceImpl.java b/src/main/java/geoinfo/drilling/inquiry/service/impl/DrillingInquiryServiceImpl.java index 192b8d37..b9c9aa74 100644 --- a/src/main/java/geoinfo/drilling/inquiry/service/impl/DrillingInquiryServiceImpl.java +++ b/src/main/java/geoinfo/drilling/inquiry/service/impl/DrillingInquiryServiceImpl.java @@ -2,8 +2,12 @@ package geoinfo.drilling.inquiry.service.impl; import geoinfo.drilling.inquiry.service.DrillingInquiryMapper; import geoinfo.drilling.inquiry.service.DrillingInquiryService; +import oracle.sql.TIMESTAMP; import java.sql.SQLException; +import java.sql.Timestamp; +import java.text.SimpleDateFormat; +import java.util.Date; import java.util.HashMap; import java.util.List; import java.util.Map; @@ -27,17 +31,40 @@ public class DrillingInquiryServiceImpl implements DrillingInquiryService { public JSONObject drillingInquiryList(HttpServletRequest request, HashMap params) throws Exception { JSONObject jsonResponse = new JSONObject(); + SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); try { try { - Long count = drillingInquiryMapper.sPCntTblCsiByKeyword(params); - List> data = drillingInquiryMapper.sPGetTblCsiByKeyword(params); + Long count = drillingInquiryMapper.sPCntTblCsiByKeyword(params); + List> datas = drillingInquiryMapper.sPGetTblCsiByKeyword(params); + + String crtDtKey = "crtDt"; + + for( HashMap data : datas ) { + + + TIMESTAMP oracleTimestamp = (TIMESTAMP)data.get(crtDtKey); + Timestamp javaTimestamp = oracleTimestamp.timestampValue(); + + + String formattedDate = dateFormat.format(javaTimestamp); + data.put(crtDtKey, formattedDate); + } jsonResponse.put("count", count); - jsonResponse.put("data", data); + jsonResponse.put("datas", datas); return jsonResponse; } catch (SQLException e) { - throw new Exception( e.getMessage() ); + String strTxt = + "---------- BUG REPORTING START ----------" + "\n" + + "에러 문구:[" + request.getRequestURI() + " " + "]" + "\n" + + "params:[\n" + params.toString() + "\n]\n" + + "e.getMessage():[\n" + e.getMessage() + "\n]\n" + "\n" + + "new Date().toString():[" + new Date().toString() + "]\n" + "\n" + + "---------- BUG REPORTING END ----------" + "\n" + + ""; + System.out.println(strTxt); + throw new Exception( "오류가 발생하였습니다." + "\n" + "SQLException" ); } diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/EgovComExcepHndlr.class b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/EgovComExcepHndlr.class new file mode 100644 index 00000000..906660cc Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/EgovComExcepHndlr.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/EgovComOthersExcepHndlr.class b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/EgovComOthersExcepHndlr.class new file mode 100644 index 00000000..7a059dcb Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/EgovComOthersExcepHndlr.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/EgovComTraceHandler.class b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/EgovComTraceHandler.class new file mode 100644 index 00000000..a5ca0d26 Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/EgovComTraceHandler.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/EgovComponentChecker.class b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/EgovComponentChecker.class new file mode 100644 index 00000000..09bbc929 Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/EgovComponentChecker.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/EgovMessageSource.class b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/EgovMessageSource.class new file mode 100644 index 00000000..3e16351e Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/EgovMessageSource.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/EgovWebUtil.class b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/EgovWebUtil.class new file mode 100644 index 00000000..ef452ac6 Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/EgovWebUtil.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/ImagePaginationRenderer.class b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/ImagePaginationRenderer.class new file mode 100644 index 00000000..acd8b0fa Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/ImagePaginationRenderer.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/IncludedCompInfoVO.class b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/IncludedCompInfoVO.class new file mode 100644 index 00000000..84606698 Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/IncludedCompInfoVO.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/LoginVO.class b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/LoginVO.class new file mode 100644 index 00000000..5cd92563 Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/LoginVO.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/SessionVO.class b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/SessionVO.class new file mode 100644 index 00000000..3e265651 Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/SessionVO.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/annotation/IncludedInfo.class b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/annotation/IncludedInfo.class new file mode 100644 index 00000000..81b50109 Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/annotation/IncludedInfo.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/filter/HTMLTagFilter.class b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/filter/HTMLTagFilter.class new file mode 100644 index 00000000..00d2cade Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/filter/HTMLTagFilter.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/filter/HTMLTagFilterRequestWrapper.class b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/filter/HTMLTagFilterRequestWrapper.class new file mode 100644 index 00000000..4cd94762 Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/filter/HTMLTagFilterRequestWrapper.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/interceptor/AuthenticInterceptor.class b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/interceptor/AuthenticInterceptor.class new file mode 100644 index 00000000..9273edeb Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/interceptor/AuthenticInterceptor.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/interceptor/IpObtainInterceptor.class b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/interceptor/IpObtainInterceptor.class new file mode 100644 index 00000000..73bb3fc7 Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/interceptor/IpObtainInterceptor.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/service/CmmnDetailCode.class b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/service/CmmnDetailCode.class new file mode 100644 index 00000000..69973fdf Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/service/CmmnDetailCode.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/service/EgovFileMngService.class b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/service/EgovFileMngService.class new file mode 100644 index 00000000..3124844b Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/service/EgovFileMngService.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/service/EgovFileMngUtil.class b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/service/EgovFileMngUtil.class new file mode 100644 index 00000000..87f7714a Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/service/EgovFileMngUtil.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/service/EgovProperties.class b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/service/EgovProperties.class new file mode 100644 index 00000000..05550e85 Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/service/EgovProperties.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/service/EgovUserDetailsService.class b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/service/EgovUserDetailsService.class new file mode 100644 index 00000000..2bbca03b Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/service/EgovUserDetailsService.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/service/FileVO.class b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/service/FileVO.class new file mode 100644 index 00000000..d59ee102 Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/service/FileVO.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/service/Globals.class b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/service/Globals.class new file mode 100644 index 00000000..30da8a07 Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/service/Globals.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/service/impl/EgovComAbstractDAO.class b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/service/impl/EgovComAbstractDAO.class new file mode 100644 index 00000000..ede0c1c5 Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/service/impl/EgovComAbstractDAO.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/service/impl/EgovFileMngServiceImpl.class b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/service/impl/EgovFileMngServiceImpl.class new file mode 100644 index 00000000..37fd76c7 Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/service/impl/EgovFileMngServiceImpl.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/service/impl/EgovTestUserDetailsServiceImpl.class b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/service/impl/EgovTestUserDetailsServiceImpl.class new file mode 100644 index 00000000..7dd729c5 Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/service/impl/EgovTestUserDetailsServiceImpl.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/service/impl/EgovUserDetailsSessionServiceImpl.class b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/service/impl/EgovUserDetailsSessionServiceImpl.class new file mode 100644 index 00000000..9822b0a4 Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/service/impl/EgovUserDetailsSessionServiceImpl.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/service/impl/FileManageDAO.class b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/service/impl/FileManageDAO.class new file mode 100644 index 00000000..4a745af3 Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/service/impl/FileManageDAO.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/util/EgovUserDetailsHelper.class b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/util/EgovUserDetailsHelper.class new file mode 100644 index 00000000..ce8ce293 Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/util/EgovUserDetailsHelper.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/web/EgovBindingInitializer.class b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/web/EgovBindingInitializer.class new file mode 100644 index 00000000..a8a9ce73 Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/web/EgovBindingInitializer.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/web/EgovComIndexController.class b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/web/EgovComIndexController.class new file mode 100644 index 00000000..2378d0cd Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/web/EgovComIndexController.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/web/EgovComUtlController.class b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/web/EgovComUtlController.class new file mode 100644 index 00000000..aa82396b Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/web/EgovComUtlController.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/web/EgovFileDownloadController.class b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/web/EgovFileDownloadController.class new file mode 100644 index 00000000..62e4e429 Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/web/EgovFileDownloadController.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/web/EgovFileMngController.class b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/web/EgovFileMngController.class new file mode 100644 index 00000000..bb4f8eed Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/web/EgovFileMngController.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/web/EgovImageProcessController.class b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/web/EgovImageProcessController.class new file mode 100644 index 00000000..dcc93c01 Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/web/EgovImageProcessController.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/web/EgovMultipartResolver.class b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/web/EgovMultipartResolver.class new file mode 100644 index 00000000..6851a741 Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/cmm/web/EgovMultipartResolver.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/json/JSONArray.class b/src/main/webapp/WEB-INF/classes/egovframework/com/json/JSONArray.class new file mode 100644 index 00000000..e32b9dd0 Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/json/JSONArray.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/json/JSONException.class b/src/main/webapp/WEB-INF/classes/egovframework/com/json/JSONException.class new file mode 100644 index 00000000..11f7b714 Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/json/JSONException.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/json/JSONObject$Null.class b/src/main/webapp/WEB-INF/classes/egovframework/com/json/JSONObject$Null.class new file mode 100644 index 00000000..9ce6ba43 Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/json/JSONObject$Null.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/json/JSONObject.class b/src/main/webapp/WEB-INF/classes/egovframework/com/json/JSONObject.class new file mode 100644 index 00000000..79ae7566 Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/json/JSONObject.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/json/JSONString.class b/src/main/webapp/WEB-INF/classes/egovframework/com/json/JSONString.class new file mode 100644 index 00000000..4ee52d9a Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/json/JSONString.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/json/JSONTokener.class b/src/main/webapp/WEB-INF/classes/egovframework/com/json/JSONTokener.class new file mode 100644 index 00000000..3a9ee955 Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/json/JSONTokener.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/iis/service/CntcInstt.class b/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/iis/service/CntcInstt.class new file mode 100644 index 00000000..8c18b0e4 Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/iis/service/CntcInstt.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/iis/service/CntcInsttVO.class b/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/iis/service/CntcInsttVO.class new file mode 100644 index 00000000..cd2b8709 Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/iis/service/CntcInsttVO.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/iis/service/CntcService.class b/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/iis/service/CntcService.class new file mode 100644 index 00000000..3a0304e2 Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/iis/service/CntcService.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/iis/service/CntcServiceVO.class b/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/iis/service/CntcServiceVO.class new file mode 100644 index 00000000..9267ae84 Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/iis/service/CntcServiceVO.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/iis/service/CntcSystem.class b/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/iis/service/CntcSystem.class new file mode 100644 index 00000000..2158d737 Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/iis/service/CntcSystem.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/iis/service/CntcSystemVO.class b/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/iis/service/CntcSystemVO.class new file mode 100644 index 00000000..685a0898 Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/iis/service/CntcSystemVO.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/iis/service/EgovCntcInsttService.class b/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/iis/service/EgovCntcInsttService.class new file mode 100644 index 00000000..fe14c3d6 Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/iis/service/EgovCntcInsttService.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/iis/service/impl/CntcInsttDAO.class b/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/iis/service/impl/CntcInsttDAO.class new file mode 100644 index 00000000..6221cb96 Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/iis/service/impl/CntcInsttDAO.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/iis/service/impl/EgovCntcInsttServiceImpl.class b/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/iis/service/impl/EgovCntcInsttServiceImpl.class new file mode 100644 index 00000000..1d8788c2 Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/iis/service/impl/EgovCntcInsttServiceImpl.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/iis/web/EgovCntcInsttController.class b/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/iis/web/EgovCntcInsttController.class new file mode 100644 index 00000000..7eec727f Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/iis/web/EgovCntcInsttController.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/ims/service/CntcMessage.class b/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/ims/service/CntcMessage.class new file mode 100644 index 00000000..a2c2adc8 Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/ims/service/CntcMessage.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/ims/service/CntcMessageItem.class b/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/ims/service/CntcMessageItem.class new file mode 100644 index 00000000..5b1c7531 Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/ims/service/CntcMessageItem.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/ims/service/CntcMessageItemVO.class b/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/ims/service/CntcMessageItemVO.class new file mode 100644 index 00000000..e2d3f3fe Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/ims/service/CntcMessageItemVO.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/ims/service/CntcMessageVO.class b/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/ims/service/CntcMessageVO.class new file mode 100644 index 00000000..7786091b Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/ims/service/CntcMessageVO.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/ims/service/EgovCntcMessageService.class b/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/ims/service/EgovCntcMessageService.class new file mode 100644 index 00000000..829ed5b8 Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/ims/service/EgovCntcMessageService.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/ims/service/impl/CntcMessageDAO.class b/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/ims/service/impl/CntcMessageDAO.class new file mode 100644 index 00000000..1f1e38c2 Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/ims/service/impl/CntcMessageDAO.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/ims/service/impl/EgovCntcMessageServiceImpl.class b/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/ims/service/impl/EgovCntcMessageServiceImpl.class new file mode 100644 index 00000000..c0f0c8d1 Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/ims/service/impl/EgovCntcMessageServiceImpl.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/ims/web/EgovCntcMessageController.class b/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/ims/web/EgovCntcMessageController.class new file mode 100644 index 00000000..e95c8495 Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/ims/web/EgovCntcMessageController.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/ist/service/CntcSttus.class b/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/ist/service/CntcSttus.class new file mode 100644 index 00000000..fdb98930 Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/ist/service/CntcSttus.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/ist/service/CntcSttusVO.class b/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/ist/service/CntcSttusVO.class new file mode 100644 index 00000000..f527fe9b Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/ist/service/CntcSttusVO.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/ist/service/EgovCntcSttusService.class b/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/ist/service/EgovCntcSttusService.class new file mode 100644 index 00000000..f40a9b51 Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/ist/service/EgovCntcSttusService.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/ist/service/impl/CntcSttusDAO.class b/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/ist/service/impl/CntcSttusDAO.class new file mode 100644 index 00000000..976310fe Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/ist/service/impl/CntcSttusDAO.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/ist/service/impl/EgovCntcSttusServiceImpl.class b/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/ist/service/impl/EgovCntcSttusServiceImpl.class new file mode 100644 index 00000000..99f19efd Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/ist/service/impl/EgovCntcSttusServiceImpl.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/ist/web/EgovCntcSttusController.class b/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/ist/web/EgovCntcSttusController.class new file mode 100644 index 00000000..2e6dc526 Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/ist/web/EgovCntcSttusController.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/sim/service/EgovSystemCntcService.class b/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/sim/service/EgovSystemCntcService.class new file mode 100644 index 00000000..53b4902b Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/sim/service/EgovSystemCntcService.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/sim/service/SystemCntc.class b/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/sim/service/SystemCntc.class new file mode 100644 index 00000000..ecd847ab Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/sim/service/SystemCntc.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/sim/service/SystemCntcVO.class b/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/sim/service/SystemCntcVO.class new file mode 100644 index 00000000..900f7dc3 Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/sim/service/SystemCntcVO.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/sim/service/impl/EgovSystemCntcServiceImpl.class b/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/sim/service/impl/EgovSystemCntcServiceImpl.class new file mode 100644 index 00000000..c9c47bfc Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/sim/service/impl/EgovSystemCntcServiceImpl.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/sim/service/impl/SystemCntcDAO.class b/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/sim/service/impl/SystemCntcDAO.class new file mode 100644 index 00000000..bc57b1dd Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/sim/service/impl/SystemCntcDAO.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/sim/web/EgovSystemCntcController.class b/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/sim/web/EgovSystemCntcController.class new file mode 100644 index 00000000..91f83048 Binary files /dev/null and b/src/main/webapp/WEB-INF/classes/egovframework/com/ssi/syi/sim/web/EgovSystemCntcController.class differ diff --git a/src/main/webapp/WEB-INF/classes/egovframework/egovProps/geoinfo.properties b/src/main/webapp/WEB-INF/classes/egovframework/egovProps/geoinfo.properties new file mode 100644 index 00000000..fbe5ce40 --- /dev/null +++ b/src/main/webapp/WEB-INF/classes/egovframework/egovProps/geoinfo.properties @@ -0,0 +1,68 @@ +#------------------------------------------------------------------------ +# +# geoinfoCH.properties : \uc2dc\uc2a4\ud15c \uc18d\uc131 \uc124\uc815 \ud30c\uc77c +# +#-------------------------------------------------------------------------- +# 1. key = value \uad6c\uc870\uc785\ub2c8\ub2e4. +# 2. key\uac12\uc740 \uacf5\ubc31\ubb38\uc790\ub97c \ud3ec\ud568\ud558\uba74 \uc548 \ub418\ub098 value\uac12\uc740 \uacf5\ubc31\ubb38\uc790\ub97c \uac00\uc9c8 \uc218 \uc788\uc2b5\ub2c8\ub2e4. +# 3. key\uac12\uc73c\ub85c \ud55c\uae00\uc744 \uc0ac\uc6a9\ud560 \uc218 \uc5c6\uace0 value\uac12\uc740 \ud55c\uae00\uc0ac\uc6a9\uc774 \uac00\ub2a5\ud569\ub2c8\ub2e4. +# 4. \uc904\uc744 \ubc14\uafc0 \ud544\uc694\uac00 \uc788\uc73c\uba74 '\'\ub97c \ub77c\uc778\uc758 \ub05d\uc5d0 \ucd94\uac00\ud558\uc2dc\uc624. +# 5. '\'\ubb38\uc790\ub97c \uc0ac\uc6a9\ud560 \ud544\uc694\uac00 \uc788\ub2e4\uba74 '\\'\ub97c \uc0ac\uc6a9\ud558\uc2dc\uc624. +# 6. Windows\uc5d0\uc11c\uc758 \ub514\ub809\ud1a0\ub9ac \ud45c\uc2dc : '\\' or '/' ( not '\') +# 7. Unix\uc5d0\uc11c\uc758 \ub514\ub809\ud1a0\ub9ac \ud45c\uc2dc : '/' +# 8. \uc8fc\uc11d\ubb38 \ucc98\ub9ac\ub294 #\uc0ac\uc6a9 +# 9. \uc11c\ube14\ub9bf\uc5d0\uc11c \ucc38\uc870\ud558\ub294 value\uc640 \uc5b4\ud50c\ub9ac\ucf00\uc774\uc158\uc5d0\uc11c \ucc38\uc870\ud558\ub294 value\uac12\uc740 \uc11c\ub85c \uac12\uc740 \uac12\uc744 \ucc38\uc870\ud558\ub294 +# \uacbd\uc6b0\ub77c\uace0 \ud558\ub354\ub77c\ub3c4 \uc11c\ub85c \uac19\uc9c0 \uc54a\uc740 \uac12\uc774\ub2e4. +# 1)\uc11c\ube14\ub9bf\uc5d0\uc11c \ucc38\uc870\uc2dc : value\uac12\ub4a4\uc5d0 \ubd99\uc5b4\uc788\ub294 \uacf5\ubc31\ubb38\uc790\ub294 value \uc5d0\ub7ec\ub97c \ubc1c\uc0dd\uc2dc\ud0a8\ub2e4. +# eg) music.period.baroque.genre.vocal.favorite = Cantata"space" //-> caution +# \ub530\ub77c\uc11c SAFLogConfiguration.getConfValue()\ub97c \uc774\uc6a9\ud574 \uc5bb\uc740 \uac12\uc740 +# trim()\uba54\uc3d8\ub4dc\ub97c \uc0ac\uc6a9\ud574 \ucc98\ub9ac\ud55c \ud6c4 \ucc38\uc870\ud574\uc57c \ud55c\ub2e4. +# 2)\uc5b4\ud50c\ub9ac\ucf00\uc774\uc158\uc5d0\uc11c \ucc38\uc870\uc2dc : value\uac12\ub4a4\uc5d0 \ubd99\uc5b4\uc788\ub294 \uacf5\ubc31\ubb38\uc790\ub294 \ucc28\uc774\ub97c \ub9cc\ub4e4\uc9c0 \uc54a\ub294\ub2e4. +#----------------------------------------------------------------------------------------------------------- + +# \uc2dc\uc2a4\ud15c \ud0c0\uc785\uacfc \uc774\ub984 +Globals.SystemTitle = \uad6d\ud1a0\uc9c0\ubc18\uc815\ubcf4 \ud3ec\ud138\uc2dc\uc2a4\ud15c + +# \uc11c\ubc84\uc758 IP\uc640 Port +Globals.ServerIP = 218.232.234.161 +#Globals.ServerIP = 192.168.0.11 +# Globals.ServerIP = www.geoinfo.or.kr +Globals.ServerPort = 80 +# DBCP +Globals.DBCPNAME = jdbc/oracle + +#\uacf5\uc9c0,\uc790\ub8cc\uc2e4,\ucee4\ubba4 \ud30c\uc77c\uacbd\ub85c +Globals.FilePath = D:\\Tomcat8_NEW\\webapps\\geoinfo_eGov\\files +Globals.serviceFilePath = D:\\Tomcat8_NEW\\webapps\\geoinfo_eGov\\files\\report\\service\\ +#\uc9c0\ubc18\uc815\ubcf4 zip\ud30c\uc77c \uacbd\ub85c +Globals.FilePathZip = D:\\ +#Globals.FilePath = http://14.35.193.250:8090/admins/notice/file +# Http Server +Globals.HTTP_PATH = D:/Tomcat8_NEW/webapps/geoinfo/admins/notice/file/ +Globals.FilePathDown = D:/Tomcat8_NEW/webapps/geoinfo_eGov +# \uac80\uc0c9\ub9ac\uc2a4\ud2b8\uc5d0\uc11c \ud55c\ubc88\uc5d0 \ubcf4\uc5ec\uc8fc\ub294 row \uc218 +Globals.VIEWPAGE = 19 +Globals.PAGELIST = 10 + +Globals.VIEWPAGE_CYBER = 10 + + +# Active X +# \uc9c0\ub3c4\uc11c\ubc84 +Globals.OcxHostUrl = http://218.232.234.166/Server/ +#Globals.OcxHostUrl = http://172.12.192.44/Server/ +#Globals.OcxHostUrl = http://192.168.0.11/Server/ + +Globals.OcxMapFileVer = 2,0,0,3 +Globals.OcxMapClassID = CC13D8F5-F406-4833-855D-F44DA7875776 +# \uc2e4\ub0b4\uc2dc\ud5d8 \uadf8\ub798\ud504\uc774\ubbf8\uc9c0 \uc800\uc7a5\uacbd\ub85c +Globals.TestGraphFilePath = /data/ +# \uacf5\uc9c0\uc0ac\ud56d \ud30c\uc77c\ub2e4\uc6b4\ub85c\ub4dc +Globals.NoticeFilePath = http://www.geoinfo.or.kr/admins/comm/download.jsp +#Globals.NoticeFilePath = http://175.116.181.150:8090/admins/comm/download.jsp + +Globals.OcxSichuClassID = C1FCC803-0250-4C0B-B077-9D0DA1477C5F +Globals.OcxSichuFileVer = 3,0,0,4 + +Globals.FlashFilePathTop = http://175.116.181.150:8090/images/fla/main.swf +Globals.FlashFilePathBottom = http://175.116.181.150:8090/images/newFla/Banner_1.swf \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/classes/egovframework/egovProps/geoinfoWeb.properties b/src/main/webapp/WEB-INF/classes/egovframework/egovProps/geoinfoWeb.properties new file mode 100644 index 00000000..c6d9bf72 --- /dev/null +++ b/src/main/webapp/WEB-INF/classes/egovframework/egovProps/geoinfoWeb.properties @@ -0,0 +1,20 @@ +GlobalsWeb.WebSystemTitle = ::\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd \ufffd\u0537\u00bd\u00fd\ufffd\ufffd\ufffd:: +GlobalsWeb.WebManageSystemTitle = ::\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd \ufffd\ufffd\ufffd\ufffd\ufffd\u00fd\ufffd\ufffd\ufffd:: +GlobalsWeb.WebXmlPath = D:\\Tomcat8_NEW\\webapps\\geoinfo_eGov\\web\\grid\\DataXml +GlobalsWeb.WebImagePath = D:\\Tomcat8_NEW\\webapps\\geoinfo_eGov\\web\\file +GlobalsWeb.WebSupplyPath = D:\\Tomcat8_NEW\\webapps\\geoinfo_eGov\\web\\supply +#GlobalsWeb.WebXmlPath = D:\\src\\geoinfo_integration\\WebContent\\web\\grid\\DataXml\\ +#GlobalsWeb.WebImagePath = D:\\egov_geoinfo\\eGovFrameDev-3.5.1-64bit\\workspace\\geoinfo_eGov\\src\\main\\webapp\\web\\file\\ +#GlobalsWeb.WebSupplyPath = D:\\egov_geoinfo\\eGovFrameDev-3.5.1-64bit\\workspace\\geoinfo_eGov\\src\\main\\webapp\\web\\supply\\ +GlobalsWeb.WebSupplyServer = localhost +GlobalsWeb.WebSupplyUser = kict +GlobalsWeb.WebSupplyPassword = kictgis1234 +GlobalsWeb.WebSupplyPort = 10021 +GlobalsWeb.WebSupplyDir = /geoinfoCH/WebContent/file/service/ + +GlobalsWeb.GlbWidth = 600 +GlobalsWeb.GlbHeight = 600 +GlobalsWeb.Levels = {6:2445.98,7:1222.99,8:611.50,9:305.75,10:152.87,11:76.44,12:38.22,13:19.11,14:9.55,15:4.78,16:2.39,17:1.19,18:0.60} +GlobalsWeb.CurrentLevel = 16 +GlobalsWeb.GISwms = http://218.232.234.166/o2map/services/wms +#GlobalsWeb.GISwms = http://172.12.192.44:8080/o2map/services/wms \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/classes/egovframework/egovProps/globals.properties b/src/main/webapp/WEB-INF/classes/egovframework/egovProps/globals.properties new file mode 100644 index 00000000..f6b34644 --- /dev/null +++ b/src/main/webapp/WEB-INF/classes/egovframework/egovProps/globals.properties @@ -0,0 +1,36 @@ +############################################## +################### DB관련 ################### +############################################## + +# Oracle +Oracle.Driver=oracle.jdbc.driver.OracleDriver +#Oracle.Url=jdbc:oracle:thin:@218.232.234.200:1521:ORAGEODEV +Oracle.Url=jdbc:oracle:thin:@192.168.10.20:1521:ORAGEODEV +#Oracle.Url=jdbc:oracle:thin:@172.12.192.44:1521:orcl +#Oracle.Url=jdbc:oracle:thin:@localhost:1521:orcl +#Oracle.Url=jdbc:oracle:thin:@218.232.234.162:1521:ORAGEO +Oracle.ID=geoinfo +Oracle.Password=geoinfo +#Oracle.Password=!!kictgis1234 + + +############################################### +################### 파일관련 ################### +############################################### + +#Geoinfo.FilePath=D:\\Tomcat6\\geoinfoEgov\\webapps\\geoinfo\\files\\ +#Geoinfo.FilePath=C:\\app\\files\\ +Geoinfo.FilePath=D:\\Tomcat8_NEW\\webapps\\geoinfo_eGov\\files\\ +#검색유통3차원 +#Geoinfo.FilePath3D=files\\4dim\\2014\\ +Geoinfo.FilePath3D=D:\\Tomcat8_NEW\\webapps\\geoinfo_eGov\\files\\4dim\\2014\\ +#전문가의견 +Geoinfo.Report=files\\report\\ + +#입력시스템 +Geoinfo.WebFilePath=files\\web\\ + +Geoinfo.excelFilePath=files\\excel\\ + +Globals.FileExtImg= .jpeg,.jpg,.bmp,.tiff,.gif,.png +Globals.FileExtZip= .hwp,.pdf,.zip,.xls,.xlsx,.ppt,.pptx \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/classes/egovframework/message/message-common.properties b/src/main/webapp/WEB-INF/classes/egovframework/message/message-common.properties new file mode 100644 index 00000000..7457633b --- /dev/null +++ b/src/main/webapp/WEB-INF/classes/egovframework/message/message-common.properties @@ -0,0 +1,296 @@ +fail.common.msg=\uc5d0\ub7ec\uac00 \ubc1c\uc0dd\ud588\uc2b5\ub2c8\ub2e4! +fail.common.sql=sql \uc5d0\ub7ec\uac00 \ubc1c\uc0dd\ud588\uc2b5\ub2c8\ub2e4! error code: {0}, error msg: {1} +info.nodata.msg=\ud574\ub2f9 \ub370\uc774\ud130\uac00 \uc5c6\uc2b5\ub2c8\ub2e4. + +#UI Common resource# +button.search=\uac80\uc0c9 +button.use=\uc0ac\uc6a9 +button.notUsed=\uc0ac\uc6a9\uc911\uc9c0 +button.inquire=\uc870\ud68c +button.update=\uc218\uc815 +button.create=\ub4f1\ub85d +button.delete=\uc0ad\uc81c +button.deleteDatabase=\uc644\uc804\uc0ad\uc81c +button.close=\ub2eb\uae30 +button.save=\uc800\uc7a5 +button.list=\ubaa9\ub85d +button.reset=\ucde8\uc18c +button.passwordUpdate=\uc554\ud638\ubcc0\uacbd +button.subscribe=\uac00\uc785\uc2e0\uccad +button.realname=\uc2e4\uba85\ud655\uc778 +button.moveToGpin=GPIN\uc2e4\uba85\ud655\uc778\uc73c\ub85c \uc774\ub3d9 +button.moveToIhidnum=\uc8fc\ubbfc\ub4f1\ub85d\ubc88\ud638 \uc2e4\uba85\ud655\uc778\uc73c\ub85c \uc774\ub3d9 +button.agree=\ub3d9\uc758 +button.disagree=\ube44\ub3d9\uc758 +button.possible = \uac00\ub2a5 +button.impossible = \ubd88\uac00\ub2a5 +button.qnaregist=Q&A\ub4f1\ub85d +button.cnsltregist=\uc0c1\ub2f4\ub4f1\ub85d +button.preview=\ubbf8\ub9ac\ubcf4\uae30 +button.next=\ub2e4\uc74c +button.add=\ubc14\ub85c\ucd94\uac00 +button.confirm=\ud655\uc778 + + +#UI Common Message# +common.save.msg=\uc800\uc7a5\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c? +common.regist.msg=\ub4f1\ub85d\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c? +common.delete.msg=\uc0ad\uc81c\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c? +common.update.msg=\uc218\uc815\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c? +common.nodata.msg=\uc790\ub8cc\uac00 \uc5c6\uc2b5\ub2c8\ub2e4. \ub2e4\ub978 \uac80\uc0c9\uc870\uac74\uc744 \uc120\ud0dd\ud574\uc8fc\uc138\uc694 +common.required.msg=(\uc740)\ub294 \ud544\uc218\uc785\ub825\ud56d\ubaa9\uc785\ub2c8\ub2e4. +common.acknowledgement.msg=\uc2b9\uc778\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c? +common.acknowledgementcancel.msg=\uc2b9\uc778\ucde8\uc18c\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c? + +success.common.select=\uc815\uc0c1\uc801\uc73c\ub85c \uc870\ud68c\ub418\uc5c8\uc2b5\ub2c8\ub2e4. +success.common.insert=\uc815\uc0c1\uc801\uc73c\ub85c \ub4f1\ub85d\ub418\uc5c8\uc2b5\ub2c8\ub2e4. +success.common.update=\uc815\uc0c1\uc801\uc73c\ub85c \uc218\uc815\ub418\uc5c8\uc2b5\ub2c8\ub2e4. +success.common.delete=\uc815\uc0c1\uc801\uc73c\ub85c \uc0ad\uc81c\ub418\uc5c8\uc2b5\ub2c8\ub2e4. + +success.request.msg = \uc694\uccad\ucc98\ub9ac\uac00 \uc131\uacf5\uc801\uc73c\ub85c \uc218\ud589\ub418\uc5c8\uc2b5\ub2c8\ub2e4. + +common.imposbl.fileupload = \ub354 \uc774\uc0c1 \ud30c\uc77c\uc744 \ucca8\ubd80\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. +common.isConfmDe.msg=\uc2b9\uc778\uc77c\uc790\ub97c \ud655\uc778 \ubc14\ub78d\ub2c8\ub2e4. + + +fail.common.insert = \uc0dd\uc131\uc774 \uc2e4\ud328\ud558\uc600\uc2b5\ub2c8\ub2e4. +fail.common.update = \uc218\uc815\uc774 \uc2e4\ud328\ud558\uc600\uc2b5\ub2c8\ub2e4. +fail.common.delete = \uc0ad\uc81c\uac00 \uc2e4\ud328\ud558\uc600\uc2b5\ub2c8\ub2e4. +fail.common.delete.upperMenuExist = \ucc38\uc870\ub418\ub294 \uba54\ub274\uac00 \uc788\uc5b4 \uc0ad\uc81c\uac00 \uc2e4\ud328\ud558\uc600\uc2b5\ub2c8\ub2e4. +fail.common.select = \uc870\ud68c\uc5d0 \uc2e4\ud328\ud558\uc600\uc2b5\ub2c8\ub2e4. +common.isExist.msg = \uc774\ubbf8 \uc874\uc7ac\ud558\uac70\ub098 \uacfc\uac70\uc5d0 \ub4f1\ub85d\uc774 \ub418\uc5c8\ub358 \uc0c1\ud0dc\uc785\ub2c8\ub2e4. +fail.common.login = \ub85c\uadf8\uc778 \uc815\ubcf4\uac00 \uc62c\ubc14\ub974\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. +fail.common.idsearch = \uc544\uc774\ub514\ub97c \ucc3e\uc744\uc218 \uc5c6\uc2b5\ub2c8\ub2e4. +fail.common.pwsearch = \ube44\ubc00\ubc88\ud638\ub97c \ucc3e\uc744\uc218 \uc5c6\uc2b5\ub2c8\ub2e4. +fail.request.msg = \uc694\uccad\ucc98\ub9ac\ub97c \uc2e4\ud328\ud558\uc600\uc2b5\ub2c8\ub2e4. + +#UI User Message# +fail.user.passwordUpdate1=\ud604\uc7ac \ube44\ubc00\ubc88\ud638\uac00 \ub9de\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. +fail.user.passwordUpdate2=\ube44\ubc00\ubc88\ud638\uc640 \ube44\ubc00\ubc88\ud638 \ud655\uc778\uc774 \uc77c\uce58\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. +info.user.rlnmCnfirm=\uc8fc\ubbfc\ub4f1\ub85d\ubc88\ud638\ub97c \uc0ac\uc6a9\ud558\uc5ec \uc2e4\uba85\ud655\uc778\uc744 \ud558\uc2ed\uc2dc\uc624. +success.user.rlnmCnfirm=\ud589\uc815\uc548\uc804\ubd80\uc758 \uc8fc\ubbfc\ub4f1\ub85d\uc790\ub8cc\uc640 \uc77c\uce58\ud569\ub2c8\ub2e4. +fail.user.rlnmCnfirm=\ud589\uc815\uc548\uc804\ubd80\uc758 \uc8fc\ubbfc\ub4f1\ub85d\uc790\ub8cc\uc640 \uc77c\uce58\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. +fail.user.connectFail=\uc2dc\uc2a4\ud15c \uc7a5\uc560\uac00 \ubc1c\uc0dd\ud588\uc2b5\ub2c8\ub2e4.(\uc778\uc99d\uc11c\ubc84 \uc5f0\uacb0 \uc2e4\ud328) +info.user.rlnmPinCnfirm=\uacf5\uacf5 \uc544\uc774\ud540 \uc544\uc774\ub514\ub97c \uc0ac\uc6a9\ud558\uc5ec \uc2e4\uba85\ud655\uc778\uc744 \ud558\uc2ed\uc2dc\uc624. +success.user.rlnmPinCnfirm=\uacf5\uacf5\uc544\uc774\ud540\uc758 \ub4f1\ub85d\uc790\ub8cc\uc640 \uc77c\uce58\ud569\ub2c8\ub2e4. +fail.user.rlnmPinCnfirm=\uacf5\uacf5\uc544\uc774\ud540\uc758 \ub4f1\ub85d\uc790\ub8cc\uc640 \uc77c\uce58\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. + + +#UI Cop Message# +cop.extrlUser = \uc678\ubd80\uc0ac\uc6a9\uc790 +cop.intrlUser = \ub0b4\ubd80\uc0ac\uc6a9\uc790 +cop.private = \ube44\uacf5\uac1c +cop.public = \uacf5\uac1c + +cop.adbkNm = \uc8fc\uc18c\ub85d\uba85 +cop.othbcScope = \uacf5\uac1c\ubc94\uc704 +cop.company = \ud68c\uc0ac +cop.part = \ubd80\uc11c +cop.man = \uac1c\uc778 +cop.adbkUser = \uad6c\uc131\uc6d0 +cop.bbsNm = \uac8c\uc2dc\ud310\uba85 +cop.bbsIntrcn = \uac8c\uc2dc\ud310\uc18c\uac1c +cop.bbsTyCode = \uac8c\uc2dc\ud310 \uc720\ud615 +cop.bbsAttrbCode = \uac8c\uc2dc\ud310 \uc18d\uc131 +cop.replyPosblAt = \ub2f5\uc7a5\uac00\ub2a5\uc5ec\ubd80 +cop.fileAtchPosblAt = \ud30c\uc77c\ucca8\ubd80\uac00\ub2a5\uc5ec\ubd80 +cop.posblAtchFileNumber = \ucca8\ubd80\uac00\ub2a5\ud30c\uc77c \uc22b\uc790 +cop.tmplatId = \ud15c\ud50c\ub9bf \uc815\ubcf4 +cop.guestList.subject = \ubc29\uba85\ub85d \uac8c\uc2dc\uae00\uc785\ub2c8\ub2e4. +cop.nttSj = \uc81c\ubaa9 +cop.nttCn = \uae00\ub0b4\uc6a9 +cop.ntceBgnde = \uac8c\uc2dc\uc2dc\uc791\uc77c +cop.ntceEndde = \uac8c\uc2dc\uc885\ub8cc\uc77c +cop.ntcrNm = \uc791\uc131\uc790 +cop.password = \ud328\uc2a4\uc6cc\ub4dc +cop.atchFile = \ud30c\uc77c\ucca8\ubd80 +cop.guestList = \ubc29\uba85\ub85d +cop.guestListCn = \ubc29\uba85\ub85d \ub0b4\uc6a9 +cop.noticeTerm = \uac8c\uc2dc\uae30\uac04 +cop.atchFileList = \ucca8\ubd80\ud30c\uc77c\ubaa9\ub85d +cop.cmmntyNm = \ucee4\ubba4\ub2c8\ud2f0\uba85 +cop.cmmntyIntrcn = \ucee4\ubba4\ub2c8\ud2f0 \uc18c\uac1c +cop.cmmntyMngr = \ucee4\ubba4\ub2c8\ud2f0 \uad00\ub9ac\uc790 +cop.clbOprtr = \ub3d9\ud638\ud68c \uc6b4\uc601\uc790 +cop.clbIntrcn = \ub3d9\ud638\ud68c \uc18c\uac1c +cop.clbNm = \ub3d9\ud638\ud68c \uba85 +cop.tmplatNm = \ud15c\ud50c\ub9bf\uba85 +cop.tmplatSeCode = \ud15c\ud50c\ub9bf \uad6c\ubd84 +cop.tmplatCours = \ud15c\ud50c\ub9bf\uacbd\ub85c +cop.useAt = \uc0ac\uc6a9\uc5ec\ubd80 +cop.ncrdNm = \uc774\ub984 +cop.cmpnyNm = \ud68c\uc0ac\uba85 +cop.deptNm = \ubd80\uc11c\uba85 +cop.ofcpsNm = \uc9c1\uc704 +cop.clsfNm = \uc9c1\uae09 +cop.emailAdres = \uc774\uba54\uc77c\uc8fc\uc18c +cop.telNo = \uc804\ud654\ubc88\ud638 +cop.mbtlNum = \ud734\ub300\ud3f0\ubc88\ud638 +cop.adres = \uc8fc\uc18c +cop.extrlUserAt = \uc678\ubd80\uc0ac\uc6a9\uc790\uc5ec\ubd80 +cop.publicAt = \uacf5\uac1c\uc5ec\ubd80 +cop.remark = \ube44\uace0 +cop.trgetNm = \ucee4\ubba4\ub2c8\ud2f0/\ub3d9\ud638\ud68c \uc815\ubcf4 +cop.preview = \ubbf8\ub9ac\ubcf4\uae30 + +cop.withdraw.msg=\ud0c8\ud1f4\ucc98\ub9ac \ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c? +cop.reregist.msg=\uc7ac\uac00\uc785 \ucc98\ub9ac\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c? +cop.registmanager.msg=\uc6b4\uc601\uc9c4\uc73c\ub85c \ub4f1\ub85d\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c? +cop.use.msg=\uc0ac\uc6a9 \ucc98\ub9ac\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c? +cop.unuse.msg=\uc0ac\uc6a9\uc911\uc9c0 \ucc98\ub9ac\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c? +cop.delete.confirm.msg=\uc0ac\uc6a9\uc911\uc9c0\ub97c \uc120\ud0dd\ud558\uc2e4 \uacbd\uc6b0 \ub2e4\uc2dc \uc0ac\uc6a9\uc73c\ub85c \ubcc0\uacbd\uc774 \ubd88\uac00\ub2a5\ud569\ub2c8\ub2e4. +cop.ing.msg=\uc2b9\uc778\uc694\uccad \uc911\uc785\ub2c8\ub2e4. +cop.request.msg=\uac00\uc785\uc2e0\uccad\uc774 \uc815\uc0c1\uc801\uc73c\ub85c \uc694\uccad\ub418\uc5c8\uc2b5\ub2c8\ub2e4 +cop.password.msg=\ud328\uc2a4\uc6cc\ub4dc\ub97c \uc785\ub825\ud574 \uc8fc\uc2ed\uc2dc\uc624. +cop.password.not.same.msg=\ud328\uc2a4\uc6cc\ub4dc\uac00 \uc77c\uce58\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. + +cop.comment.wrterNm = \uc791\uc131\uc790 +cop.comment.commentCn = \ub0b4\uc6a9 +cop.comment.commentPassword = \ud328\uc2a4\uc6cc\ub4dc + +cop.satisfaction.wrterNm = \uc791\uc131\uc790 +cop.satisfaction.stsfdgCn = \ub0b4\uc6a9 +cop.satisfaction.stsfdg = \ub9cc\uc871\ub3c4 +cop.satisfaction.stsfdgPassword = \ud328\uc2a4\uc6cc\ub4dc + +cop.scrap.scrapNm = \uc2a4\ud06c\ub7a9\uba85 + +#UI USS Message# +uss.ion.noi.ntfcSj=\uc81c\ubaa9 +uss.ion.noi.ntfcCn=\ub0b4\uc6a9 +uss.ion.noi.ntfcDate=\uc54c\ub9bc\uc77c\uc790 +uss.ion.noi.ntfcTime=\uc54c\ub9bc\uc2dc\uac04 +uss.ion.noi.ntfcHH=\uc54c\ub9bc\uc2dc\uac04 +uss.ion.noi.ntfcMM=\uc54c\ub9bc\ubd84 +uss.ion.noi.bhNtfcIntrvl=\uc0ac\uc804\uc54c\ub9bc\uac04\uaca9 +uss.ion.noi.bhNtfcIntrvl.msg=\uc0ac\uc804\uc54c\ub9bc\uac04\uaca9 \uc9c0\uc815\uc774 \ud544\uc694\ud569\ub2c8\ub2e4. +uss.ion.noi.alertNtfcTime=\uc54c\ub9bc\uc77c\uc790 \ubc0f \uc2dc\uac04\uc774 \uc720\ud6a8\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. + +#UI COP Message# +cop.sms.trnsmitTelno=\ubc1c\uc2e0\uc804\ud654\ubc88\ud638 +cop.sms.trnsmitCn=\uc804\uc1a1\ub0b4\uc6a9 +cop.sms.recptnTelno=\uc218\uc2e0\uc804\ud654\ubc88\ud638 +cop.sms.send=\uc804\uc1a1 +cop.sms.addRecptn=\ucd94\uac00 +cop.sms.recptnTelno.msg=\uc218\uc2e0\uc804\ud654\ubc88\ud638 \uc9c0\uc815\uc774 \ud544\uc694\ud569\ub2c8\ub2e4. + +#UI sym.log Message# +sym.log.histSeCode = \uc774\ub825\uad6c\ubd84 +sym.log.sysNm = \uc2dc\uc2a4\ud15c\uba85 +sym.log.histCn = \uc774\ub825\ub0b4\uc6a9 +sym.log.atchFile = \ucca8\ubd80\ud30c\uc77c +sym.log.atchFileList = \ucca8\ubd80\ud30c\uc77c\ubaa9\ub85d +sym.ems.receiver = \ubc1b\ub294\uc0ac\ub78c +sym.ems.title = \uc81c\ubaa9 +sym.ems.content = \ubc1c\uc2e0\ub0b4\uc6a9 + +#Vlidator Errors# +errors.prefix=
+errors.suffix=

+ +errors.required={0}\uc740(\ub294) \ud544\uc218 \uc785\ub825\uac12\uc785\ub2c8\ub2e4. +errors.minlength={0}\uc740(\ub294) {1}\uc790 \uc774\uc0c1 \uc785\ub825\ud574\uc57c \ud569\ub2c8\ub2e4. +errors.maxlength={0}\uc740(\ub294) {1}\uc790 \uc774\uc0c1 \uc785\ub825\ud560\uc218 \uc5c6\uc2b5\ub2c8\ub2e4. +errors.invalid={0}\uc740(\ub294) \uc720\ud6a8\ud558\uc9c0 \uc54a\uc740 \uac12\uc785\ub2c8\ub2e4. +errors.minInteger={0}\uc740(\ub294) \uc720\ud6a8\ud55c \uac12\uc774 \uc544\ub2d9\ub2c8\ub2e4. 1 \uc774\uc0c1\uc758 \uac12\uc744 \uc785\ub825\ud574\uc57c \ud569\ub2c8\ub2e4. +errors.byte={0}\uc740(\ub294) byte\ud0c0\uc785\uc774\uc5b4\uc57c \ud569\ub2c8\ub2e4. +errors.short={0}\uc740(\ub294) short\ud0c0\uc785\uc774\uc5b4\uc57c \ud569\ub2c8\ub2e4. +errors.integer={0}\uc740(\ub294) \uc815\uc218 \ud0c0\uc785\uc774\uc5b4\uc57c \ud569\ub2c8\ub2e4. +errors.long={0}\uc740(\ub294) long \ud0c0\uc785\uc774\uc5b4\uc57c \ud569\ub2c8\ub2e4. +errors.float={0}\uc740(\ub294) \uc2e4\uc218 \ud0c0\uc785\uc774\uc5b4\uc57c \ud569\ub2c8\ub2e4. +errors.double={0}\uc740(\ub294) double \ud0c0\uc785\uc774\uc5b4\uc57c \ud569\ub2c8\ub2e4. + +errors.date={0}\uc740(\ub294) \ub0a0\uc9dc \uc720\ud615\uc774 \uc544\ub2d9\ub2c8\ub2e4. +errors.range={0}\uc740(\ub294) {1}\uacfc {2} \uc0ac\uc774\uc758 \uac12\uc774\uc5b4\uc57c \ud569\ub2c8\ub2e4. +errors.creditcard={0}\uc740(\ub294) \uc720\ud6a8\ud558\uc9c0 \uc54a\uc740 \uc2e0\uc6a9\uce74\ub4dc \ubc88\ud638\uc785\ub2c8\ub2e4. +errors.email={0}\uc740(\ub294) \uc720\ud6a8\ud558\uc9c0 \uc54a\uc740 \uc774\uba54\uc77c \uc8fc\uc18c\uc785\ub2c8\ub2e4. + +errors.ihidnum=\uc720\ud6a8\ud558\uc9c0 \uc54a\uc740 \uc8fc\ubbfc\ub4f1\ub85d\ubc88\ud638\uc785\ub2c8\ub2e4. +errors.korean={0}\uc740(\ub294) \ud55c\uae00\uc744 \uc785\ub825\ud558\uc154\uc57c \ud569\ub2c8\ub2e4. +errors.ip=\uc720\ud6a8\ud558\uc9c0 \uc54a\uc740 IP\uc8fc\uc18c\uc785\ub2c8\ub2e4. + +errors.password1={0}\uc740(\ub294) 8~20\uc790 \ub0b4\uc5d0\uc11c \uc785\ub825\ud574\uc57c \ud569\ub2c8\ub2e4. +errors.password2={0}\uc740(\ub294) \ud55c\uae00,\ud2b9\uc218\ubb38\uc790,\ub744\uc5b4\uc4f0\uae30\ub294 \ud5c8\uc6a9\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. +errors.password3={0}\uc740(\ub294) \uc21c\ucc28\uc801\uc778 \uc22b\uc790\ub97c 4\uac1c\uc774\uc0c1 \uc5f0\uc18d\ud574\uc11c \uc0ac\uc6a9\ud560\uc218 \uc5c6\uc2b5\ub2c8\ub2e4. +errors.password4={0}\uc740(\ub294) \ubc18\ubcf5\ub418\ub294 \ubb38\uc790\ub098 \uc22b\uc790\ub97c 4\uac1c\uc774\uc0c1 \uc5f0\uc18d\ud574\uc11c \uc0ac\uc6a9\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. + +errors.notKorean={0}\uc740(\ub294) \ud55c\uae00\uc744 \uc0ac\uc6a9\ud558\uc2e4\uc218 \uc5c6\uc2b5\ub2c8\ub2e4. +error.security.runtime.error = error +#Vlidator Errors- wordDicaryVO# +wordDicaryVO.wordNm=\uc6a9\uc5b4\uba85 +wordDicaryVO.engNm=\uc601\ubb38\uba85 +wordDicaryVO.wordDc=\uc6a9\uc5b4\uc124\uba85 +wordDicaryVO.synonm=\ub3d9\uc758\uc5b4 + +#Vlidator Errors- cnsltManageVO# +cnsltManageVO.cnsltSj=\uc0c1\ub2f4\uc81c\ubaa9 +cnsltManageVO.cnsltCn=\uc0c1\ub2f4\ub0b4\uc6a9 +cnsltManageVO.writngPassword=\uc791\uc131\ube44\ubc00\ubc88\ud638 +cnsltManageVO.areaNo=\uc9c0\uc5ed\ubc88\ud638 +cnsltManageVO.middleTelno=\uc911\uac04\uc804\ud654\ubc88\ud638 +cnsltManageVO.endTelno=\ub05d\uc804\ud654\ubc88\ud638 +cnsltManageVO.wrterNm=\uc791\uc131\uc790\uba85 +cnsltManageVO.managtCn=\ub2f5\ubcc0\ub0b4\uc6a9 + +#Vlidator Errors- siteManageVO# +siteManageVO.siteNm=\uc0ac\uc774\ud2b8\uba85 +siteManageVO.siteUrl=\uc0ac\uc774\ud2b8 URL +siteManageVO.siteDc=\uc0ac\uc774\ud2b8\uc124\uba85 +siteManageVO.siteThemaClCode=\uc0ac\uc774\ud2b8\uc8fc\uc81c\ubd84\ub958 +siteManageVO.actvtyAt=\ud65c\uc131\uc5ec\ubd80 +siteManageVO.useAt=\uc0ac\uc6a9\uc5ec\ubd80 + +#Vlidator Errors- recomendSiteManageVO# +recomendSiteManageVO.recomendSiteNm=\ucd94\ucc9c\uc0ac\uc774\ud2b8\uba85 +recomendSiteManageVO.recomendSiteUrl=\ucd94\ucc9c\uc0ac\uc774\ud2b8 URL +recomendSiteManageVO.recomendSiteDc=\ucd94\ucc9c\uc0ac\uc774\ud2b8\uc124\uba85 +recomendSiteManageVO.recomendResnCn=\ucd94\ucc9c\uc0ac\uc774\ud2b8\uc2b9\uc778\uc0ac\uc720 +recomendSiteManageVO.confmDe=\uc2b9\uc778\uc77c\uc790 + +#Vlidator Errors- hpcmManageVO# +hpcmManageVO.hpcmSeCode=\ub3c4\uc6c0\ub9d0\uad6c\ubd84 +hpcmManageVO.hpcmDf=\ub3c4\uc6c0\ub9d0\uc815\uc758 +hpcmManageVO.hpcmDc=\ub3c4\uc6c0\ub9d0\uc124\uba85 + +#Vlidator Errors- newsManageVO# +newsManageVO.newsSj=\ub274\uc2a4\uc81c\ubaa9 +newsManageVO.newsCn=\ub274\uc2a4\ub0b4\uc6a9 +newsManageVO.ntceDe=\uac8c\uc2dc\uc77c\uc790 + +#Vlidator Errors- faqManageVO# +faqManageVO.qestnSj=\uc9c8\ubb38\uc81c\ubaa9 +faqManageVO.qestnCn=\uc9c8\ubb38\ub0b4\uc6a9 +faqManageVO.answerCn=\ub2f5\ubcc0\ub0b4\uc6a9 + +#Vlidator Errors- stplatManageVO# +stplatManageVO.useStplatNm=\uc774\uc6a9\uc57d\uad00\uba85 +stplatManageVO.useStplatCn=\uc774\uc6a9\uc57d\uad00\ub0b4\uc6a9 +stplatManageVO.infoProvdAgreCn=\uc815\ubcf4\uc81c\uacf5\ub3d9\uc758\ub0b4\uc6a9 + +#Vlidator Errors- cpyrhtPrtcPolicyVO# +cpyrhtPrtcPolicyVO.cpyrhtPrtcPolicyCn=\uc800\uc791\uad8c\ubcf4\ud638\uc815\ucc45\ub0b4\uc6a9 + +#Vlidator Errors- qnaManageVO# +qnaManageVO.qestnSj=\uc9c8\ubb38\uc81c\ubaa9 +qnaManageVO.qestnCn=\uc9c8\ubb38\ub0b4\uc6a9 +qnaManageVO.writngPassword=\uc791\uc131\ube44\ubc00\ubc88\ud638 +qnaManageVO.areaNo=\uc9c0\uc5ed\ubc88\ud638 +qnaManageVO.middleTelno=\uc911\uac04\uc804\ud654\ubc88\ud638 +qnaManageVO.endTelno=\ub05d\uc804\ud654\ubc88\ud638 +qnaManageVO.wrterNm=\uc791\uc131\uc790\uba85 +qnaManageVO.answerCn=\ub2f5\ubcc0\ub0b4\uc6a9 + +#Vlidator Errors- ReprtStatsVO# +sts.reprtId = \ubcf4\uace0\uc11cID +sts.title = \ubcf4\uace0\uc11c\uba85 +sts.category = \ubcf4\uace0\uc11c\uc720\ud615 +sts.status = \uc9c4\ud589\uc0c1\ud0dc +sts.regDate = \ub4f1\ub85d\uc77c\uc2dc + +#Rest day messages# +sym.cal.restDay = \ud734\uc77c\uc77c\uc790 +sym.cal.restName = \ud734\uc77c\uba85 +sym.cal.restDetail = \ud734\uc77c\uc124\uba85 +sym.cal.restCategory = \ud734\uc77c\uad6c\ubd84 + +image.errorBg = \uc624\ub958\uc774\ubbf8\uc9c0 \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/classes/egovframework/message/message-common_en.properties b/src/main/webapp/WEB-INF/classes/egovframework/message/message-common_en.properties new file mode 100644 index 00000000..1d5b3f86 --- /dev/null +++ b/src/main/webapp/WEB-INF/classes/egovframework/message/message-common_en.properties @@ -0,0 +1,196 @@ +fail.common.msg=error ocurred! +fail.common.sql=sql error ocurred! error code: {0}, error msg: {1} +info.nodata.msg=no data found. + +#UI Common resource# +button.search=Search +button.use=use +button.notUsed=Not used +button.inquire=inquire +button.update=update +button.create=create +button.delete=delete +button.close=close +button.save=save +button.list=list +button.reset=reset +button.passwordUpdate=password update +button.subscribe=subscribe +button.realname=realname confirm +button.moveToGpin=move to gpin confirm +button.moveToIhidnum=move to ihidnum confirm +button.agree=agree +button.disagree=disagree +button.possible = possible +button.impossible = impossible + +#UI Common Message# +common.save.msg=confirm save? +common.regist.msg=confirm regist? +common.delete.msg=confirm delete? +common.update.msg=confirm update? +common.nodata.msg=There is no data. please choose another seach keyword +common.required.msg=is required field +common.acknowledgement.msg=confirm acknowledgement? +common.acknowledgementcancel.msg=confirm acknowledgement cancel? + +success.request.msg=you're request successfully done + +success.common.select=successfully selected +success.common.insert=successfully inserted +success.common.update=successfully updated +success.common.delete=successfully deleted + +common.imposbl.fileupload = cannot upload files + +fail.common.insert = fail to insert. +fail.common.update = fail to update +fail.common.delete = fail to delete +fail.common.delete.upperMenuExist = fail to delete[upperMenuId foreign key error] +fail.common.select = fail to select +common.isExist.msg = already exist +fail.common.login = login information is not correct +fail.common.idsearch = can not find id +fail.common.pwsearch = can not find password + + +#UI User Message# +fail.user.passwordUpdate1=current password is not correct +fail.user.passwordUpdate2=password confirm is not correct +info.user.rlnmCnfirm=realname confirm ready +success.user.rlnmCnfirm=it is realname +fail.user.rlnmCnfirm=it is not realname +fail.user.connectFail=connection fail + +#UI Cop Message# +cop.extrlUser = External User +cop.intrlUser = Internal User +cop.private = private +cop.public = public + +cop.bbsNm = BBS Name +cop.bbsIntrcn = BBS Introduction +cop.bbsTyCode = BBS Type +cop.bbsAttrbCode = BBS Attribute +cop.replyPosblAt = Reply Possible Alternative +cop.fileAtchPosblAt = File Attach Possible Alternative +cop.posblAtchFileNumber = Possible Attach File Number +cop.tmplatId = Template Information +cop.guestList.subject = This article registered by Guest List +cop.nttSj = Notice Subject +cop.nttCn = Notice Contents +cop.ntceBgnde = Notice Start Date +cop.ntceEndde = Notice End Date +cop.ntcrNm = Noticer Name +cop.password = PassWord +cop.atchFile = Attach Files +cop.guestList = Guest List +cop.guestListCn = Guest List Contents +cop.noticeTerm = Notice term +cop.atchFileList = Attached File List +cop.cmmntyNm = Community Name +cop.cmmntyIntrcn = Community Introduction +cop.cmmntyMngr = Community Manager +cop.clbOprtr = Club Operator +cop.clbIntrcn = Club Introduction +cop.clbNm = Club Name +cop.tmplatNm = Template Name +cop.tmplatSeCode = Template Se Code +cop.tmplatCours = Template Cours +cop.useAt = Use Alternative +cop.ncrdNm = NameCard user name +cop.cmpnyNm = Company name +cop.deptNm = Department name +cop.ofcpsNm = OFCPS name +cop.clsfNm = Class Name +cop.emailAdres = E-mail +cop.telNo = Tel No. +cop.mbtlNum = Mobile +cop.adres = Address +cop.extrlUserAt = External User alternative +cop.publicAt = Public open alternative +cop.remark = Remark +cop.trgetNm = Company/Club Information +cop.preview = preview + +cop.withdraw.msg=confirm withdrawal memebership? +cop.reregist.msg=confirm re-registration? +cop.registmanager.msg=confirm registration of manager? +cop.use.msg=confirm use? +cop.unuse.msg=confirm stop using? +cop.delete.confirm.msg=If you choose to disable the re-use change is impossible. +cop.ing.msg=Approval is being requested. +cop.request.msg=Signup is normally requested. +cop.password.msg=Please enter your password. +cop.password.not.same.msg=Password do not match. + +cop.comment.wrterNm = Writer Name +cop.comment.commentCn = Comment +cop.comment.commentPassword = Password + +cop.satisfaction.wrterNm = Writer Name +cop.satisfaction.stsfdgCn = Satisfaction +cop.satisfaction.stsfdg = Satisfaction Degree +cop.satisfaction.stsfdgPassword = Password + +cop.scrap.scrapNm = Scrap Name + +#UI USS Message# +uss.ion.noi.ntfcSj=Subject +uss.ion.noi.ntfcCn=Contents +uss.ion.noi.ntfcDate=Notification Date +uss.ion.noi.ntfcTime=Notification Time +uss.ion.noi.ntfcHH=Notification Hour +uss.ion.noi.ntfcMM=Notification Minute +uss.ion.noi.bhNtfcIntrvl=Beforehand Interval +uss.ion.noi.bhNtfcIntrvl.msg=Beforehand Interval is required. +uss.ion.noi.alertNtfcTime=Date and time of notification is not valid. + +#UI COP Message# +cop.sms.trnsmitTelno=Sender +cop.sms.trnsmitCn=Contents +cop.sms.recptnTelno=Receiver(s) +cop.sms.send=Send +cop.sms.addRecptn=Add +cop.sms.recptnTelno.msg=The phone number of receiver is required. + +#UI sym.log Message# +sym.log.histSeCode = History Code +sym.log.sysNm = System Name +sym.log.histCn = History Contents +sym.log.atchFile = Attached File +sym.log.atchFileList = Attached File List +sym.ems.receiver = Receiver +sym.ems.title = Title +sym.ems.content = Content + +#Vlidator Errors# +errors.required={0} is required. +errors.minlength={0} can not be less than {1} characters. +errors.maxlength={0} can not be greater than {1} characters. +errors.invalid={0} is invalid. + +errors.byte={0} must be a byte. +errors.short={0} must be a short. +errors.integer={0} must be an integer. +errors.long={0} must be a long. +errors.float={0} must be a float. +errors.double={0} must be a double. + +errors.date={0} is not a date. +errors.range={0} is not in the range {1} through {2}. +errors.creditcard={0} is an invalid credit card number. +errors.email={0} is an invalid e-mail address. + +#Vlidator Errors- ReprtStatsVO# +sts.reprtId = Report ID +sts.title = Report Title +sts.category = Report Category +sts.status = Report Status +sts.regDate = Registration Date + +#Rest day messages# +sym.cal.restDay = Holiday Date +sym.cal.restName = Holiday Name +sym.cal.restDetail = Holiday Detail +sym.cal.restCategory = Holiday Category \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/classes/egovframework/message/message-common_ko.properties b/src/main/webapp/WEB-INF/classes/egovframework/message/message-common_ko.properties new file mode 100644 index 00000000..7457633b --- /dev/null +++ b/src/main/webapp/WEB-INF/classes/egovframework/message/message-common_ko.properties @@ -0,0 +1,296 @@ +fail.common.msg=\uc5d0\ub7ec\uac00 \ubc1c\uc0dd\ud588\uc2b5\ub2c8\ub2e4! +fail.common.sql=sql \uc5d0\ub7ec\uac00 \ubc1c\uc0dd\ud588\uc2b5\ub2c8\ub2e4! error code: {0}, error msg: {1} +info.nodata.msg=\ud574\ub2f9 \ub370\uc774\ud130\uac00 \uc5c6\uc2b5\ub2c8\ub2e4. + +#UI Common resource# +button.search=\uac80\uc0c9 +button.use=\uc0ac\uc6a9 +button.notUsed=\uc0ac\uc6a9\uc911\uc9c0 +button.inquire=\uc870\ud68c +button.update=\uc218\uc815 +button.create=\ub4f1\ub85d +button.delete=\uc0ad\uc81c +button.deleteDatabase=\uc644\uc804\uc0ad\uc81c +button.close=\ub2eb\uae30 +button.save=\uc800\uc7a5 +button.list=\ubaa9\ub85d +button.reset=\ucde8\uc18c +button.passwordUpdate=\uc554\ud638\ubcc0\uacbd +button.subscribe=\uac00\uc785\uc2e0\uccad +button.realname=\uc2e4\uba85\ud655\uc778 +button.moveToGpin=GPIN\uc2e4\uba85\ud655\uc778\uc73c\ub85c \uc774\ub3d9 +button.moveToIhidnum=\uc8fc\ubbfc\ub4f1\ub85d\ubc88\ud638 \uc2e4\uba85\ud655\uc778\uc73c\ub85c \uc774\ub3d9 +button.agree=\ub3d9\uc758 +button.disagree=\ube44\ub3d9\uc758 +button.possible = \uac00\ub2a5 +button.impossible = \ubd88\uac00\ub2a5 +button.qnaregist=Q&A\ub4f1\ub85d +button.cnsltregist=\uc0c1\ub2f4\ub4f1\ub85d +button.preview=\ubbf8\ub9ac\ubcf4\uae30 +button.next=\ub2e4\uc74c +button.add=\ubc14\ub85c\ucd94\uac00 +button.confirm=\ud655\uc778 + + +#UI Common Message# +common.save.msg=\uc800\uc7a5\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c? +common.regist.msg=\ub4f1\ub85d\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c? +common.delete.msg=\uc0ad\uc81c\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c? +common.update.msg=\uc218\uc815\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c? +common.nodata.msg=\uc790\ub8cc\uac00 \uc5c6\uc2b5\ub2c8\ub2e4. \ub2e4\ub978 \uac80\uc0c9\uc870\uac74\uc744 \uc120\ud0dd\ud574\uc8fc\uc138\uc694 +common.required.msg=(\uc740)\ub294 \ud544\uc218\uc785\ub825\ud56d\ubaa9\uc785\ub2c8\ub2e4. +common.acknowledgement.msg=\uc2b9\uc778\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c? +common.acknowledgementcancel.msg=\uc2b9\uc778\ucde8\uc18c\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c? + +success.common.select=\uc815\uc0c1\uc801\uc73c\ub85c \uc870\ud68c\ub418\uc5c8\uc2b5\ub2c8\ub2e4. +success.common.insert=\uc815\uc0c1\uc801\uc73c\ub85c \ub4f1\ub85d\ub418\uc5c8\uc2b5\ub2c8\ub2e4. +success.common.update=\uc815\uc0c1\uc801\uc73c\ub85c \uc218\uc815\ub418\uc5c8\uc2b5\ub2c8\ub2e4. +success.common.delete=\uc815\uc0c1\uc801\uc73c\ub85c \uc0ad\uc81c\ub418\uc5c8\uc2b5\ub2c8\ub2e4. + +success.request.msg = \uc694\uccad\ucc98\ub9ac\uac00 \uc131\uacf5\uc801\uc73c\ub85c \uc218\ud589\ub418\uc5c8\uc2b5\ub2c8\ub2e4. + +common.imposbl.fileupload = \ub354 \uc774\uc0c1 \ud30c\uc77c\uc744 \ucca8\ubd80\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. +common.isConfmDe.msg=\uc2b9\uc778\uc77c\uc790\ub97c \ud655\uc778 \ubc14\ub78d\ub2c8\ub2e4. + + +fail.common.insert = \uc0dd\uc131\uc774 \uc2e4\ud328\ud558\uc600\uc2b5\ub2c8\ub2e4. +fail.common.update = \uc218\uc815\uc774 \uc2e4\ud328\ud558\uc600\uc2b5\ub2c8\ub2e4. +fail.common.delete = \uc0ad\uc81c\uac00 \uc2e4\ud328\ud558\uc600\uc2b5\ub2c8\ub2e4. +fail.common.delete.upperMenuExist = \ucc38\uc870\ub418\ub294 \uba54\ub274\uac00 \uc788\uc5b4 \uc0ad\uc81c\uac00 \uc2e4\ud328\ud558\uc600\uc2b5\ub2c8\ub2e4. +fail.common.select = \uc870\ud68c\uc5d0 \uc2e4\ud328\ud558\uc600\uc2b5\ub2c8\ub2e4. +common.isExist.msg = \uc774\ubbf8 \uc874\uc7ac\ud558\uac70\ub098 \uacfc\uac70\uc5d0 \ub4f1\ub85d\uc774 \ub418\uc5c8\ub358 \uc0c1\ud0dc\uc785\ub2c8\ub2e4. +fail.common.login = \ub85c\uadf8\uc778 \uc815\ubcf4\uac00 \uc62c\ubc14\ub974\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. +fail.common.idsearch = \uc544\uc774\ub514\ub97c \ucc3e\uc744\uc218 \uc5c6\uc2b5\ub2c8\ub2e4. +fail.common.pwsearch = \ube44\ubc00\ubc88\ud638\ub97c \ucc3e\uc744\uc218 \uc5c6\uc2b5\ub2c8\ub2e4. +fail.request.msg = \uc694\uccad\ucc98\ub9ac\ub97c \uc2e4\ud328\ud558\uc600\uc2b5\ub2c8\ub2e4. + +#UI User Message# +fail.user.passwordUpdate1=\ud604\uc7ac \ube44\ubc00\ubc88\ud638\uac00 \ub9de\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. +fail.user.passwordUpdate2=\ube44\ubc00\ubc88\ud638\uc640 \ube44\ubc00\ubc88\ud638 \ud655\uc778\uc774 \uc77c\uce58\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. +info.user.rlnmCnfirm=\uc8fc\ubbfc\ub4f1\ub85d\ubc88\ud638\ub97c \uc0ac\uc6a9\ud558\uc5ec \uc2e4\uba85\ud655\uc778\uc744 \ud558\uc2ed\uc2dc\uc624. +success.user.rlnmCnfirm=\ud589\uc815\uc548\uc804\ubd80\uc758 \uc8fc\ubbfc\ub4f1\ub85d\uc790\ub8cc\uc640 \uc77c\uce58\ud569\ub2c8\ub2e4. +fail.user.rlnmCnfirm=\ud589\uc815\uc548\uc804\ubd80\uc758 \uc8fc\ubbfc\ub4f1\ub85d\uc790\ub8cc\uc640 \uc77c\uce58\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. +fail.user.connectFail=\uc2dc\uc2a4\ud15c \uc7a5\uc560\uac00 \ubc1c\uc0dd\ud588\uc2b5\ub2c8\ub2e4.(\uc778\uc99d\uc11c\ubc84 \uc5f0\uacb0 \uc2e4\ud328) +info.user.rlnmPinCnfirm=\uacf5\uacf5 \uc544\uc774\ud540 \uc544\uc774\ub514\ub97c \uc0ac\uc6a9\ud558\uc5ec \uc2e4\uba85\ud655\uc778\uc744 \ud558\uc2ed\uc2dc\uc624. +success.user.rlnmPinCnfirm=\uacf5\uacf5\uc544\uc774\ud540\uc758 \ub4f1\ub85d\uc790\ub8cc\uc640 \uc77c\uce58\ud569\ub2c8\ub2e4. +fail.user.rlnmPinCnfirm=\uacf5\uacf5\uc544\uc774\ud540\uc758 \ub4f1\ub85d\uc790\ub8cc\uc640 \uc77c\uce58\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. + + +#UI Cop Message# +cop.extrlUser = \uc678\ubd80\uc0ac\uc6a9\uc790 +cop.intrlUser = \ub0b4\ubd80\uc0ac\uc6a9\uc790 +cop.private = \ube44\uacf5\uac1c +cop.public = \uacf5\uac1c + +cop.adbkNm = \uc8fc\uc18c\ub85d\uba85 +cop.othbcScope = \uacf5\uac1c\ubc94\uc704 +cop.company = \ud68c\uc0ac +cop.part = \ubd80\uc11c +cop.man = \uac1c\uc778 +cop.adbkUser = \uad6c\uc131\uc6d0 +cop.bbsNm = \uac8c\uc2dc\ud310\uba85 +cop.bbsIntrcn = \uac8c\uc2dc\ud310\uc18c\uac1c +cop.bbsTyCode = \uac8c\uc2dc\ud310 \uc720\ud615 +cop.bbsAttrbCode = \uac8c\uc2dc\ud310 \uc18d\uc131 +cop.replyPosblAt = \ub2f5\uc7a5\uac00\ub2a5\uc5ec\ubd80 +cop.fileAtchPosblAt = \ud30c\uc77c\ucca8\ubd80\uac00\ub2a5\uc5ec\ubd80 +cop.posblAtchFileNumber = \ucca8\ubd80\uac00\ub2a5\ud30c\uc77c \uc22b\uc790 +cop.tmplatId = \ud15c\ud50c\ub9bf \uc815\ubcf4 +cop.guestList.subject = \ubc29\uba85\ub85d \uac8c\uc2dc\uae00\uc785\ub2c8\ub2e4. +cop.nttSj = \uc81c\ubaa9 +cop.nttCn = \uae00\ub0b4\uc6a9 +cop.ntceBgnde = \uac8c\uc2dc\uc2dc\uc791\uc77c +cop.ntceEndde = \uac8c\uc2dc\uc885\ub8cc\uc77c +cop.ntcrNm = \uc791\uc131\uc790 +cop.password = \ud328\uc2a4\uc6cc\ub4dc +cop.atchFile = \ud30c\uc77c\ucca8\ubd80 +cop.guestList = \ubc29\uba85\ub85d +cop.guestListCn = \ubc29\uba85\ub85d \ub0b4\uc6a9 +cop.noticeTerm = \uac8c\uc2dc\uae30\uac04 +cop.atchFileList = \ucca8\ubd80\ud30c\uc77c\ubaa9\ub85d +cop.cmmntyNm = \ucee4\ubba4\ub2c8\ud2f0\uba85 +cop.cmmntyIntrcn = \ucee4\ubba4\ub2c8\ud2f0 \uc18c\uac1c +cop.cmmntyMngr = \ucee4\ubba4\ub2c8\ud2f0 \uad00\ub9ac\uc790 +cop.clbOprtr = \ub3d9\ud638\ud68c \uc6b4\uc601\uc790 +cop.clbIntrcn = \ub3d9\ud638\ud68c \uc18c\uac1c +cop.clbNm = \ub3d9\ud638\ud68c \uba85 +cop.tmplatNm = \ud15c\ud50c\ub9bf\uba85 +cop.tmplatSeCode = \ud15c\ud50c\ub9bf \uad6c\ubd84 +cop.tmplatCours = \ud15c\ud50c\ub9bf\uacbd\ub85c +cop.useAt = \uc0ac\uc6a9\uc5ec\ubd80 +cop.ncrdNm = \uc774\ub984 +cop.cmpnyNm = \ud68c\uc0ac\uba85 +cop.deptNm = \ubd80\uc11c\uba85 +cop.ofcpsNm = \uc9c1\uc704 +cop.clsfNm = \uc9c1\uae09 +cop.emailAdres = \uc774\uba54\uc77c\uc8fc\uc18c +cop.telNo = \uc804\ud654\ubc88\ud638 +cop.mbtlNum = \ud734\ub300\ud3f0\ubc88\ud638 +cop.adres = \uc8fc\uc18c +cop.extrlUserAt = \uc678\ubd80\uc0ac\uc6a9\uc790\uc5ec\ubd80 +cop.publicAt = \uacf5\uac1c\uc5ec\ubd80 +cop.remark = \ube44\uace0 +cop.trgetNm = \ucee4\ubba4\ub2c8\ud2f0/\ub3d9\ud638\ud68c \uc815\ubcf4 +cop.preview = \ubbf8\ub9ac\ubcf4\uae30 + +cop.withdraw.msg=\ud0c8\ud1f4\ucc98\ub9ac \ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c? +cop.reregist.msg=\uc7ac\uac00\uc785 \ucc98\ub9ac\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c? +cop.registmanager.msg=\uc6b4\uc601\uc9c4\uc73c\ub85c \ub4f1\ub85d\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c? +cop.use.msg=\uc0ac\uc6a9 \ucc98\ub9ac\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c? +cop.unuse.msg=\uc0ac\uc6a9\uc911\uc9c0 \ucc98\ub9ac\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c? +cop.delete.confirm.msg=\uc0ac\uc6a9\uc911\uc9c0\ub97c \uc120\ud0dd\ud558\uc2e4 \uacbd\uc6b0 \ub2e4\uc2dc \uc0ac\uc6a9\uc73c\ub85c \ubcc0\uacbd\uc774 \ubd88\uac00\ub2a5\ud569\ub2c8\ub2e4. +cop.ing.msg=\uc2b9\uc778\uc694\uccad \uc911\uc785\ub2c8\ub2e4. +cop.request.msg=\uac00\uc785\uc2e0\uccad\uc774 \uc815\uc0c1\uc801\uc73c\ub85c \uc694\uccad\ub418\uc5c8\uc2b5\ub2c8\ub2e4 +cop.password.msg=\ud328\uc2a4\uc6cc\ub4dc\ub97c \uc785\ub825\ud574 \uc8fc\uc2ed\uc2dc\uc624. +cop.password.not.same.msg=\ud328\uc2a4\uc6cc\ub4dc\uac00 \uc77c\uce58\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. + +cop.comment.wrterNm = \uc791\uc131\uc790 +cop.comment.commentCn = \ub0b4\uc6a9 +cop.comment.commentPassword = \ud328\uc2a4\uc6cc\ub4dc + +cop.satisfaction.wrterNm = \uc791\uc131\uc790 +cop.satisfaction.stsfdgCn = \ub0b4\uc6a9 +cop.satisfaction.stsfdg = \ub9cc\uc871\ub3c4 +cop.satisfaction.stsfdgPassword = \ud328\uc2a4\uc6cc\ub4dc + +cop.scrap.scrapNm = \uc2a4\ud06c\ub7a9\uba85 + +#UI USS Message# +uss.ion.noi.ntfcSj=\uc81c\ubaa9 +uss.ion.noi.ntfcCn=\ub0b4\uc6a9 +uss.ion.noi.ntfcDate=\uc54c\ub9bc\uc77c\uc790 +uss.ion.noi.ntfcTime=\uc54c\ub9bc\uc2dc\uac04 +uss.ion.noi.ntfcHH=\uc54c\ub9bc\uc2dc\uac04 +uss.ion.noi.ntfcMM=\uc54c\ub9bc\ubd84 +uss.ion.noi.bhNtfcIntrvl=\uc0ac\uc804\uc54c\ub9bc\uac04\uaca9 +uss.ion.noi.bhNtfcIntrvl.msg=\uc0ac\uc804\uc54c\ub9bc\uac04\uaca9 \uc9c0\uc815\uc774 \ud544\uc694\ud569\ub2c8\ub2e4. +uss.ion.noi.alertNtfcTime=\uc54c\ub9bc\uc77c\uc790 \ubc0f \uc2dc\uac04\uc774 \uc720\ud6a8\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. + +#UI COP Message# +cop.sms.trnsmitTelno=\ubc1c\uc2e0\uc804\ud654\ubc88\ud638 +cop.sms.trnsmitCn=\uc804\uc1a1\ub0b4\uc6a9 +cop.sms.recptnTelno=\uc218\uc2e0\uc804\ud654\ubc88\ud638 +cop.sms.send=\uc804\uc1a1 +cop.sms.addRecptn=\ucd94\uac00 +cop.sms.recptnTelno.msg=\uc218\uc2e0\uc804\ud654\ubc88\ud638 \uc9c0\uc815\uc774 \ud544\uc694\ud569\ub2c8\ub2e4. + +#UI sym.log Message# +sym.log.histSeCode = \uc774\ub825\uad6c\ubd84 +sym.log.sysNm = \uc2dc\uc2a4\ud15c\uba85 +sym.log.histCn = \uc774\ub825\ub0b4\uc6a9 +sym.log.atchFile = \ucca8\ubd80\ud30c\uc77c +sym.log.atchFileList = \ucca8\ubd80\ud30c\uc77c\ubaa9\ub85d +sym.ems.receiver = \ubc1b\ub294\uc0ac\ub78c +sym.ems.title = \uc81c\ubaa9 +sym.ems.content = \ubc1c\uc2e0\ub0b4\uc6a9 + +#Vlidator Errors# +errors.prefix=
+errors.suffix=

+ +errors.required={0}\uc740(\ub294) \ud544\uc218 \uc785\ub825\uac12\uc785\ub2c8\ub2e4. +errors.minlength={0}\uc740(\ub294) {1}\uc790 \uc774\uc0c1 \uc785\ub825\ud574\uc57c \ud569\ub2c8\ub2e4. +errors.maxlength={0}\uc740(\ub294) {1}\uc790 \uc774\uc0c1 \uc785\ub825\ud560\uc218 \uc5c6\uc2b5\ub2c8\ub2e4. +errors.invalid={0}\uc740(\ub294) \uc720\ud6a8\ud558\uc9c0 \uc54a\uc740 \uac12\uc785\ub2c8\ub2e4. +errors.minInteger={0}\uc740(\ub294) \uc720\ud6a8\ud55c \uac12\uc774 \uc544\ub2d9\ub2c8\ub2e4. 1 \uc774\uc0c1\uc758 \uac12\uc744 \uc785\ub825\ud574\uc57c \ud569\ub2c8\ub2e4. +errors.byte={0}\uc740(\ub294) byte\ud0c0\uc785\uc774\uc5b4\uc57c \ud569\ub2c8\ub2e4. +errors.short={0}\uc740(\ub294) short\ud0c0\uc785\uc774\uc5b4\uc57c \ud569\ub2c8\ub2e4. +errors.integer={0}\uc740(\ub294) \uc815\uc218 \ud0c0\uc785\uc774\uc5b4\uc57c \ud569\ub2c8\ub2e4. +errors.long={0}\uc740(\ub294) long \ud0c0\uc785\uc774\uc5b4\uc57c \ud569\ub2c8\ub2e4. +errors.float={0}\uc740(\ub294) \uc2e4\uc218 \ud0c0\uc785\uc774\uc5b4\uc57c \ud569\ub2c8\ub2e4. +errors.double={0}\uc740(\ub294) double \ud0c0\uc785\uc774\uc5b4\uc57c \ud569\ub2c8\ub2e4. + +errors.date={0}\uc740(\ub294) \ub0a0\uc9dc \uc720\ud615\uc774 \uc544\ub2d9\ub2c8\ub2e4. +errors.range={0}\uc740(\ub294) {1}\uacfc {2} \uc0ac\uc774\uc758 \uac12\uc774\uc5b4\uc57c \ud569\ub2c8\ub2e4. +errors.creditcard={0}\uc740(\ub294) \uc720\ud6a8\ud558\uc9c0 \uc54a\uc740 \uc2e0\uc6a9\uce74\ub4dc \ubc88\ud638\uc785\ub2c8\ub2e4. +errors.email={0}\uc740(\ub294) \uc720\ud6a8\ud558\uc9c0 \uc54a\uc740 \uc774\uba54\uc77c \uc8fc\uc18c\uc785\ub2c8\ub2e4. + +errors.ihidnum=\uc720\ud6a8\ud558\uc9c0 \uc54a\uc740 \uc8fc\ubbfc\ub4f1\ub85d\ubc88\ud638\uc785\ub2c8\ub2e4. +errors.korean={0}\uc740(\ub294) \ud55c\uae00\uc744 \uc785\ub825\ud558\uc154\uc57c \ud569\ub2c8\ub2e4. +errors.ip=\uc720\ud6a8\ud558\uc9c0 \uc54a\uc740 IP\uc8fc\uc18c\uc785\ub2c8\ub2e4. + +errors.password1={0}\uc740(\ub294) 8~20\uc790 \ub0b4\uc5d0\uc11c \uc785\ub825\ud574\uc57c \ud569\ub2c8\ub2e4. +errors.password2={0}\uc740(\ub294) \ud55c\uae00,\ud2b9\uc218\ubb38\uc790,\ub744\uc5b4\uc4f0\uae30\ub294 \ud5c8\uc6a9\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. +errors.password3={0}\uc740(\ub294) \uc21c\ucc28\uc801\uc778 \uc22b\uc790\ub97c 4\uac1c\uc774\uc0c1 \uc5f0\uc18d\ud574\uc11c \uc0ac\uc6a9\ud560\uc218 \uc5c6\uc2b5\ub2c8\ub2e4. +errors.password4={0}\uc740(\ub294) \ubc18\ubcf5\ub418\ub294 \ubb38\uc790\ub098 \uc22b\uc790\ub97c 4\uac1c\uc774\uc0c1 \uc5f0\uc18d\ud574\uc11c \uc0ac\uc6a9\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. + +errors.notKorean={0}\uc740(\ub294) \ud55c\uae00\uc744 \uc0ac\uc6a9\ud558\uc2e4\uc218 \uc5c6\uc2b5\ub2c8\ub2e4. +error.security.runtime.error = error +#Vlidator Errors- wordDicaryVO# +wordDicaryVO.wordNm=\uc6a9\uc5b4\uba85 +wordDicaryVO.engNm=\uc601\ubb38\uba85 +wordDicaryVO.wordDc=\uc6a9\uc5b4\uc124\uba85 +wordDicaryVO.synonm=\ub3d9\uc758\uc5b4 + +#Vlidator Errors- cnsltManageVO# +cnsltManageVO.cnsltSj=\uc0c1\ub2f4\uc81c\ubaa9 +cnsltManageVO.cnsltCn=\uc0c1\ub2f4\ub0b4\uc6a9 +cnsltManageVO.writngPassword=\uc791\uc131\ube44\ubc00\ubc88\ud638 +cnsltManageVO.areaNo=\uc9c0\uc5ed\ubc88\ud638 +cnsltManageVO.middleTelno=\uc911\uac04\uc804\ud654\ubc88\ud638 +cnsltManageVO.endTelno=\ub05d\uc804\ud654\ubc88\ud638 +cnsltManageVO.wrterNm=\uc791\uc131\uc790\uba85 +cnsltManageVO.managtCn=\ub2f5\ubcc0\ub0b4\uc6a9 + +#Vlidator Errors- siteManageVO# +siteManageVO.siteNm=\uc0ac\uc774\ud2b8\uba85 +siteManageVO.siteUrl=\uc0ac\uc774\ud2b8 URL +siteManageVO.siteDc=\uc0ac\uc774\ud2b8\uc124\uba85 +siteManageVO.siteThemaClCode=\uc0ac\uc774\ud2b8\uc8fc\uc81c\ubd84\ub958 +siteManageVO.actvtyAt=\ud65c\uc131\uc5ec\ubd80 +siteManageVO.useAt=\uc0ac\uc6a9\uc5ec\ubd80 + +#Vlidator Errors- recomendSiteManageVO# +recomendSiteManageVO.recomendSiteNm=\ucd94\ucc9c\uc0ac\uc774\ud2b8\uba85 +recomendSiteManageVO.recomendSiteUrl=\ucd94\ucc9c\uc0ac\uc774\ud2b8 URL +recomendSiteManageVO.recomendSiteDc=\ucd94\ucc9c\uc0ac\uc774\ud2b8\uc124\uba85 +recomendSiteManageVO.recomendResnCn=\ucd94\ucc9c\uc0ac\uc774\ud2b8\uc2b9\uc778\uc0ac\uc720 +recomendSiteManageVO.confmDe=\uc2b9\uc778\uc77c\uc790 + +#Vlidator Errors- hpcmManageVO# +hpcmManageVO.hpcmSeCode=\ub3c4\uc6c0\ub9d0\uad6c\ubd84 +hpcmManageVO.hpcmDf=\ub3c4\uc6c0\ub9d0\uc815\uc758 +hpcmManageVO.hpcmDc=\ub3c4\uc6c0\ub9d0\uc124\uba85 + +#Vlidator Errors- newsManageVO# +newsManageVO.newsSj=\ub274\uc2a4\uc81c\ubaa9 +newsManageVO.newsCn=\ub274\uc2a4\ub0b4\uc6a9 +newsManageVO.ntceDe=\uac8c\uc2dc\uc77c\uc790 + +#Vlidator Errors- faqManageVO# +faqManageVO.qestnSj=\uc9c8\ubb38\uc81c\ubaa9 +faqManageVO.qestnCn=\uc9c8\ubb38\ub0b4\uc6a9 +faqManageVO.answerCn=\ub2f5\ubcc0\ub0b4\uc6a9 + +#Vlidator Errors- stplatManageVO# +stplatManageVO.useStplatNm=\uc774\uc6a9\uc57d\uad00\uba85 +stplatManageVO.useStplatCn=\uc774\uc6a9\uc57d\uad00\ub0b4\uc6a9 +stplatManageVO.infoProvdAgreCn=\uc815\ubcf4\uc81c\uacf5\ub3d9\uc758\ub0b4\uc6a9 + +#Vlidator Errors- cpyrhtPrtcPolicyVO# +cpyrhtPrtcPolicyVO.cpyrhtPrtcPolicyCn=\uc800\uc791\uad8c\ubcf4\ud638\uc815\ucc45\ub0b4\uc6a9 + +#Vlidator Errors- qnaManageVO# +qnaManageVO.qestnSj=\uc9c8\ubb38\uc81c\ubaa9 +qnaManageVO.qestnCn=\uc9c8\ubb38\ub0b4\uc6a9 +qnaManageVO.writngPassword=\uc791\uc131\ube44\ubc00\ubc88\ud638 +qnaManageVO.areaNo=\uc9c0\uc5ed\ubc88\ud638 +qnaManageVO.middleTelno=\uc911\uac04\uc804\ud654\ubc88\ud638 +qnaManageVO.endTelno=\ub05d\uc804\ud654\ubc88\ud638 +qnaManageVO.wrterNm=\uc791\uc131\uc790\uba85 +qnaManageVO.answerCn=\ub2f5\ubcc0\ub0b4\uc6a9 + +#Vlidator Errors- ReprtStatsVO# +sts.reprtId = \ubcf4\uace0\uc11cID +sts.title = \ubcf4\uace0\uc11c\uba85 +sts.category = \ubcf4\uace0\uc11c\uc720\ud615 +sts.status = \uc9c4\ud589\uc0c1\ud0dc +sts.regDate = \ub4f1\ub85d\uc77c\uc2dc + +#Rest day messages# +sym.cal.restDay = \ud734\uc77c\uc77c\uc790 +sym.cal.restName = \ud734\uc77c\uba85 +sym.cal.restDetail = \ud734\uc77c\uc124\uba85 +sym.cal.restCategory = \ud734\uc77c\uad6c\ubd84 + +image.errorBg = \uc624\ub958\uc774\ubbf8\uc9c0 \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/classes/egovframework/spring/context-common.xml b/src/main/webapp/WEB-INF/classes/egovframework/spring/context-common.xml new file mode 100644 index 00000000..d7d67986 --- /dev/null +++ b/src/main/webapp/WEB-INF/classes/egovframework/spring/context-common.xml @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + classpath:/egovframework/message/message-common + classpath:/egovframework/rte/fdl/idgnr/messages/idgnr + classpath:/egovframework/rte/fdl/property/messages/properties + + + + 60 + + + + + + + + + + + + + + + + + + + * + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/webapp/WEB-INF/classes/egovframework/spring/context-datasource.xml b/src/main/webapp/WEB-INF/classes/egovframework/spring/context-datasource.xml new file mode 100644 index 00000000..f5a52bd0 --- /dev/null +++ b/src/main/webapp/WEB-INF/classes/egovframework/spring/context-datasource.xml @@ -0,0 +1,48 @@ + + + + + + + classpath:/egovframework/egovProps/*.properties + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/classes/egovframework/spring/context-mybatis.xml b/src/main/webapp/WEB-INF/classes/egovframework/spring/context-mybatis.xml new file mode 100644 index 00000000..4bbfef0f --- /dev/null +++ b/src/main/webapp/WEB-INF/classes/egovframework/spring/context-mybatis.xml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/webapp/WEB-INF/classes/egovframework/spring/context-properties.xml b/src/main/webapp/WEB-INF/classes/egovframework/spring/context-properties.xml new file mode 100644 index 00000000..d0f9d88f --- /dev/null +++ b/src/main/webapp/WEB-INF/classes/egovframework/spring/context-properties.xml @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/webapp/WEB-INF/classes/egovframework/spring/context-scheduling.xml b/src/main/webapp/WEB-INF/classes/egovframework/spring/context-scheduling.xml new file mode 100644 index 00000000..8b9a356d --- /dev/null +++ b/src/main/webapp/WEB-INF/classes/egovframework/spring/context-scheduling.xml @@ -0,0 +1,25 @@ + + + + + diff --git a/src/main/webapp/WEB-INF/classes/egovframework/spring/context-transaction.xml b/src/main/webapp/WEB-INF/classes/egovframework/spring/context-transaction.xml new file mode 100644 index 00000000..60bbaa88 --- /dev/null +++ b/src/main/webapp/WEB-INF/classes/egovframework/spring/context-transaction.xml @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/com/Jusangdo_SQL.xml b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/com/Jusangdo_SQL.xml new file mode 100644 index 00000000..7e3d4733 --- /dev/null +++ b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/com/Jusangdo_SQL.xml @@ -0,0 +1,11 @@ + + + + + + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/jibanModel/jibanModel_SQL.xml b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/jibanModel/jibanModel_SQL.xml new file mode 100644 index 00000000..914a6de3 --- /dev/null +++ b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/jibanModel/jibanModel_SQL.xml @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/jihaanjeonMoel/jihaanjeonModel_SQL.xml b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/jihaanjeonMoel/jihaanjeonModel_SQL.xml new file mode 100644 index 00000000..a7d84cb6 --- /dev/null +++ b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/jihaanjeonMoel/jihaanjeonModel_SQL.xml @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/main/Community_SQL.xml b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/main/Community_SQL.xml new file mode 100644 index 00000000..35a4fd10 --- /dev/null +++ b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/main/Community_SQL.xml @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/main/Data_SQL.xml b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/main/Data_SQL.xml new file mode 100644 index 00000000..0d72a26b --- /dev/null +++ b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/main/Data_SQL.xml @@ -0,0 +1,68 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/main/Faq_SQL.xml b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/main/Faq_SQL.xml new file mode 100644 index 00000000..d94b83a5 --- /dev/null +++ b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/main/Faq_SQL.xml @@ -0,0 +1,38 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/main/File2019_SQL.xml b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/main/File2019_SQL.xml new file mode 100644 index 00000000..267f8131 --- /dev/null +++ b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/main/File2019_SQL.xml @@ -0,0 +1,56 @@ + + + + + + + SELECT MAX(FILE_NO)+1 FROM WEB_COMM_FILE + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/main/File_SQL.xml b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/main/File_SQL.xml new file mode 100644 index 00000000..e9c10f44 --- /dev/null +++ b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/main/File_SQL.xml @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/main/GroundReport_SQL.xml b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/main/GroundReport_SQL.xml new file mode 100644 index 00000000..35600f35 --- /dev/null +++ b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/main/GroundReport_SQL.xml @@ -0,0 +1,116 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/main/Home_SQL.xml b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/main/Home_SQL.xml new file mode 100644 index 00000000..89d1110d --- /dev/null +++ b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/main/Home_SQL.xml @@ -0,0 +1,320 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + INSERT INTO WEB_MEMBER_EXIT + (USERID, USERNAME, UPJONG_CODE, EXIT_CAUSE) + VALUES (#{userId}, #{userName}, #{upjong_code}, #{exit_cause}) + + + DELETE WEB_MEMBER_IN + WHERE TRIM(USERID) = #{userId} + AND TRIM(PASSWD) = #{pass} + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/main/Join_SQL.xml b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/main/Join_SQL.xml new file mode 100644 index 00000000..50f6bf54 --- /dev/null +++ b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/main/Join_SQL.xml @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + INSERT INTO WEB_MEMBER_IN (USERID,PASSWD,USER_NAME,PHONE,EMAIL,COMPANY_NAME,PART_NAME,ZIP_CODE,ADDRESS,COMPANY_REGIST_NO,UPJONG_CODE,CLS, DUPINFO, VIRTUALNO, LAST_LOGIN_DATE, AGREEYN, LOGIN_COUNT, ENCRYPT_CHANGE, SEQ, LIQ_YN, FILENAME, SAVENAME, GOVEMENT_CODE, CERTIFICATION_YN) + VALUES(#{userId, jdbcType=VARCHAR},#{password, jdbcType=VARCHAR},#{userName, jdbcType=VARCHAR},#{phone, jdbcType=VARCHAR},#{email, jdbcType=VARCHAR},#{companyName3, jdbcType=VARCHAR},#{part, jdbcType=VARCHAR},#{zipcode, jdbcType=VARCHAR},#{address, jdbcType=VARCHAR},#{companyNo, jdbcType=VARCHAR},#{upjong, jdbcType=VARCHAR},#{cls},#{DUPINFO},#{VIRTUALNO},SYSDATE-1, + #{agreeyn},0,'Y', (select max(seq)+1 from web_member_in), #{liqYn}, #{fileName}, #{saveName}, #{companyName2}, 1) + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/main/Login_SQL.xml b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/main/Login_SQL.xml new file mode 100644 index 00000000..bd701800 --- /dev/null +++ b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/main/Login_SQL.xml @@ -0,0 +1,549 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + UPDATE ${table} SET ${values} WHERE ${where} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + UPDATE WEB_DOWNLOAD_LOG + SET DOWNYN = 'R' + + , USE_CONTENTS = #{content} + + + , FILENAME = #{filename} + , SAVENAME = #{savename} + + + , FILENAME2 = #{filename2} + , SAVENAME2 = #{savename2} + + , PHONE = #{phone} + WHERE APPROVE = 'Y' + AND USERID = #{userId} + + AND DOWNYN = 'W' + + + AND IDX = #{idx} + + + AND DOWNYN = 'R' + + + + + + + + + + + + + + + + + + + + + + + '5' + ]]> + + + + + + INSERT INTO WEB_MEMBER_IN (USERID,PASSWD,USER_NAME,PHONE,EMAIL,COMPANY_NAME,PART_NAME,COMPANY_REGIST_NO,UPJONG_CODE,CLS,LAST_LOGIN_DATE,AGREEYN, LOGIN_COUNT, SEQ, LIQ_YN,GOVEMENT_CODE) + VALUES(#{userId},'528fe0ece2ee8afa2b26',#{userName},#{phone},#{email},#{companyName},#{part},#{companyNo},#{upjong},#{cls},SYSDATE,'Y','0',(select max(seq)+1 from web_member_in), 'N', '00') + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/main/Notice_SQL.xml b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/main/Notice_SQL.xml new file mode 100644 index 00000000..d1e6355e --- /dev/null +++ b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/main/Notice_SQL.xml @@ -0,0 +1,35 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/main/QnA_SQL.xml b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/main/QnA_SQL.xml new file mode 100644 index 00000000..91cde548 --- /dev/null +++ b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/main/QnA_SQL.xml @@ -0,0 +1,129 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/main/Vote_SQL.xml b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/main/Vote_SQL.xml new file mode 100644 index 00000000..2c95fcaf --- /dev/null +++ b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/main/Vote_SQL.xml @@ -0,0 +1,55 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/map/MapCom_SQL.xml b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/map/MapCom_SQL.xml new file mode 100644 index 00000000..7b63b55e --- /dev/null +++ b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/map/MapCom_SQL.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/map/MapControl_SQL.xml b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/map/MapControl_SQL.xml new file mode 100644 index 00000000..f95317c9 --- /dev/null +++ b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/map/MapControl_SQL.xml @@ -0,0 +1,743 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + UPDATE WEB_CART SET DATETIME = SYSDATE, SELECT_CODE = #{selectCode} WHERE TRIM(USERID) = #{userId} + + + + INSERT INTO WEB_CART + ( + SELECT + NVL(MAX(IDX),0) + 1, #{userId}, #{mId}, SYSDATE, #{hcode}, #{cartType}, #{selectCode} + FROM WEB_CART + + ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/map/MapCoordSearch_SQL.xml b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/map/MapCoordSearch_SQL.xml new file mode 100644 index 00000000..a60d7829 --- /dev/null +++ b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/map/MapCoordSearch_SQL.xml @@ -0,0 +1,64 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/map/MapInformation_SQL.xml b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/map/MapInformation_SQL.xml new file mode 100644 index 00000000..dcf4b646 --- /dev/null +++ b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/map/MapInformation_SQL.xml @@ -0,0 +1,371 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/map/MapLeft_SQL.xml b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/map/MapLeft_SQL.xml new file mode 100644 index 00000000..4695f530 --- /dev/null +++ b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/map/MapLeft_SQL.xml @@ -0,0 +1,1400 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + SELECT NVL(MAX(IDX),0) + 1 FROM WEB_DOWNLOAD_LOG + + + + + + + SELECT 1 FROM DUAL + + + INSERT INTO WEB_DIST_SURVEY + ( + SELECT + + + FROM WEB_DIST_SURVEY + ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/map/MapMain_SQL.xml b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/map/MapMain_SQL.xml new file mode 100644 index 00000000..df07b853 --- /dev/null +++ b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/map/MapMain_SQL.xml @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/map/MapProjectSearch_SQL.xml b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/map/MapProjectSearch_SQL.xml new file mode 100644 index 00000000..42f18016 --- /dev/null +++ b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/map/MapProjectSearch_SQL.xml @@ -0,0 +1,824 @@ + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/basic_SQL.xml b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/basic_SQL.xml new file mode 100644 index 00000000..fa62c101 --- /dev/null +++ b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/basic_SQL.xml @@ -0,0 +1,737 @@ + + + + + + + + + + + DELETE FROM TEMP_SPT WHERE PROJECT_CODE = #{projectCode} AND HOLE_CODE = #{holeCode} + + + + DELETE FROM TEMP_SPT WHERE PROJECT_CODE = #{projectCode} AND HOLE_CODE = #{holeCode} AND (SEQ > #{seq}) + + + + INSERT INTO TEMP_SPT ( + PROJECT_CODE + , HOLE_CODE + , SEQ + , DEPTH_SPT + , SPT_N + , SPT_DEPTH + , USERID + , DATETIME + ) VALUES ( + #{projectCode} + , #{holeCode} + , (SELECT NVL(MAX(SEQ),0)+1 FROM TEMP_SPT WHERE PROJECT_CODE=#{projectCode} AND HOLE_CODE=#{holeCode}) + , #{depthSpt} + , #{sptN} + , #{sptDepth} + , #{userId} + , SYSDATE + ) + + + + INSERT + INTO TEMP_SPT ( + PROJECT_CODE + , HOLE_CODE + , SEQ + , DEPTH_SPT + , SPT_N + , SPT_DEPTH + , USERID + , DATETIME + ) + ${insertSet} + + + + + + + + + + + + DELETE FROM TEMP_SLICKENSIDE_INFO WHERE PROJECT_CODE = #{projectCode} AND HOLE_CODE = #{holeCode} + + + + INSERT INTO TEMP_SLICKENSIDE_INFO ( + PROJECT_CODE + , HOLE_CODE + , SEQ + , SLICKENSIDE_DEPTH_FROM + , SLICKENSIDE_DEPTH_TO + , SLICKENSIDE_DIRECTION + , SLICKENSIDE_ANGLE + , SLICKENSIDE_MAX + , SLICKENSIDE_MIN + , SLICKENSIDE_AVG + , SLICKENSIDE_ROUGH + , USERID + , DATETIME + ) VALUES ( + #{projectCode} + , #{holeCode} + , (SELECT NVL(MAX(SEQ),0)+1 FROM TEMP_SLICKENSIDE_INFO WHERE + PROJECT_CODE=#{projectCode} AND HOLE_CODE=#{holeCode}) + , #{slickensideDepthFrom} + , #{slickensideDepthTo} + , #{slickensideDirection} + , #{slickensideAngle} + , #{slickensideMax} + , #{slickensideMin} + , #{slickensideAvg} + , #{slickensideRough} + , #{userId} + , SYSDATE + ) + + + + + + DELETE FROM TEMP_RQD WHERE PROJECT_CODE = #{projectCode} AND HOLE_CODE = #{holeCode} + + + + INSERT INTO TEMP_RQD ( + PROJECT_CODE + , HOLE_CODE + , SEQ + , RT_DEPTH_FROM + , RT_DEPTH_TO + , RT_TCR + , RT_RQD + , USERID + , DATETIME + ) VALUES ( + #{projectCode} + , #{holeCode} + , (SELECT NVL(MAX(SEQ),0)+1 FROM TEMP_RQD WHERE PROJECT_CODE=#{projectCode} AND HOLE_CODE=#{holeCode}) + , #{rtDepthFrom} + , #{rtDepthTo} + , #{rtTcr} + , #{rtRqd} + , #{userId} + , SYSDATE + ) + + + + + + DELETE FROM TEMP_DSF WHERE PROJECT_CODE = #{projectCode} AND HOLE_CODE = #{holeCode} + + + + INSERT INTO TEMP_DSF ( + PROJECT_CODE + , HOLE_CODE + , SEQ + , DSF_DEPTH_FROM + , DSF_DEPTH_TO + , DSF_DECOMPOSITION + , DSF_STRENGTH + , DSF_FRACTURING + , USERID + , DATETIME + ) VALUES ( + #{projectCode} + , #{holeCode} + , (SELECT NVL(MAX(SEQ),0)+1 FROM TEMP_DSF WHERE PROJECT_CODE=#{projectCode} AND HOLE_CODE=#{holeCode}) + , #{dsfDepthFrom} + , #{dsfDepthTo} + , #{dsfDecomposition} + , #{dsfStrength} + , #{dsfFracturing} + , #{userId} + , SYSDATE + ) + + + + + + + + DELETE FROM TEMP_Q WHERE PROJECT_CODE = #{projectCode} AND HOLE_CODE = #{holeCode} + + + + INSERT INTO TEMP_Q ( + PROJECT_CODE + , HOLE_CODE + , SEQ + , DEPTH_FROM + , DEPTH_TO + , ROCK_TYPE + , RQD + , RQD_DESC + , JN + , JN_DESC + , JR + , JR_DESC + , JA + , JA_DESC + , JW + , JW_DESC + , SRF + , SRF_DESC + , USERID + , DATETIME + ) VALUES ( + #{projectCode} + , #{holeCode} + , (SELECT NVL(MAX(SEQ),0)+1 FROM TEMP_Q WHERE PROJECT_CODE=#{projectCode} AND HOLE_CODE=#{holeCode}) + , #{depthFrom} + , #{depthTo} + , #{rockType} + , #{rqd} + , #{rqdDesc} + , #{jn} + , #{jnDesc} + , #{jr} + , #{jrDesc} + , #{ja} + , #{jaDesc} + , #{jw} + , #{jwDesc} + , #{srf} + , #{srfDesc} + , #{userId} + , SYSDATE + ) + + + + + + DELETE FROM TEMP_RMR WHERE PROJECT_CODE = #{projectCode} AND HOLE_CODE = #{holeCode} + + + + INSERT INTO TEMP_RMR ( + PROJECT_CODE + , HOLE_CODE + , SEQ + , DEPTH_FROM + , DEPTH_TO + , ROCK_TYPE + , ROCK_STRENGTH + , ROCK_STRENGTH_POINT + , ROCK_STRENGTH_DESC + , RQD + , RQD_POINT + , RQD_DESC + , JOINTS_SPACING + , JOINTS_SPACING_POINT + , JOINTS_SPACING_DESC + , JOINT_CONDITION + , JOINT_CONDITION_POINT + , GROUNDWATER_CONDITION + , GROUNDWATER_CONDITION_POINT + , JOINT_ORIENTATION + , JOINT_ORIENTATION_POINT + , JOINT_ORIENTATION_DESC + , USERID + , DATETIME + ) VALUES ( + #{projectCode} + , #{holeCode} + , (SELECT NVL(MAX(SEQ),0)+1 FROM TEMP_RMR WHERE PROJECT_CODE = #{projectCode} AND HOLE_CODE = #{holeCode}) + , #{depthFrom} + , #{depthTo} + , #{rockType} + , #{rockStrength} + , #{rockStrengthPoint} + , #{rockStrengthDesc} + , #{rqd} + , #{rqdPoint} + , #{rqdDesc} + , #{jointsSpacing} + , #{jointsSpacingPoint} + , #{jointsSpacingDesc} + , #{jointCondition} + , #{jointConditionPoint} + , #{groundwaterCondition} + , #{groundwaterConditionPoint} + , #{jointOrientation} + , #{jointOrientationPoint} + , #{jointOrientationDesc} + , #{userId} + , SYSDATE + ) + + + + + + DELETE FROM TEMP_FIELD_PRESSUREMETER WHERE PROJECT_CODE = #{projectCode} AND HOLE_CODE = #{holeCode} + + + + INSERT INTO TEMP_FIELD_PRESSUREMETER ( + PROJECT_CODE + , HOLE_CODE + , SEQ + , FIELDPRES_CODE + , FIELDPRES_TUBE_TYPE + , FIELDPRES_INSPECTED_BY + , FIELDPRES_CHECKED_BY + , FIELDPRES_DEPTH + , FIELDPRES_KP + , FIELDPRES_EP + , USERID + , DATETIME + ) VALUES ( + #{projectCode} + , #{holeCode} + , (SELECT NVL(MAX(SEQ),0)+1 FROM TEMP_FIELD_PRESSUREMETER WHERE PROJECT_CODE = #{projectCode} AND HOLE_CODE = #{holeCode}) + , #{fieldpresCode} + , #{fieldpresTubeType} + , #{fieldpresInspectedBy} + , #{fieldpresCheckedBy} + , #{fieldpresDepth} + , #{fieldpresKp} + , #{fieldpresEp} + , #{userId} + , SYSDATE + ) + + + + + + + + + + + + + + + + + + + + DELETE FROM TEMP_FIELD_CONE_PENETRATION WHERE PROJECT_CODE = #{projectCode} AND HOLE_CODE = #{holeCode} + + + + INSERT INTO TEMP_FIELD_CONE_PENETRATION ( + PROJECT_CODE + , HOLE_CODE + , SEQ + , CP_CODE + , CP_DEPTH_FROM + , CP_DEPTH_TO + , CP_EDGE_RESISTENCE + , CP_CORRECTED_EDGE_RESISTENCE + , CP_SLEEVE_FRICTIONAL_FORCE + , CP_NEUTRALSTRESS + , CP_FRICTIONAL_RATIO + , USERID + , DATETIME + ) VALUES ( + #{projectCode} + , #{holeCode} + , (SELECT NVL(MAX(SEQ),0)+1 FROM TEMP_FIELD_CONE_PENETRATION WHERE PROJECT_CODE = #{projectCode} AND HOLE_CODE = #{holeCode}) + , #{cpCode} + , #{cpDepthFrom} + , #{cpDepthTo} + , #{cpEdgeResistence} + , #{cpCorrectedEdgeResistence} + , #{cpSleeveFrictionalForce} + , #{cpNeutralstress} + , #{cpFrictionalRatio} + , #{userId} + , SYSDATE + ) + + + + MERGE INTO TEMP_CONE_PENETRATION_IMAGES + USING DUAL + ON ( PROJECT_CODE = #{projectCode} + AND HOLE_CODE = #{holeCode} + ) + WHEN MATCHED THEN + UPDATE SET + GRAPH_IMAGE = #{graphImage} + , GRAPH_LOCAL = #{graphLocal} + , USERID = #{userId} + , DATETIME = SYSDATE + WHEN NOT MATCHED THEN + INSERT( + PROJECT_CODE + , HOLE_CODE + , GRAPH_IMAGE + , GRAPH_LOCAL + , USERID + , DATETIME + ) VALUES ( + #{projectCode} + , #{holeCode} + , #{graphImage} + , #{graphLocal} + , #{userId} + , SYSDATE + ) + + + + DELETE FROM TEMP_CONE_PENETRATION_IMAGES WHERE PROJECT_CODE = #{projectCode} AND HOLE_CODE = #{holeCode} + + + + + + + + UPDATE TEMP_WP_TEST + SET WP_CODE = #{wpCode} + , USERID = #{userId} + , DATETIME = SYSDATE + WHERE PROJECT_CODE = #{projectCode} + AND HOLE_CODE = #{holeCode} + AND WP_CODE = #{oldWpCode} + + + + DELETE FROM TEMP_FIELD_WATERPRESSURE WHERE PROJECT_CODE = #{projectCode} AND HOLE_CODE = #{holeCode} + + + + DELETE FROM TEMP_WP_TEST WHERE PROJECT_CODE = #{projectCode} AND HOLE_CODE = #{holeCode} AND SEQ = #{seq} + + + + INSERT INTO TEMP_WP_TEST ( + PROJECT_CODE + , HOLE_CODE + , SEQ + , WP_CODE + , WPTEST_ORDER + , WPTEST_WATER_PRESSURE + , WPTEST_TOTAL_HEAD + , WPTEST_QUANTITY + , WPTEST_PERMEABILITY + , WPLUGEON_ORDER + , WPLUGEON_PRESSURE + , WPLUGEON_INJECT_WATER + , WPLUGEON_LU + , USERID + , DATETIME + ) VALUES ( + #{projectCode} + , #{holeCode} + , #{seq} + , #{newWpCode} + , #{wptestOrder} + , #{wptestWaterPressure} + , #{wptestTotalHead} + , #{wptestQuantity} + , #{wptestPermeability} + , #{wplugeonOrder} + , #{wplugeonPressure} + , #{wplugeonInjectWater} + , #{wplugeonLu} + , #{userId} + , SYSDATE + ) + + + + INSERT INTO TEMP_FIELD_WATERPRESSURE ( + PROJECT_CODE + , HOLE_CODE + , SEQ + , WP_CODE + , FIELDWP_DEPTH_FROM + , FIELDWP_DEPTH_TO + , FIELDWP_PACKER_TYPE + , FIELDWP_TEST_SPACING + , FIELDWB_WATER_PRESSURE + , FIELDWP_AVG_PERMEABILITY + , FIELDWP_LU + , FIELDWP_INSPECTED_BY + , FIELDWP_CHECKED_BY + , FIELDWP_REMARK + , GRAPH_IMAGE + , GRAPH_LOCAL + , USERID + , DATETIME + ) VALUES ( + #{projectCode} + , #{holeCode} + , #{seq} + , #{wpCode} + , #{fieldwpDepthFrom} + , #{fieldwpDepthTo} + , #{fieldwpPackerType} + , #{fieldwpTestSpacing} + , #{fieldwbWaterPressure} + , #{fieldwpAvgPermeability} + , #{fieldwpLu} + , #{fieldwpInspectedBy} + , #{fieldwpCheckedBy} + , #{fieldwpRemark} + , #{graphImage} + , #{graphLocal} + , #{userId} + , SYSDATE + ) + + + + + + + + UPDATE TEMP_FIELDPER_SUB + SET FIELDPER_CODE = #{fieldperCode} + , USERID = #{userId} + , DATETIME = SYSDATE + WHERE PROJECT_CODE = #{projectCode} + AND HOLE_CODE = #{holeCode} + AND FIELDPER_CODE = #{oldFieldperCode} + + + + DELETE FROM TEMP_FIELD_PERMEABILITY WHERE PROJECT_CODE = #{projectCode} AND HOLE_CODE = #{holeCode} + + + + INSERT INTO TEMP_FIELD_PERMEABILITY ( + PROJECT_CODE + , HOLE_CODE + , SEQ + , FIELDPER_CODE + , FIELDPER_DEPTH_FROM + , FIELDPER_DEPTH_TO + , FIELDPER_CASING_DIA + , FIELDPER_CASING_HEIGHT + , FIELDPER_AVG_PERMEABILITY + , FIELDPER_INSPECTED_BY + , FIELDPER_CHECKED_BY + , FIELDPER_REMARK + , GRAPH_IMAGE + , GRAPH_LOCAL + , USERID + , DATETIME + ) VALUES ( + #{projectCode} + , #{holeCode} + , #{seq} + , #{fieldperCode} + , #{fieldperDepthFrom} + , #{fieldperDepthTo} + , #{fieldperCasingDia} + , #{fieldperCasingHeight} + , #{fieldperAvgPermeability} + , #{fieldperInspectedBy} + , #{fieldperCheckedBy} + , #{fieldperRemark} + , #{graphImage} + , #{graphLocal} + , #{userId} + , SYSDATE + ) + + + + DELETE FROM TEMP_FIELDPER_SUB WHERE PROJECT_CODE = #{projectCode} AND HOLE_CODE = #{holeCode} AND SEQ = #{seq} + + + + INSERT INTO TEMP_FIELDPER_SUB ( + PROJECT_CODE + , HOLE_CODE + , SEQ + , FIELDPER_CODE + , FIELDPER_ORDER + , FIELDPER_SUB_TIME + , FIELDPER_SUB_TOTAL_HEAD + , FIELDPER_SUB_FALLING_HEAD + , FIELDPER_SUB_WATER_LOOSE + , FIELDPER_SUB_QUANTITY + , FIELDPER_SUB_PERMEABILITY + , USERID + , DATETIME + ) VALUES ( + #{projectCode} + , #{holeCode} + , #{seq} + , #{fieldperCode} + , #{fieldperOrder} + , #{fieldperSubTime} + , #{fieldperSubTotalHead} + , #{fieldperSubFallingHead} + , #{fieldperSubWaterLoose} + , #{fieldperSubQuantity} + , #{fieldperSubPermeability} + , #{userId} + , SYSDATE + ) + + + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/common.xml b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/common.xml new file mode 100644 index 00000000..17dd43cc --- /dev/null +++ b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/common.xml @@ -0,0 +1,484 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/complete.xml b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/complete.xml new file mode 100644 index 00000000..07ed1b52 --- /dev/null +++ b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/complete.xml @@ -0,0 +1,76 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/complete_SQL.xml b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/complete_SQL.xml new file mode 100644 index 00000000..e24ece73 --- /dev/null +++ b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/complete_SQL.xml @@ -0,0 +1,84 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/geoLogging_SQL.xml b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/geoLogging_SQL.xml new file mode 100644 index 00000000..70b4b170 --- /dev/null +++ b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/geoLogging_SQL.xml @@ -0,0 +1,244 @@ + + + + + + + + + + + DELETE FROM TEMP_BOREHOLE_WAVE_PS WHERE PROJECT_CODE = #{projectCode} AND HOLE_CODE = #{holeCode} + + + + INSERT INTO TEMP_BOREHOLE_WAVE_PS ( + PROJECT_CODE + , HOLE_CODE + , SEQ + , BH_DEPTH_FROM + , BH_DEPTH_TO + , BH_VP_VELOCITY + , BH_VS_VELOCITY + , BH_POISSONS_RATIO + , BH_SHEAR_MODULUS + , BH_YOUNGS_MODULUS + , BH_DENSITY + , USERID + , DATETIME + ) VALUES ( + #{projectCode} + , #{holeCode} + , #{seq} + , #{bhDepthFrom} + , #{bhDepthTo} + , #{bhVpVelocity} + , #{bhVsVelocity} + , #{bhPoissonsRatio} + , #{bhShearModulus} + , #{bhYoungsModulus} + , #{bhDensity} + , #{userId} + , SYSDATE + ) + + + + MERGE INTO TEMP_BOREHOLE_WAVE + USING DUAL + ON ( PROJECT_CODE = #{projectCode} + AND HOLE_CODE = #{holeCode} + ) + WHEN MATCHED THEN + UPDATE SET BH_CHECKED_BY = #{bhCheckedBy} + , GRAPH_IMAGE = #{graphImage} + , GRAPH_LOCAL = #{graphLocal} + , USERID = #{userId} + , DATETIME = SYSDATE + WHEN NOT MATCHED THEN + INSERT( + PROJECT_CODE + , HOLE_CODE + , BH_CHECKED_BY + , GRAPH_IMAGE + , GRAPH_LOCAL + , USERID + , DATETIME + ) VALUES ( + #{projectCode} + , #{holeCode} + , #{bhCheckedBy} + , #{graphImage} + , #{graphLocal} + , #{userId} + , SYSDATE + ) + + + + + + + + DELETE FROM TEMP_DOWNHOLE_PS WHERE PROJECT_CODE = #{projectCode} AND HOLE_CODE = #{holeCode} + + + + INSERT INTO TEMP_DOWNHOLE_PS ( + PROJECT_CODE + , HOLE_CODE + , SEQ + , DH_DEPTH_FROM + , DH_DEPTH_TO + , DH_VP_VELOCITY + , DH_VS_VELOCITY + , DH_POISSONS_RATIO + , DH_SHEAR_MODULUS + , DH_YOUNGS_MODULUS + , DH_DENSITY + , USERID + , DATETIME + ) VALUES ( + #{PROJECT_CODE} + , #{HOLE_CODE} + , #{SEQ} + , #{DH_DEPTH_FROM} + , #{DH_DEPTH_TO} + , #{DH_VP_VELOCITY} + , #{DH_VS_VELOCITY} + , #{DH_POISSONS_RATIO} + , #{DH_SHEAR_MODULUS} + , #{DH_YOUNGS_MODULUS} + , #{DH_DENSITY} + , #{userId} + , SYSDATE + ) + + + + MERGE INTO TEMP_DOWNHOLE + USING DUAL + ON ( PROJECT_CODE = #{PROJECT_CODE} + AND HOLE_CODE = #{HOLE_CODE} + ) + WHEN MATCHED THEN + UPDATE SET DH_CHECKED_BY = #{DH_CHECKED_BY} + , GRAPH_IMAGE = #{GRAPH_IMAGE} + , GRAPH_LOCAL = #{GRAPH_LOCAL} + , USERID = #{userId} + , DATETIME = SYSDATE + WHEN NOT MATCHED THEN + INSERT( + PROJECT_CODE + , HOLE_CODE + , DH_CHECKED_BY + , GRAPH_IMAGE + , GRAPH_LOCAL + , USERID + , DATETIME + ) VALUES ( + #{PROJECT_CODE} + , #{HOLE_CODE} + , #{DH_CHECKED_BY} + , #{GRAPH_IMAGE} + , #{GRAPH_LOCAL} + , #{USERID} + , SYSDATE + ) + + + + + + + + DELETE FROM TEMP_DENSITY_SUB WHERE PROJECT_CODE = #{projectCode} AND HOLE_CODE = #{holeCode} + + + + INSERT INTO TEMP_DENSITY_SUB ( + PROJECT_CODE + , HOLE_CODE + , SEQ + , DEPTH_FROM + , DEPTH_TO + , LAYER + , DENSITY + , USERID + , DATETIME + ) VALUES ( + #{PROJECT_CODE} + , #{HOLE_CODE} + , #{SEQ} + , #{DEPTH_FROM} + , #{DEPTH_TO} + , #{LAYER} + , #{DENSITY} + , #{userId} + , SYSDATE + ) + + + + MERGE INTO TEMP_DENSITY + USING DUAL + ON ( PROJECT_CODE = #{PROJECT_CODE} + AND HOLE_CODE = #{HOLE_CODE} + ) + WHEN MATCHED THEN + UPDATE SET RS_CHECKED_BY = #{RS_CHECKED_BY} + , RS_WATER_LEVEL= #{RS_WATER_LEVEL} + , GRAPH_IMAGE = #{GRAPH_IMAGE} + , GRAPH_LOCAL = #{GRAPH_LOCAL} + , USERID = #{USERID} + , DATETIME = SYSDATE + , JOSAID = #{JOSAID} + , JOSA_START_TIME = #{JOSA_START_TIME} + , JOSA_END_TIME = #{JOSA_END_TIME} + WHEN NOT MATCHED THEN + INSERT( + PROJECT_CODE + , HOLE_CODE + , RS_CHECKED_BY + , RS_WATER_LEVEL + , GRAPH_IMAGE + , GRAPH_LOCAL + , USERID + , DATETIME + , JOSAID + , JOSA_START_TIME + , JOSA_END_TIME + ) VALUES ( + #{PROJECT_CODE} + , #{HOLE_CODE} + , #{RS_CHECKED_BY} + , #{RS_WATER_LEVEL} + , #{GRAPH_IMAGE} + , #{GRAPH_LOCAL} + , #{userId} + , SYSDATE + , #{JOSAID} + , #{JOSA_START_TIME} + , #{JOSA_END_TIME} + ) + + + + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/header.xml b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/header.xml new file mode 100644 index 00000000..c31e6403 --- /dev/null +++ b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/header.xml @@ -0,0 +1,327 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/holeCoord.xml b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/holeCoord.xml new file mode 100644 index 00000000..4f75e340 --- /dev/null +++ b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/holeCoord.xml @@ -0,0 +1,112 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/info_SQL.xml b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/info_SQL.xml new file mode 100644 index 00000000..2f70a337 --- /dev/null +++ b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/info_SQL.xml @@ -0,0 +1,279 @@ + + + + + + + + + + + + + + + + + + + + UPDATE TEMP_PROJECT_INFO SET + CLASS_CODE= #{CLASS_CODE} + ,CLASS_DETAIL_CODE= #{CLASS_DETAIL_CODE} + ,PROJECT_NAME= #{PROJECT_NAME} + ,PROJECT_CONSTRUCTION_CODE= #{PROJECT_CONSTRUCTION_CODE} + ,PROJECT_INSTRUCTION_CODE= #{PROJECT_INSTRUCTION_CODE} + ,PROJECT_INSTRUCTION_DESC= #{PROJECT_INSTRUCTION_DESC} + ,PROJECT_MASTER_COMPANY_O_CODE= #{PROJECT_MASTER_COMPANY_O_CODE} + ,PROJECT_MASTER_COMPANY_TW_CODE= #{PROJECT_MASTER_COMPANY_TW_CODE} + ,PROJECT_MASTER_COMPANY_TH_CODE= #{PROJECT_MASTER_COMPANY_TH_CODE} + ,PROJECT_MASTER_COMPANY_F_CODE= #{PROJECT_MASTER_COMPANY_F_CODE} + ,PROJECT_MASTER_COMPANY_NAME= #{PROJECT_MASTER_COMPANY_NAME} + ,PROJECT_CONST_COMPANY= #{PROJECT_CONST_COMPANY} + ,PROJECT_DESIGN_COMPANY= #{PROJECT_DESIGN_COMPANY} + ,PROJECT_ADMIN_COMPANY= #{PROJECT_ADMIN_COMPANY} + ,PROJECT_WORK_COMPANY= #{PROJECT_WORK_COMPANY} + ,PROJECT_START_DATE= #{PROJECT_START_DATE} + ,PROJECT_END_DATE= #{PROJECT_END_DATE} + ,PROJECT_START_SPOT_SD= #{PROJECT_START_SPOT_SD} + ,PROJECT_START_SPOT_SGG= #{PROJECT_START_SPOT_SGG} + ,PROJECT_START_SPOT_EMD= #{PROJECT_START_SPOT_EMD} + ,PROJECT_START_SPOT= #{PROJECT_START_SPOT} + ,PROJECT_END_SPOT_SD= #{PROJECT_END_SPOT_SD} + ,PROJECT_END_SPOT_SGG= #{PROJECT_END_SPOT_SGG} + ,PROJECT_END_SPOT_EMD= #{PROJECT_END_SPOT_EMD} + ,PROJECT_END_SPOT= #{PROJECT_END_SPOT} + ,PROJECT_LANGE= #{PROJECT_LANGE} + ,PROJECT_LANGE_UNIT= #{PROJECT_LANGE_UNIT} + ,HOLE_CB_NUMBER= #{HOLE_CB_NUMBER} + ,HOLE_SB_NUMBER= #{HOLE_SB_NUMBER} + ,HOLE_BB_NUMBER= #{HOLE_BB_NUMBER} + ,HOLE_TB_NUMBER= #{HOLE_TB_NUMBER} + ,HOLE_BH_NUMBER= #{HOLE_BH_NUMBER} + ,PROJECT_TESTPITT_NUMBER= #{PROJECT_TESTPITT_NUMBER} + ,PROJECT_ORGERBORING_NUMBER= #{PROJECT_ORGERBORING_NUMBER} + ,PROJECT_HOLE_NUMBER= #{PROJECT_HOLE_NUMBER} + ,PROJECT_DOCUMENT= #{PROJECT_DOCUMENT} + ,PROJECT_DESC= #{PROJECT_DESC} + ,PROJECT_GOAL= #{PROJECT_GOAL} + ,RESISTIVITY_LINES= #{RESISTIVITY_LINES} + ,REFRACTION_LINES= #{REFRACTION_LINES} + ,MODUSERID= #{MODUSERID} + ,REPORT_TYPE= #{REPORT_TYPE} + ,MODDATETIME= SYSDATE + WHERE PROJECT_CODE = #{PROJECT_CODE} + + + + DELETE FROM ${tableName} WHERE 1=1 + + AND PROJECT_CODE = #{projectCode} + + + AND HOLE_CODE = #{holeCode} + + + + + DELETE FROM ${tableName} WHERE 1=1 + + AND PROJECT_CODE = #{projectCode} + + + AND LINE_NUMBER = #{lineNumber} + + + + + + + + + DELETE FROM TEMP_TOPO_GEOLOGY WHERE PROJECT_CODE = #{projectCode} + + + + INSERT INTO TEMP_TOPO_GEOLOGY (PROJECT_CODE, TGEO_TOPOGRAPHY, TGEO_GEOLOGY, TGEO_REMARK, USERID, DATETIME) VALUES + (#{projectCode},#{tgeoTopography},#{tgeoGeology},#{tgeoRemark},#{userId},SYSDATE) + + + + + + MERGE INTO TEMP_EXPERT_OPINION + USING DUAL + ON ( PROJECT_CODE = #{projectCode}) + WHEN MATCHED THEN + UPDATE SET EO_OPINOIN = #{eoOpinoin} + , EO_REMARK = #{eoRemark} + , REPORT_FILE = #{reportFile} + , REPORT_LOCAL = #{reportLocal} + , USERID = #{userId} + , DATETIME = SYSDATE + WHEN NOT MATCHED THEN + INSERT( + PROJECT_CODE + , EO_OPINOIN + , EO_REMARK + , REPORT_FILE + , REPORT_LOCAL + , USERID + , DATETIME + ) VALUES ( + #{projectCode} + , #{eoOpinoin} + , #{eoRemark} + , #{reportFile} + , #{reportLocal} + , #{userId} + , SYSDATE + ) + + + + + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/layerInfo2019_SQL.xml b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/layerInfo2019_SQL.xml new file mode 100644 index 00000000..0e1e2d11 --- /dev/null +++ b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/layerInfo2019_SQL.xml @@ -0,0 +1,51 @@ + + + + + + + + INSERT INTO TEMP_LAYER_INFO ( + PROJECT_CODE , + HOLE_CODE , + LAYER_CODE , + LAYER_DEPTH_FROM , + LAYER_DEPTH_TO , + LAYER_SOIL_COLOR , + LAYER_DESC , + LAYER_THICKNESS , + LAYER_ENG_NAME , + LAYER_SCIENCE_NAME , + USERID , + DATETIME + )VALUES( + #{projectCode}, + #{holeCode}, + #{layerCode}, + #{layerDepthFrom}, + #{layerDepthTo}, + #{layerSoilColor}, + #{layerDesc}, + #{layerThickness}, + #{layerEngName}, + #{layerScienceName}, + #{userId}, + SYSDATE + ) + + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/layerInfo_SQL.xml b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/layerInfo_SQL.xml new file mode 100644 index 00000000..3a07ddab --- /dev/null +++ b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/layerInfo_SQL.xml @@ -0,0 +1,57 @@ + + + + + + + + + + + + DELETE FROM TEMP_LAYER_INFO WHERE PROJECT_CODE=#{projectCode} AND HOLE_CODE=#{holeCode} AND LAYER_CODE=#{layerCode} + + + + INSERT INTO TEMP_LAYER_INFO ( + PROJECT_CODE , + HOLE_CODE , + LAYER_CODE , + LAYER_DEPTH_FROM , + LAYER_DEPTH_TO , + LAYER_SOIL_COLOR , + LAYER_DESC , + LAYER_THICKNESS , + LAYER_ENG_NAME , + LAYER_SCIENCE_NAME , + USERID , + DATETIME + )VALUES( + #{projectCode}, + #{holeCode}, + #{layerCode}, + #{layerDepthFrom}, + #{layerDepthTo}, + #{layerSoilColor}, + #{layerDesc}, + #{layerThickness}, + #{layerEngName}, + #{layerScienceName}, + #{userId}, + SYSDATE + ) + + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/listReg.xml b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/listReg.xml new file mode 100644 index 00000000..122f1316 --- /dev/null +++ b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/listReg.xml @@ -0,0 +1,34 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/manageAdd.xml b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/manageAdd.xml new file mode 100644 index 00000000..f7defbbb --- /dev/null +++ b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/manageAdd.xml @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + PASSWD = #{passwd}, + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/manageList.xml b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/manageList.xml new file mode 100644 index 00000000..585294fc --- /dev/null +++ b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/manageList.xml @@ -0,0 +1,143 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/manageList2019.xml b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/manageList2019.xml new file mode 100644 index 00000000..26afb31d --- /dev/null +++ b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/manageList2019.xml @@ -0,0 +1,46 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/map.xml b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/map.xml new file mode 100644 index 00000000..68691d7f --- /dev/null +++ b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/map.xml @@ -0,0 +1,23 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/projectList.xml b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/projectList.xml new file mode 100644 index 00000000..d91f3313 --- /dev/null +++ b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/projectList.xml @@ -0,0 +1,1337 @@ + + + + + + + + + + + + + + + + + UPDATE TEMP_META_INFO SET + INPUT_COMPANY = #{INPUT_COMPANY} , + DEPT = #{DEPT} , + ADMIN_NAME = #{ADMIN_NAME} , + EMAIL = #{EMAIL} , + TEL = #{TEL} , + PHONE = #{PHONE} , + SEARCHDATE = #{SEARCHDATE} , + INPUTDATE = #{INPUTDATE} , + PROJECT_NAME = #{PROJECT_NAME} , + HOLE_NUMBER = #{HOLE_NUMBER} , + HOLE_ADMIN_NAME = #{HOLE_ADMIN_NAME}, + HOLE_COMPANY = #{HOLE_COMPANY} , + HOLE_TYPE = #{HOLE_TYPE} , + HOLE_SPOT_SD = #{HOLE_SPOT_SD} , + HOLE_SPOT_SGG = #{HOLE_SPOT_SGG} , + HOLE_SPOT = #{HOLE_SPOT} , + REMARK = #{REMARK} , + MODUSERID = #{USERID} , + MODDATETIME= SYSDATE + + + UPDATE TEMP_PROJECT_INFO SET + STATE = #{STATE} + + + + + + + + + + + + + + + + ' ' AND PROJECT_CODE = #{PROJECT_CODE} +]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/regi.xml b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/regi.xml new file mode 100644 index 00000000..34e0ed6c --- /dev/null +++ b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/regi.xml @@ -0,0 +1,1423 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/rock.xml b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/rock.xml new file mode 100644 index 00000000..d633b5f6 --- /dev/null +++ b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/rock.xml @@ -0,0 +1,1038 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + INSERT INTO TEMP_ROCK_TRIAXIAL( + PROJECT_CODE, + HOLE_CODE, + RTRI_CODE, + TEST_ORDER , + GRAPH_LOCAL , + GRAPH_IMAGE , + USERID , + DATETIME + )VALUES( + #{PROJECT_CODE}, + #{HOLE_CODE}, + #{RTRI_CODE}, + #{TEST_ORDER}, + #{GRAPH_LOCAL}, + #{GRAPH_IMAGE}, + #{USERID}, + SYSDATE + ) + + + + + + DELETE FROM TEMP_ROCK_TRIAXIAL + WHERE PROJECT_CODE = #{PROJECT_CODE} + AND HOLE_CODE = #{HOLE_CODE} + AND RTRI_CODE IN (${sampleCode}) + + + + + + DELETE FROM TEMP_ROCK_TRIAXIAL + WHERE PROJECT_CODE = #{PROJECT_CODE} + AND HOLE_CODE = #{HOLE_CODE} + AND RTRI_CODE =#{RTRI_CODE} + + + + + INSERT INTO TEMP_ROCK_TRIAXIAL( + PROJECT_CODE, + HOLE_CODE, + RTRI_CODE, + TEST_ORDER , + RTRI_DEPTH_FROM , + RTRI_DEPTH_TO , + RTRI_PHI , + RTRI_C , + RTRI_TENSILESTRENGTH , + RTRI_50_DIA , + RTRI_50_LENGTH , + RTRI_50_CONFPRES , + RTRI_50_MAXSTRENGTH , + RTRI_100_DIA , + RTRI_100_LENGTH , + RTRI_100_CONFPRES , + RTRI_100_MAXSTRENGTH , + RTRI_150_DIA , + RTRI_150_LENGTH , + RTRI_150_CONFPRES , + RTRI_150_MAXSTRENGTH , + RTRI_REMARK , + GRAPH_IMAGE , + GRAPH_LOCAL , + USERID , + DATETIME + )VALUES( + #{PROJECT_CODE}, + #{HOLE_CODE}, + #{RTRI_CODE}, + #{TEST_ORDER}, + #{RTRI_DEPTH_FROM} , + #{RTRI_DEPTH_TO} , + #{RTRI_PHI} , + #{RTRI_C} , + #{RTRI_TENSILESTRENGTH} , + #{RTRI_50_DIA} , + #{RTRI_50_LENGTH} , + #{RTRI_50_CONFPRES} , + #{RTRI_50_MAXSTRENGTH} , + #{RTRI_100_DIA} , + #{RTRI_100_LENGTH} , + #{RTRI_100_CONFPRES} , + #{RTRI_100_MAXSTRENGTH} , + #{RTRI_150_DIA} , + #{RTRI_150_LENGTH} , + #{RTRI_150_CONFPRES} , + #{RTRI_150_MAXSTRENGTH} , + #{RTRI_REMARK} , + #{GRAPH_IMAGE}, + #{GRAPH_LOCAL}, + #{USERID}, + SYSDATE + ) + + + + + + + + + + + + + + + + + + + + + + + DELETE FROM TEMP_ROCK_REPEATED_TRIAXIAL + WHERE PROJECT_CODE = #{PROJECT_CODE} + AND HOLE_CODE = #{HOLE_CODE} + AND RT_SEQ=#{RT_SEQ} + + + + DELETE FROM TEMP_ROCK_REPEATED_TRIAXIAL_U + WHERE PROJECT_CODE = #{PROJECT_CODE} + AND HOLE_CODE = #{HOLE_CODE} + AND RT_SEQ=#{RT_SEQ} + + + + INSERT INTO TEMP_ROCK_REPEATED_TRIAXIAL_U ( + PROJECT_CODE, + HOLE_CODE, + RT_SEQ, + RT_DEPTH_FROM, + RT_DEPTH_TO, + RT_RELATIVE_DENSITY , + RT_DRY_UNIT_WEIGHT, + RT_EFFECTIVE_PRESSURE, + RT_CORRECTION_FACTOR , + RT_ARSPRT , + GRAPH_IMAGE , + GRAPH_LOCAL , + USERID, + DATETIME ) VALUES ( + #{PROJECT_CODE}, + #{HOLE_CODE}, + #{RT_SEQ}, + #{RT_DEPTH_FROM}, + #{RT_DEPTH_TO}, + #{RT_RELATIVE_DENSITY}, + #{RT_DRY_UNIT_WEIGHT}, + #{RT_EFFECTIVE_PRESSURE}, + #{RT_CORRECTION_FACTOR}, + #{RT_ARSPRT}, + #{GRAPH_IMAGE}, + #{GRAPH_LOCAL}, + #{USERID}, + SYSDATE) + + + + INSERT INTO TEMP_ROCK_REPEATED_TRIAXIAL ( + PROJECT_CODE , + HOLE_CODE , + RT_SEQ , + RT_DETAIL_SEQ , + RT_RSPR , + RT_ARSPR , + RT_LNUM, + USERID , + DATETIME ) VALUES( + #{PROJECT_CODE} , + #{HOLE_CODE} , + #{RT_SEQ} , + #{RT_DETAIL_SEQ} , + #{RT_RSPR} , + #{RT_ARSPR} , + #{RT_LNUM}, + #{USERID} , + SYSDATE ) + + + + + + + + + + DELETE FROM TEMP_ROCK_RESONANT + WHERE PROJECT_CODE = #{PROJECT_CODE} + AND HOLE_CODE = #{HOLE_CODE} + AND RC_SEQ=#{RC_SEQ} + + + + DELETE FROM TEMP_ROCK_RESONANT_USUAL + WHERE PROJECT_CODE = #{PROJECT_CODE} + AND HOLE_CODE = #{HOLE_CODE} + AND RC_SEQ=#{RC_SEQ} + + + + + INSERT INTO TEMP_ROCK_RESONANT_USUAL ( + PROJECT_CODE, + HOLE_CODE, + RC_SEQ, + RC_DEPTH_FROM, + RC_DEPTH_TO, + RC_DENSITY_IN_SITU , + RC_DRY_UNIT_WEIGHT, + RC_MOISTURE_CONTENT, + RC_REMARK , + RC_RESTRAINED_PRESSURE , + GRAPH_IMAGE , + GRAPH_LOCAL , + USERID, + DATETIME ) VALUES ( + #{PROJECT_CODE}, + #{HOLE_CODE}, + #{RC_SEQ}, + #{RC_DEPTH_FROM}, + #{RC_DEPTH_TO}, + #{RC_DENSITY_IN_SITU}, + #{RC_DRY_UNIT_WEIGHT}, + #{RC_MOISTURE_CONTENT}, + #{RC_REMARK}, + #{RC_RESTRAINED_PRESSURE}, + #{GRAPH_IMAGE}, + #{GRAPH_LOCAL}, + #{USERID}, + SYSDATE) + + + + + + INSERT INTO TEMP_ROCK_RESONANT ( + PROJECT_CODE , + HOLE_CODE , + RC_SEQ , + RC_DETAIL_SEQ , + RC_SHEAR_STRAIN , + RC_SHEAR_FACTOR , + RC_SHEAR_VELOCITY , + RC_REGULAR_SHEAR_MODULUS, + RC_DAMPED_RATIO , + USERID , + DATETIME ) VALUES( + #{PROJECT_CODE} , + #{HOLE_CODE} , + #{RC_SEQ} , + #{RC_DETAIL_SEQ} , + #{RC_SHEAR_STRAIN} , + #{RC_SHEAR_FACTOR} , + #{RC_SHEAR_VELOCITY} , + #{RC_REGULAR_SHEAR_MODULUS}, + #{RC_DAMPED_RATIO} , + #{USERID} , + SYSDATE ) + + + + + + + + + + + + + + + + INSERT INTO TEMP_ROCK_JOINTSHEAR( + PROJECT_CODE, + HOLE_CODE, + RJOINT_CODE, + TEST_ORDER , + GRAPH_LOCAL , + GRAPH_IMAGE , + USERID , + DATETIME + )VALUES( + #{PROJECT_CODE}, + #{HOLE_CODE}, + #{RJOINT_CODE}, + #{TEST_ORDER}, + #{GRAPH_LOCAL}, + #{GRAPH_IMAGE}, + #{USERID}, + SYSDATE + ) + + + + + + DELETE FROM TEMP_ROCK_JOINTSHEAR + WHERE PROJECT_CODE = #{PROJECT_CODE} + AND HOLE_CODE = #{HOLE_CODE} + AND RJOINT_CODE IN (${sampleCode}) + + + + DELETE FROM TEMP_ROCK_JOINTSHEAR + WHERE PROJECT_CODE = #{PROJECT_CODE} + AND HOLE_CODE = #{HOLE_CODE} + AND RJOINT_CODE =#{RJOINT_CODE} + + + + INSERT INTO TEMP_ROCK_JOINTSHEAR( + PROJECT_CODE, + HOLE_CODE, + RJOINT_CODE, + TEST_ORDER , + RJOINT_DEPTH_FROM , + RJOINT_DEPTH_TO , + RJOINT_PHI , + RJOINT_C , + RJOINT_NORAML_STRESS , + RJOINT_SHEAR_STRESS , + RJOINT_JCS , + RJOINT_REMARK , + GRAPH_IMAGE , + GRAPH_LOCAL , + USERID , + DATETIME + )VALUES( + #{PROJECT_CODE}, + #{HOLE_CODE}, + #{RJOINT_CODE}, + #{testOrder}, + #{rjointDepthFrom} , + #{rjointDepthTo} , + #{rjointPhi} , + #{rjointC} , + #{rjointNoramlStress} , + #{rjointShearStress} , + #{rjointJcs} , + #{rjointRemark} , + #{GRAPH_IMAGE}, + #{GRAPH_LOCAL}, + #{USERID}, + SYSDATE + ) + + + + + + + + + + + + INSERT INTO TEMP_ROCK_POINTLOAD( + PROJECT_CODE, + HOLE_CODE, + ROCK_POINT_CODE, + TEST_ORDER , + GRAPH_LOCAL , + GRAPH_IMAGE , + USERID , + DATETIME + )VALUES( + #{PROJECT_CODE}, + #{HOLE_CODE}, + #{ROCK_POINT_CODE}, + #{TEST_ORDER}, + #{GRAPH_LOCAL}, + #{GRAPH_IMAGE}, + #{USERID}, + SYSDATE + ) + + + + SELECT GRAPH_IMAGE FROM TEMP_ROCK_POINTLOAD + WHERE PROJECT_CODE = #{PROJECT_CODE} + AND HOLE_CODE = #{HOLE_CODE} + AND ROCK_POINT_CODE IN (${sampleCode}) + + + + DELETE FROM TEMP_ROCK_POINTLOAD + WHERE PROJECT_CODE = #{PROJECT_CODE} + AND HOLE_CODE = #{HOLE_CODE} + AND ROCK_POINT_CODE IN (${sampleCode}) + + + + DELETE FROM TEMP_ROCK_POINTLOAD + WHERE PROJECT_CODE = #{PROJECT_CODE} + AND HOLE_CODE = #{HOLE_CODE} + AND ROCK_POINT_CODE =#{ROCK_POINT_CODE} + + + + INSERT INTO TEMP_ROCK_POINTLOAD( + PROJECT_CODE, + HOLE_CODE, + ROCK_POINT_CODE, + TEST_ORDER , + DEPTH_FROM , + DEPTH_TO , + DIA , + LENGTH , + TESILESTRENGTH , + POINTSTRENGTH , + UNIAXIAL , + REMARK , + GRAPH_IMAGE , + GRAPH_LOCAL , + USERID , + DATETIME + )VALUES( + #{PROJECT_CODE}, + #{HOLE_CODE}, + #{ROCK_POINT_CODE}, + #{testOrder}, + #{depthFrom}, + #{depthTo}, + #{dia}, + #{length}, + #{tesilestrength}, + #{pointstrength}, + #{uniaxial}, + #{remark}, + #{GRAPH_IMAGE}, + #{GRAPH_LOCAL}, + #{USERID}, + SYSDATE + ) + + + + + + + + + + + + + + + + + DELETE FROM TEMP_ROCK_UNIAXIAL + WHERE PROJECT_CODE = #{PROJECT_CODE} + AND HOLE_CODE = #{HOLE_CODE} + AND RUNI_CODE=#{RUNI_CODE} + + + + + + INSERT INTO TEMP_ROCK_UNIAXIAL( + PROJECT_CODE, + HOLE_CODE, + RUNI_CODE, + TEST_ORDER , + USERID , + DATETIME + )VALUES( + #{PROJECT_CODE}, + #{HOLE_CODE}, + #{RUNI_CODE}, + #{TEST_ORDER}, + #{USERID}, + SYSDATE + ) + + + + + + + DELETE FROM TEMP_ROCK_UNIAXIAL + WHERE PROJECT_CODE = #{PROJECT_CODE} + AND HOLE_CODE = #{HOLE_CODE} + AND RUNI_CODE IN (${sampleCode}) + + + + DELETE FROM TEMP_ROCK_UNIAXIAL + WHERE PROJECT_CODE = #{PROJECT_CODE} + AND HOLE_CODE = #{HOLE_CODE} + AND RUNI_CODE =#{RUNI_CODE} + + + + INSERT INTO TEMP_ROCK_UNIAXIAL( + PROJECT_CODE, + HOLE_CODE, + RUNI_CODE, + TEST_ORDER , + RUNI_DEPTH_FROM , + RUNI_DEPTH_TO , + RUNI_DIA , + RUNI_LENGTH , + RUNI_GS , + RUNI_WAVE_P , + RUNI_WAVE_S , + RUNI_ABS , + RUNI_UNI_STRENGTH , + RUNI_YOUNG , + RUNI_POISSON , + RUNI_REMARK , + GRAPH_IMAGE1 , + GRAPH_IMAGE2 , + GRAPH_LOCAL1 , + GRAPH_LOCAL2 , + USERID , + DATETIME + )VALUES( + #{PROJECT_CODE}, + #{HOLE_CODE}, + #{RUNI_CODE}, + #{testOrder}, + #{runiDepthFrom} , + #{runiDepthTo} , + #{runiDia} , + #{runiLength} , + #{runiGs} , + #{runiWaveP} , + #{runiWaveS} , + #{runiAbs} , + #{runiUniStrength} , + #{runiYoung} , + #{runiPoisson} , + #{runiRemark} , + #{GRAPH_IMAGE1} , + #{GRAPH_IMAGE2} , + #{GRAPH_LOCAL1} , + #{GRAPH_LOCAL2} , + #{USERID} , + SYSDATE + ) + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/sampleInfo.xml b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/sampleInfo.xml new file mode 100644 index 00000000..0e831d2a --- /dev/null +++ b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/sampleInfo.xml @@ -0,0 +1,241 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/sand_SQL.xml b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/sand_SQL.xml new file mode 100644 index 00000000..a590d029 --- /dev/null +++ b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/sand_SQL.xml @@ -0,0 +1,898 @@ + + + + + + + + + + + + + + DELETE FROM TEMP_CLASSIFICATION WHERE PROJECT_CODE = #{PROJECT_CODE} AND HOLE_CODE = #{HOLE_CODE} + + + + INSERT INTO TEMP_CLASSIFICATION( + PROJECT_CODE, + HOLE_CODE, + SAMPLE_CODE, + CLASSI_D10, + CLASSI_D30, + CLASSI_D60, + CLASSI_CU, + CLASSI_CG, + CLASSI_NO4, + CLASSI_NO6, + CLASSI_NO8, + CLASSI_NO10, + CLASSI_NO12, + CLASSI_NO16, + CLASSI_NO20, + CLASSI_NO30, + CLASSI_NO40, + CLASSI_NO50, + CLASSI_NO60, + CLASSI_NO70, + CLASSI_NO100, + CLASSI_NO140, + CLASSI_NO200, + CLASSI_NO005, + CLASSI_REMARK, + GRAPH_LOCAL, + GRAPH_IMAGE, + USERID, + DATETIME) + VALUES ( + #{PROJECT_CODE}, + #{HOLE_CODE}, + #{sampleCode}, + #{classiD10}, + #{classiD30}, + #{classiD60}, + #{classiCu}, + #{classiCg}, + #{classiNo4}, + #{classiNo6}, + #{classiNo8}, + #{classiNo10}, + #{classiNo12}, + #{classiNo16}, + #{classiNo20}, + #{classiNo30}, + #{classiNo40}, + #{classiNo50}, + #{classiNo60}, + #{classiNo70}, + #{classiNo100}, + #{classiNo140}, + #{classiNo200}, + #{classiNo005}, + #{classiRemark}, + #{GRAPH_LOCAL}, + #{GRAPH_IMAGE}, + #{USERID}, + SYSDATE + ) + + + + + + DELETE FROM TEMP_CBR_COMPAC WHERE PROJECT_CODE = #{PROJECT_CODE} AND HOLE_CODE = #{HOLE_CODE} + + + + INSERT INTO TEMP_CBR_COMPAC( + PROJECT_CODE, + HOLE_CODE, + SAMPLE_CODE, + CBR_MOD_CBR, + CBR_D_RD, + CBR_D_GS, + CBR_D_COMPACTION, + CBR_D_CMC, + CBR_A_RD, + CBR_A_GS, + CBR_A_COMPACTION, + CBR_A_CMC, + CBR_55_SWELLING, + CBR_55_SOAKING, + CBR_55_MOULDING, + CBR_25_SWELLING, + CBR_25_SOAKING, + CBR_25_MOULDING, + CBR_10_SWELLING, + CBR_10_SOAKING, + CBR_10_MOULDING, + CBR_REMARK, + GRAPH_IMAGE1, + GRAPH_IMAGE2, + GRAPH_LOCAL1, + GRAPH_LOCAL2, + USERID, + DATETIME + )VALUES( + #{PROJECT_CODE}, + #{HOLE_CODE}, + #{sampleCode}, + #{cbrModCbr}, + #{cbrDRd}, + #{cbrDGs}, + #{cbrDCompaction}, + #{cbrDCmc}, + #{cbrARd}, + #{cbrAGs}, + #{cbrACompaction}, + #{cbrACmc}, + #{cbr55Swelling}, + #{cbr55Soaking}, + #{cbr55Moulding}, + #{cbr25Swelling}, + #{cbr25Soaking}, + #{cbr25Moulding}, + #{cbr10Swelling}, + #{cbr10Soaking}, + #{cbr10Moulding}, + #{cbrRemark}, + #{GRAPH_IMAGE1}, + #{GRAPH_IMAGE2}, + #{GRAPH_LOCAL1}, + #{GRAPH_LOCAL2}, + #{USERID}, + SYSDATE + ) + + + + + + + + + + DELETE FROM TEMP_CONSOLIDATION_USUAL WHERE PROJECT_CODE = #{PROJECT_CODE} AND HOLE_CODE = #{HOLE_CODE} AND SAMPLE_CODE =#{SAMPLE_CODE} + + + + INSERT INTO TEMP_CONSOLIDATION_USUAL ( + PROJECT_CODE, + HOLE_CODE, + SAMPLE_CODE, + CONSOL_SAMPLE_DIA, + CONSOL_SAMPLE_HEIGHT, + CONSOL_W0, + CONSOL_WF, + CONSOL_RF, + CONSOL_RD, + CONSOL_S0, + CONSOL_SF, + CONSOL_PC, + CONSOL_CC, + CONSOL_REMARK, + GRAPH_IMAGE, + GRAPH_LOCAL, + USERID, + DATETIME + ) VALUES ( + #{PROJECT_CODE}, + #{HOLE_CODE}, + #{SAMPLE_CODE}, + #{CONSOL_SAMPLE_DIA}, + #{CONSOL_SAMPLE_HEIGHT}, + #{CONSOL_W0}, + #{CONSOL_WF}, + #{CONSOL_RF}, + #{CONSOL_RD}, + #{CONSOL_S0}, + #{CONSOL_SF}, + #{CONSOL_PC}, + #{CONSOL_CC}, + #{CONSOL_REMARK}, + #{GRAPH_IMAGE}, + #{GRAPH_LOCAL}, + #{USERID}, + SYSDATE) + + + + DELETE FROM TEMP_CONSOLIDATION WHERE PROJECT_CODE = #{PROJECT_CODE} AND HOLE_CODE = #{HOLE_CODE} AND SAMPLE_CODE =#{SAMPLE_CODE} AND SEQ =#{SEQ} + + + + UPDATE TEMP_CONSOLIDATION SET + CONSOL_P=#{CONSOL_P}, + CONSOL_SETTLEMENT=#{CONSOL_SETTLEMENT}, + CONSOL_T90=#{CONSOL_T90}, + CONSOL_E=#{CONSOL_E}, + CONSOL_TWOHA=#{CONSOL_TWOHA}, + CONSOL_AV=#{CONSOL_AV}, + CONSOL_CV=#{CONSOL_CV}, + CONSOL_MV=#{CONSOL_MV}, + CONSOL_K=#{CONSOL_K}, + CONSOL_RP=#{CONSOL_RP}, + USERID=#{USERID}, + DATETIME=SYSDATE + WHERE PROJECT_CODE = #{PROJECT_CODE} AND HOLE_CODE = #{HOLE_CODE} AND SAMPLE_CODE =#{SAMPLE_CODE} AND SEQ =#{SEQ} + + + + INSERT INTO TEMP_CONSOLIDATION ( + PROJECT_CODE , + HOLE_CODE , + SAMPLE_CODE , + SEQ , + CONSOL_P , + CONSOL_SETTLEMENT , + CONSOL_T90 , + CONSOL_E , + CONSOL_TWOHA , + CONSOL_AV , + CONSOL_CV , + CONSOL_MV , + CONSOL_K , + CONSOL_RP , + USERID , + DATETIME + ) VALUES ( + #{PROJECT_CODE}, + #{HOLE_CODE}, + #{SAMPLE_CODE}, + (SELECT NVL(MAX(SEQ)+1,1) FROM TEMP_CONSOLIDATION WHERE PROJECT_CODE = #{PROJECT_CODE} AND HOLE_CODE = #{HOLE_CODE} AND SAMPLE_CODE =#{SAMPLE_CODE}), + #{CONSOL_P}, + #{CONSOL_SETTLEMENT}, + #{CONSOL_T90}, + #{CONSOL_E}, + #{CONSOL_TWOHA}, + #{CONSOL_AV}, + #{CONSOL_CV}, + #{CONSOL_MV}, + #{CONSOL_K}, + #{CONSOL_RP}, + #{USERID}, + SYSDATE + ) + + + + + + DELETE FROM TEMP_UNCONFINED_USUAL WHERE PROJECT_CODE = #{PROJECT_CODE} AND HOLE_CODE = #{HOLE_CODE} + + + + INSERT INTO TEMP_UNCONFINED_USUAL( + PROJECT_CODE, + HOLE_CODE, + SAMPLE_CODE, + UNCONF_RINGFACTOR , + UNCONF_LOAD_SCALE , + UNCONF_UNDISTURB_HEIGHT , + UNCONF_UNDISTURB_DIA , + UNCONF_UNDISTURB_W , + UNCONF_UNDISTURB_RT , + UNCONF_UNDISTURB_E , + UNCONF_UNDISTURB_S , + UNCONF_UNDISTURB_COMPSTRENGTH , + UNCONF_REMOULD_HEIGHT , + UNCONF_REMOULD_DIA , + UNCONF_REMOULD_W , + UNCONF_REMOULD_RT , + UNCONF_REMOULD_E , + UNCONF_REMOULD_S , + UNCONF_REMOULD_COMPSTRENGTH , + UNCONF_SAMPLE_SHAPE , + UNCONF_REMARK , + GRAPH_IMAGE , + GRAPH_LOCAL , + USERID, + DATETIME)VALUES ( + #{PROJECT_CODE}, + #{HOLE_CODE}, + #{SAMPLE_CODE}, + #{UNCONF_RINGFACTOR} , + #{UNCONF_LOAD_SCALE} , + #{UNCONF_UNDISTURB_HEIGHT} , + #{UNCONF_UNDISTURB_DIA} , + #{UNCONF_UNDISTURB_W} , + #{UNCONF_UNDISTURB_RT} , + #{UNCONF_UNDISTURB_E} , + #{UNCONF_UNDISTURB_S} , + #{UNCONF_UNDISTURB_COMPSTRENGTH} , + #{UNCONF_REMOULD_HEIGHT} , + #{UNCONF_REMOULD_DIA} , + #{UNCONF_REMOULD_W} , + #{UNCONF_REMOULD_RT} , + #{UNCONF_REMOULD_E} , + #{UNCONF_REMOULD_S} , + #{UNCONF_REMOULD_COMPSTRENGTH} , + #{UNCONF_SAMPLE_SHAPE} , + #{UNCONF_REMARK} , + #{GRAPH_IMAGE} , + #{GRAPH_LOCAL} , + #{USERID}, + SYSDATE ) + + + + + + + + + + DELETE FROM TEMP_TRIAXIAL_USUAL WHERE PROJECT_CODE = #{PROJECT_CODE} AND HOLE_CODE = #{HOLE_CODE} AND SAMPLE_CODE =#{SAMPLE_CODE} AND TRI_CODE=#{TRI_CODE} + + + + INSERT INTO TEMP_TRIAXIAL_USUAL( + PROJECT_CODE, + HOLE_CODE, + SAMPLE_CODE, + TRI_CODE, + TRI_TYPEOFSAMPLE, + TRI_TYPEOFTEST, + TRI_TYPEOFCONTROLLEDTEST, + TRI_NOSTRAIN, + TRI_PHI_U, + TRI_CU, + TRI_REMARK, + GRAPH_IMAGE1 , + GRAPH_IMAGE2 , + GRAPH_LOCAL1 , + GRAPH_LOCAL2 , + USERID, + DATETIME + )VALUES( + #{PROJECT_CODE}, + #{HOLE_CODE}, + #{SAMPLE_CODE}, + #{TRI_CODE}, + #{TRI_TYPEOFSAMPLE}, + #{TRI_TYPEOFTEST}, + #{TRI_TYPEOFCONTROLLEDTEST}, + #{TRI_NOSTRAIN}, + #{TRI_PHI_U}, + #{TRI_CU}, + #{TRI_REMARK}, + #{GRAPH_IMAGE1}, + #{GRAPH_IMAGE2}, + #{GRAPH_LOCAL1}, + #{GRAPH_LOCAL2}, + #{USERID}, + SYSDATE + ) + + + + DELETE FROM TEMP_TRIAXIAL_CU WHERE PROJECT_CODE = #{PROJECT_CODE} AND HOLE_CODE = #{HOLE_CODE} AND SAMPLE_CODE =#{SAMPLE_CODE} AND TRI_CODE=#{TRI_CODE} + + + + INSERT INTO TEMP_TRIAXIAL_CU ( + PROJECT_CODE , + HOLE_CODE , + SAMPLE_CODE , + TRI_CODE , + TRICU_TESTORDER , + TRICU_TESTCODE , + TRICU_W0 , + TRICU_RD0 , + TRICU_S0 , + TRICU_E0 , + TRICU_WF , + TRICU_RDF , + TRICU_SF , + TRICU_EF , + TRICU_U0 , + TRICU_SIGMA3 , + TRICU_MAXSIGMA , + TRICU_ULTSIGMA , + TRICU_D0 , + TRICU_H0 , + TRICU_UF , + USERID , + DATETIME + )VALUES( + #{PROJECT_CODE}, + #{HOLE_CODE}, + #{SAMPLE_CODE}, + #{TRI_CODE}, + #{TRICU_TESTORDER}, + #{TRICU_TESTCODE}, + #{TRICU_W0}, + #{TRICU_RD0}, + #{TRICU_S0}, + #{TRICU_E0}, + #{TRICU_WF}, + #{TRICU_RDF}, + #{TRICU_SF}, + #{TRICU_EF}, + #{TRICU_U0}, + #{TRICU_SIGMA3}, + #{TRICU_MAXSIGMA}, + #{TRICU_ULTSIGMA}, + #{TRICU_D0}, + #{TRICU_H0}, + #{TRICU_UF}, + #{USERID}, + SYSDATE + ) + + + + DELETE FROM TEMP_TRIAXIAL_UU WHERE PROJECT_CODE = #{PROJECT_CODE} AND HOLE_CODE = #{HOLE_CODE} AND SAMPLE_CODE =#{SAMPLE_CODE} AND TRI_CODE=#{TRI_CODE} + + + + INSERT INTO TEMP_TRIAXIAL_UU ( + PROJECT_CODE , + HOLE_CODE , + SAMPLE_CODE , + TRI_CODE , + TRIUU_TESTORDER , + TRIUU_TESTCODE , + TRIUU_W0 , + TRIUU_RD0 , + TRIUU_S0 , + TRIUU_E0 , + TRIUU_U0 , + TRIUU_SIGMA3 , + TRIUU_MAXSIGMA , + TRIUU_ULTSIGMA , + TRIUU_D0 , + TRIUU_H0 , + USERID , + DATETIME + )VALUES( + #{PROJECT_CODE}, + #{HOLE_CODE}, + #{SAMPLE_CODE}, + #{TRI_CODE}, + #{TRIUU_TESTORDER}, + #{TRIUU_TESTCODE}, + #{TRIUU_W0}, + #{TRIUU_RD0}, + #{TRIUU_S0}, + #{TRIUU_E0}, + #{TRIUU_U0}, + #{TRIUU_SIGMA3}, + #{TRIUU_MAXSIGMA}, + #{TRIUU_ULTSIGMA}, + #{TRIUU_D0}, + #{TRIUU_H0}, + #{USERID}, + SYSDATE + ) + + + + + + + + + + DELETE FROM TEMP_RESONANT WHERE PROJECT_CODE = #{PROJECT_CODE} AND HOLE_CODE = #{HOLE_CODE} AND RC_SEQ=#{RC_SEQ} + + AND SAMPLE_CODE = #{SAMPLE_CODE} + + + + + DELETE FROM TEMP_RESONANT_USUAL WHERE PROJECT_CODE = #{PROJECT_CODE} AND HOLE_CODE = #{HOLE_CODE} AND RC_SEQ=#{RC_SEQ} + + AND SAMPLE_CODE = #{SAMPLE_CODE} + + + + + INSERT INTO TEMP_RESONANT_USUAL ( + PROJECT_CODE, + HOLE_CODE, + RC_SEQ, + RC_DEPTH_FROM, + RC_DEPTH_TO, + RC_DENSITY_IN_SITU , + RC_DRY_UNIT_WEIGHT, + RC_MOISTURE_CONTENT, + RC_REMARK , + RC_RESTRAINED_PRESSURE , + GRAPH_IMAGE , + GRAPH_LOCAL , + USERID, + SAMPLE_CODE, + DATETIME ) + VALUES ( + #{PROJECT_CODE}, + #{HOLE_CODE}, + #{RC_SEQ}, + #{RC_DEPTH_FROM}, + #{RC_DEPTH_TO}, + #{RC_DENSITY_IN_SITU}, + #{RC_DRY_UNIT_WEIGHT}, + #{RC_MOISTURE_CONTENT}, + #{RC_REMARK}, + #{RC_RESTRAINED_PRESSURE}, + #{GRAPH_IMAGE}, + #{GRAPH_LOCAL}, + #{USERID}, + #{SAMPLE_CODE}, + SYSDATE) + + + + INSERT INTO TEMP_RESONANT ( + PROJECT_CODE , + HOLE_CODE , + RC_SEQ , + RC_DETAIL_SEQ , + RC_SHEAR_STRAIN , + RC_SHEAR_FACTOR , + RC_SHEAR_VELOCITY , + RC_REGULAR_SHEAR_MODULUS, + RC_DAMPED_RATIO , + USERID , + SAMPLE_CODE, + DATETIME ) VALUES( + #{PROJECT_CODE} , + #{HOLE_CODE} , + #{RC_SEQ} , + #{RC_DETAIL_SEQ} , + #{RC_SHEAR_STRAIN} , + #{RC_SHEAR_FACTOR} , + #{RC_SHEAR_VELOCITY} , + #{RC_REGULAR_SHEAR_MODULUS}, + #{RC_DAMPED_RATIO} , + #{USERID} , + #{SAMPLE_CODE}, + SYSDATE ) + + + + + + DELETE FROM TEMP_REPEATED_TRIAXIAL WHERE PROJECT_CODE = #{PROJECT_CODE} AND HOLE_CODE = #{HOLE_CODE} AND SAMPLE_CODE = #{SAMPLE_CODE} AND RT_SEQ=#{RT_SEQ} + + + + DELETE FROM TEMP_REPEATED_TRIAXIAL_USUAL WHERE PROJECT_CODE = #{PROJECT_CODE} AND HOLE_CODE = #{HOLE_CODE} AND SAMPLE_CODE = #{SAMPLE_CODE} AND RT_SEQ=#{RT_SEQ} + + + + INSERT INTO TEMP_REPEATED_TRIAXIAL_USUAL ( + PROJECT_CODE , + HOLE_CODE , + RT_SEQ , + RT_DEPTH_FROM , + RT_DEPTH_TO , + RT_RELATIVE_DENSITY , + RT_DRY_UNIT_WEIGHT , + RT_EFFECTIVE_PRESSURE , + RT_CORRECTION_FACTOR , + RT_ARSPRT , + GRAPH_IMAGE , + GRAPH_LOCAL , + USERID , + DATETIME , + SAMPLE_CODE + ) + VALUES ( + #{PROJECT_CODE} , + #{HOLE_CODE} , + #{RT_SEQ} , + #{RT_DEPTH_FROM} , + #{RT_DEPTH_TO} , + #{RT_RELATIVE_DENSITY} , + #{RT_DRY_UNIT_WEIGHT} , + #{RT_EFFECTIVE_PRESSURE} , + #{RT_CORRECTION_FACTOR} , + #{RT_ARSPRT} , + #{GRAPH_IMAGE} , + #{GRAPH_LOCAL} , + #{USERID} , + SYSDATE , + #{SAMPLE_CODE} + ) + + + + INSERT INTO TEMP_REPEATED_TRIAXIAL ( + PROJECT_CODE , + HOLE_CODE , + RT_SEQ , + RT_DETAIL_SEQ , + RT_RSPR , + RT_ARSPR , + RT_LNUM , + USERID , + DATETIME , + SAMPLE_CODE + ) VALUES( + #{PROJECT_CODE} , + #{HOLE_CODE} , + #{RT_SEQ} , + #{RT_DETAIL_SEQ} , + #{RT_RSPR} , + #{RT_ARSPR} , + #{RT_LNUM} , + #{USERID} , + SYSDATE , + #{SAMPLE_CODE} + ) + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/selectClass2019_SQL.xml b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/selectClass2019_SQL.xml new file mode 100644 index 00000000..78590023 --- /dev/null +++ b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/selectClass2019_SQL.xml @@ -0,0 +1,764 @@ + + + + + + + + + + + + + + + + + + + 0 + ) T1 + GROUP BY PROJECT_CODE + ]]> + + + + + + 0 + ) T1 + GROUP BY PROJECT_CODE + ) T2 + CONNECT BY LEVEL <= REGEXP_COUNT(HOLE_CODE_ARRAY, '[^,]+') + ]]> + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/selectClass_SQL.xml b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/selectClass_SQL.xml new file mode 100644 index 00000000..c7ba0133 --- /dev/null +++ b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/selectClass_SQL.xml @@ -0,0 +1,338 @@ + + + + + + + + + + + + + + DELETE FROM TEMP_SELECTCLASS_INFO + WHERE PROJECT_CODE = #{projectCode} + AND HOLE_CODE = #{holeCode} + + + + INSERT INTO TEMP_SELECTCLASS_INFO ( + PROJECT_CODE + , HOLE_CODE + , LAB_CHECK + , STAN_SPT + , STAN_SLICKENSIDE + , STAN_TCRRQD + , STAN_DSF + , STAN_RMR + , STAN_Q + , FIELD_WATERPRESSURE + , FIELD_PERMEABLITY + , FIELD_PRESSUREMETER + , FIELD_CONE_PENETRATION + , SAND_CLASSIFICATION + , SAND_CBR + , SAND_CONSOLIDATION + , SAND_UNCONFINED_USUAL + , SAND_TRIAXIAL + , SAND_RESONANT + , SAND_REPEATED_TRIAXIAL + , ROCK_UNIAXIAL + , ROCK_TRIAXIAL + , ROCK_POINTLOAD + , ROCK_JOINTSHEAR + , ROCK_RESONANT + , ROCK_REPEATED_TRIAXIAL + , USERID + , DATETIME + , RESISTIVITY + , REFRACTION + , BOREHOLE_WAVE + , DENSITY + , DOWNHOLE + ) + ( + SELECT + PROJECT_CODE + , #{holeCode} + , LAB_CHECK + , STAN_SPT + , STAN_SLICKENSIDE + , STAN_TCRRQD + , STAN_DSF + , STAN_RMR + , STAN_Q + , FIELD_WATERPRESSURE + , FIELD_PERMEABLITY + , FIELD_PRESSUREMETER + , FIELD_CONE_PENETRATION + , SAND_CLASSIFICATION + , SAND_CBR + , SAND_CONSOLIDATION + , SAND_UNCONFINED_USUAL + , SAND_TRIAXIAL + , SAND_RESONANT + , SAND_REPEATED_TRIAXIAL + , ROCK_UNIAXIAL + , ROCK_TRIAXIAL + , ROCK_POINTLOAD + , ROCK_JOINTSHEAR + , ROCK_RESONANT + , ROCK_REPEATED_TRIAXIAL + , #{userId} + , sysdate + , RESISTIVITY + , REFRACTION + , BOREHOLE_WAVE + , DENSITY + , DOWNHOLE + FROM TEMP_SELECTCLASS_INFO + WHERE PROJECT_CODE = #{projectCode} + AND HOLE_CODE = #{maxHoleCode} + ) + + + + DELETE FROM TEMP_REFERENCE + WHERE PROJECT_CODE = #{projectCode} + AND HOLE_CODE = #{holeCode} + + AND TEST_INFO_CODE = #{testInfoCode} + + + + + + INSERT INTO TEMP_REFERENCE + ( + PROJECT_CODE + , HOLE_CODE + , TEST_INFO_CODE + , ITEM_INFO_CODE + , REFERENCE_GUBUN + , REFERENCE_CODE + , USERID + , DATETIME + )( + SELECT + PROJECT_CODE + , #{holeCode} + , TEST_INFO_CODE + , ITEM_INFO_CODE + , REFERENCE_GUBUN + , REFERENCE_CODE + , #{userId} + , SYSDATE + FROM TEMP_REFERENCE + WHERE PROJECT_CODE = #{projectCode} + AND HOLE_CODE = #{maxHoleCode} + ) + + + + INSERT INTO TEMP_SELECTCLASS_INFO( + PROJECT_CODE, + HOLE_CODE, + STAN_SPT, + STAN_SLICKENSIDE, + STAN_TCRRQD, + STAN_DSF, + STAN_RMR, + STAN_Q, + FIELD_WATERPRESSURE, + FIELD_PERMEABLITY, + FIELD_PRESSUREMETER, + FIELD_CONE_PENETRATION, + SAND_CLASSIFICATION, + SAND_CBR, + SAND_CONSOLIDATION, + SAND_UNCONFINED_USUAL, + SAND_TRIAXIAL, + SAND_RESONANT, + SAND_REPEATED_TRIAXIAL, + ROCK_UNIAXIAL, + ROCK_TRIAXIAL, + ROCK_POINTLOAD, + ROCK_JOINTSHEAR, + ROCK_RESONANT, + ROCK_REPEATED_TRIAXIAL, + BOREHOLE_WAVE, + DOWNHOLE, + DENSITY, + USERID, + DATETIME + )VALUES ( + #{projectCode}, + #{holeCode}, + #{stanSpt}, + #{stanSlickenside}, + #{stanTcrrqd}, + #{stanDsf}, + #{stanRmr}, + #{stanQ}, + #{fieldWaterpressure}, + #{fieldPermeability}, + #{fieldPressuremeter}, + #{fieldConePenetration}, + #{sandClassification}, + #{sandCbr}, + #{sandConsolidation}, + #{sandUnconfinedUsual}, + #{sandTriaxial}, + #{sandResonant}, + #{sandRepeatedTriaxial}, + #{rockUniaxial}, + #{rockTriaxial}, + #{rockPointload}, + #{rockJointshear}, + #{rockResonant}, + #{rockRepeatedTriaxial}, + #{boreholeWave}, + #{downhole}, + #{density}, + #{userId}, + SYSDATE + ) + + + + + + + + DELETE FROM ${tableName} WHERE PROJECT_CODE = #{projectCode} AND HOLE_CODE=#{holeCode} + + + + MERGE INTO TEMP_REFERENCE + USING DUAL + ON ( PROJECT_CODE = #{projectCode} + AND HOLE_CODE = #{holeCode} + AND TEST_INFO_CODE = #{testInfoCode} + AND ITEM_INFO_CODE = #{itemInfoCode} + ) + WHEN MATCHED THEN + UPDATE SET REFERENCE_GUBUN = #{referenceGubun} + , REFERENCE_CODE = #{referenceCode} + , USERID = #{userId} + , DATETIME = SYSDATE + WHEN NOT MATCHED THEN + INSERT( + PROJECT_CODE + , HOLE_CODE + , TEST_INFO_CODE + , ITEM_INFO_CODE + , REFERENCE_GUBUN + , REFERENCE_CODE + , USERID + , DATETIME + ) VALUES ( + #{projectCode} + , #{holeCode} + , #{testInfoCode} + , #{itemInfoCode} + , #{referenceGubun} + , #{referenceCode} + , #{userId} + , SYSDATE + ) + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/surface_SQL.xml b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/surface_SQL.xml new file mode 100644 index 00000000..ab4b63a3 --- /dev/null +++ b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/regi/surface_SQL.xml @@ -0,0 +1,295 @@ + + + + + + + + + + + + + + + + + DELETE FROM TEMP_RESISTIVITY_SURVEY WHERE PROJECT_CODE = #{PROJECT_CODE} + + + + INSERT INTO TEMP_RESISTIVITY_SURVEY ( + PROJECT_CODE + , RS_CHECKED_BY + , RS_COORDINATE + , USERID + , DATETIME + , JOSAID + , JOSA_START_TIME + , JOSA_END_TIME + ) VALUES ( + #{PROJECT_CODE} + , #{RS_CHECKED_BY} + , #{RS_COORDINATE} + , #{USERID} + , SYSDATE + , #{JOSAID} + , #{JOSA_START_TIME} + , #{JOSA_END_TIME} + ) + + + + DELETE FROM TEMP_RESISTIVITY_SURVEY_SUB WHERE PROJECT_CODE=#{PROJECT_CODE} AND LINE_NUMBER=#{LINE_NUMBER} AND SEQ=#{SEQ} + + + + UPDATE TEMP_RESISTIVITY_SURVEY_SUB SET + FROM_X = #{FROM_X}, + FROM_Y = #{FROM_Y}, + TO_X = #{TO_X}, + TO_Y = #{TO_Y}, + USERID = #{USERID}, + DATETIME = SYSDATE, + APPARENT_RESISTIVITY = #{APPARENT_RESISTIVITY}, + X_NORTH = #{X_NORTH}, + Y_EAST = #{Y_EAST} + + WHERE PROJECT_CODE=#{PROJECT_CODE} AND LINE_NUMBER=#{LINE_NUMBER} AND SEQ=#{SEQ} + + + + INSERT INTO TEMP_RESISTIVITY_SURVEY_SUB ( + PROJECT_CODE, + LINE_NUMBER, + SEQ, + FROM_X, + FROM_Y, + TO_X, + TO_Y, + USERID, + DATETIME, + APPARENT_RESISTIVITY, + X_NORTH, + Y_EAST + + ) VALUES ( + #{PROJECT_CODE}, + #{LINE_NUMBER}, + (SELECT NVL(MAX(SEQ) + 1,1) FROM TEMP_RESISTIVITY_SURVEY_SUB WHERE + PROJECT_CODE = #{PROJECT_CODE} AND LINE_NUMBER=#{LINE_NUMBER}), + #{FROM_X}, + #{FROM_Y}, + #{TO_X}, + #{TO_Y}, + #{USERID}, + SYSDATE, + #{APPARENT_RESISTIVITY}, + #{X_NORTH}, + #{Y_EAST} + + ) + + + + MERGE INTO TEMP_RESISTIVITY_SURVEY_FILE + USING DUAL ON ( PROJECT_CODE = #{PROJECT_CODE} AND LINE_NUMBER = + #{LINE_NUMBER} ) + WHEN MATCHED THEN + UPDATE SET GRAPH_IMAGE1 = #{GRAPH_IMAGE1} + , GRAPH_IMAGE2 = #{GRAPH_IMAGE2} + , GRAPH_LOCAL1 = #{GRAPH_LOCAL1} + , GRAPH_LOCAL2 = #{GRAPH_LOCAL2} + , FILE_SYS = #{FILE_SYS} + , FILE_ORG = #{FILE_ORG} + , USERID = #{USERID} + , DATETIME = SYSDATE + WHEN NOT MATCHED THEN + INSERT( + PROJECT_CODE + , LINE_NUMBER + , GRAPH_IMAGE1 + , GRAPH_IMAGE2 + , GRAPH_LOCAL1 + , GRAPH_LOCAL2 + , FILE_SYS + , FILE_ORG + , USERID + , DATETIME + ) VALUES ( + #{PROJECT_CODE} + , #{LINE_NUMBER} + , #{GRAPH_IMAGE1} + , #{GRAPH_IMAGE2} + , #{GRAPH_LOCAL1} + , #{GRAPH_LOCAL2} + , #{FILE_SYS} + , #{FILE_ORG} + , #{USERID} + , SYSDATE + ) + + + + + + + + + + DELETE FROM TEMP_REFRACTION_SURVEY WHERE PROJECT_CODE = #{PROJECT_CODE} + + + + INSERT INTO TEMP_REFRACTION_SURVEY ( + PROJECT_CODE + , RS_CHECKED_BY + , RS_COORDINATE + , USERID + , DATETIME + , JOSAID + , JOSA_START_TIME + , JOSA_END_TIME + ) VALUES ( + #{PROJECT_CODE} + , #{RS_CHECKED_BY} + , #{RS_COORDINATE} + , #{USERID} + , SYSDATE + , #{JOSAID} + , #{JOSA_START_TIME} + , #{JOSA_END_TIME} + ) + + + + DELETE FROM TEMP_REFRACTION_SURVEY_SUB WHERE PROJECT_CODE=#{PROJECT_CODE} AND LINE_NUMBER=#{LINE_NUMBER} AND SEQ=#{SEQ} + + + + UPDATE TEMP_REFRACTION_SURVEY_SUB SET + FROM_X = #{FROM_X}, + FROM_Y = #{FROM_Y}, + TO_X = #{TO_X}, + TO_Y = #{TO_Y}, + + X_NORTH = #{X_NORTH}, + Y_EAST = #{Y_EAST}, + VELOCITY = #{VELOCITY}, + USERID = #{USERID}, + DATETIME = SYSDATE + WHERE PROJECT_CODE=#{PROJECT_CODE} AND LINE_NUMBER=#{LINE_NUMBER} AND SEQ=#{SEQ} + + + + INSERT INTO TEMP_REFRACTION_SURVEY_SUB ( + PROJECT_CODE, + LINE_NUMBER, + SEQ, + FROM_X, + FROM_Y, + TO_X, + TO_Y, + USERID, + DATETIME, + + X_NORTH, + Y_EAST, + VELOCITY + ) VALUES ( + #{PROJECT_CODE}, + #{LINE_NUMBER}, + (SELECT NVL(MAX(SEQ) + 1,1) FROM TEMP_REFRACTION_SURVEY_SUB WHERE PROJECT_CODE + = #{PROJECT_CODE} AND LINE_NUMBER=#{LINE_NUMBER}), + #{FROM_X}, + #{FROM_Y}, + #{TO_X}, + #{TO_Y}, + #{USERID}, + SYSDATE, + + #{X_NORTH}, + #{Y_EAST}, + #{VELOCITY} + ) + + + + MERGE INTO TEMP_REFRACTION_SURVEY_FILE + USING DUAL ON ( PROJECT_CODE = #{PROJECT_CODE} AND LINE_NUMBER = + #{LINE_NUMBER} ) + WHEN MATCHED THEN + UPDATE SET GRAPH_IMAGE1 = #{GRAPH_IMAGE1} + , GRAPH_IMAGE2 = #{GRAPH_IMAGE2} + , GRAPH_LOCAL1 = #{GRAPH_LOCAL1} + , GRAPH_LOCAL2 = #{GRAPH_LOCAL2} + , FILE_SYS = #{FILE_SYS} + , FILE_ORG = #{FILE_ORG} + , USERID = #{USERID} + , DATETIME = SYSDATE + WHEN NOT MATCHED THEN + INSERT( + PROJECT_CODE + , LINE_NUMBER + , GRAPH_IMAGE1 + , GRAPH_IMAGE2 + , GRAPH_LOCAL1 + , GRAPH_LOCAL2 + , FILE_SYS + , FILE_ORG + , USERID + , DATETIME + ) VALUES ( + #{PROJECT_CODE} + , #{LINE_NUMBER} + , #{GRAPH_IMAGE1} + , #{GRAPH_IMAGE2} + , #{GRAPH_LOCAL1} + , #{GRAPH_LOCAL2} + , #{FILE_SYS} + , #{FILE_ORG} + , #{USERID} + , SYSDATE + ) + + + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/subsidence/subsidence_SQL.xml b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/subsidence/subsidence_SQL.xml new file mode 100644 index 00000000..e6ee9592 --- /dev/null +++ b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/mapper/subsidence/subsidence_SQL.xml @@ -0,0 +1,199 @@ + + + + + + + INTO + TBL_SUBSIDENCE_LIST + ( + SAGONO, + SIDO, + SIGUNGU, + SAGOREASON, + SAGODATE, + NO + ) VALUES + ( + #{item.sagoNo}, + #{item.sido}, + #{item.sigungu}, + #{item.sagoReason}, + #{item.sagoDate}, + #{item.no} + ) + + + + + + + + + + + + + + + + INTO + TBL_SUBSIDENCE_INFO + ( + SAGONO, + SIDO, + SIGUNGU, + DONG, + ADDR, + SAGOLAT, + SAGOLON, + SAGODATE, + SINKWIDTH, + SINKEXTEND, + SINKDEPTH, + GRDKIND, + SAGODETAIL, + DEATHCNT, + INJURYCNT, + VEHICLECNT, + TRSTATUS, + TRMETHOD, + TRAMOUNT, + TRFNDATE, + DASTDATE, + NO + ) VALUES + ( + #{item.sagoNo}, + #{item.sido}, + #{item.sigungu}, + #{item.dong}, + #{item.addr}, + #{item.sagoLat}, + #{item.sagoLon}, + #{item.sagoDate}, + #{item.sinkWidth}, + #{item.sinkExtend}, + #{item.sinkDepth}, + #{item.grdKind}, + #{item.sagoDetail}, + #{item.deathCnt}, + #{item.injuryCnt}, + #{item.vehicleCnt}, + #{item.trStatus}, + #{item.trMethod}, + #{item.trAmt}, + #{item.trFnDate}, + #{item.daStDate}, + #{item.no} + ) + + + + + + DELETE + FROM + TBL_SUBSIDENCE_LIST + + + + + DELETE + FROM + TBL_SUBSIDENCE_INFO + + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/sql-map-config.xml b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/sql-map-config.xml new file mode 100644 index 00000000..e91a61e0 --- /dev/null +++ b/src/main/webapp/WEB-INF/classes/egovframework/sqlmap/sql-map-config.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/lib/aopalliance-1.0.jar b/src/main/webapp/WEB-INF/lib/aopalliance-1.0.jar new file mode 100644 index 00000000..578b1a0c Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/aopalliance-1.0.jar differ diff --git a/src/main/webapp/WEB-INF/lib/aspectjrt-1.7.3.jar b/src/main/webapp/WEB-INF/lib/aspectjrt-1.7.3.jar new file mode 100644 index 00000000..ef9fe4bf Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/aspectjrt-1.7.3.jar differ diff --git a/src/main/webapp/WEB-INF/lib/aspectjtools-1.7.3.jar b/src/main/webapp/WEB-INF/lib/aspectjtools-1.7.3.jar new file mode 100644 index 00000000..adc91dba Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/aspectjtools-1.7.3.jar differ diff --git a/src/main/webapp/WEB-INF/lib/aspectjweaver-1.7.3.jar b/src/main/webapp/WEB-INF/lib/aspectjweaver-1.7.3.jar new file mode 100644 index 00000000..7ecd6038 Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/aspectjweaver-1.7.3.jar differ diff --git a/src/main/webapp/WEB-INF/lib/bcmail-jdk14-1.38.jar b/src/main/webapp/WEB-INF/lib/bcmail-jdk14-1.38.jar new file mode 100644 index 00000000..ab606b5f Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/bcmail-jdk14-1.38.jar differ diff --git a/src/main/webapp/WEB-INF/lib/bcmail-jdk14-138.jar b/src/main/webapp/WEB-INF/lib/bcmail-jdk14-138.jar new file mode 100644 index 00000000..ab606b5f Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/bcmail-jdk14-138.jar differ diff --git a/src/main/webapp/WEB-INF/lib/bcprov-jdk14-1.38.jar b/src/main/webapp/WEB-INF/lib/bcprov-jdk14-1.38.jar new file mode 100644 index 00000000..d1befb7f Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/bcprov-jdk14-1.38.jar differ diff --git a/src/main/webapp/WEB-INF/lib/bctsp-jdk14-1.38.jar b/src/main/webapp/WEB-INF/lib/bctsp-jdk14-1.38.jar new file mode 100644 index 00000000..058fde1e Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/bctsp-jdk14-1.38.jar differ diff --git a/src/main/webapp/WEB-INF/lib/castor-1.2.jar b/src/main/webapp/WEB-INF/lib/castor-1.2.jar new file mode 100644 index 00000000..5a8d7a66 Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/castor-1.2.jar differ diff --git a/src/main/webapp/WEB-INF/lib/classworlds-1.1.jar b/src/main/webapp/WEB-INF/lib/classworlds-1.1.jar new file mode 100644 index 00000000..6ec5c219 Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/classworlds-1.1.jar differ diff --git a/src/main/webapp/WEB-INF/lib/commons-beanutils-1.8.0.jar b/src/main/webapp/WEB-INF/lib/commons-beanutils-1.8.0.jar new file mode 100644 index 00000000..caf7ae33 Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/commons-beanutils-1.8.0.jar differ diff --git a/src/main/webapp/WEB-INF/lib/commons-cli-1.0.jar b/src/main/webapp/WEB-INF/lib/commons-cli-1.0.jar new file mode 100644 index 00000000..22a004e1 Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/commons-cli-1.0.jar differ diff --git a/src/main/webapp/WEB-INF/lib/commons-codec-1.10.jar b/src/main/webapp/WEB-INF/lib/commons-codec-1.10.jar new file mode 100644 index 00000000..1d7417c4 Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/commons-codec-1.10.jar differ diff --git a/src/main/webapp/WEB-INF/lib/commons-digester-2.0.jar b/src/main/webapp/WEB-INF/lib/commons-digester-2.0.jar new file mode 100644 index 00000000..9c8bd13a Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/commons-digester-2.0.jar differ diff --git a/src/main/webapp/WEB-INF/lib/commons-fileupload-1.2.2.jar b/src/main/webapp/WEB-INF/lib/commons-fileupload-1.2.2.jar new file mode 100644 index 00000000..131f1924 Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/commons-fileupload-1.2.2.jar differ diff --git a/src/main/webapp/WEB-INF/lib/commons-httpclient-2.0.2.jar b/src/main/webapp/WEB-INF/lib/commons-httpclient-2.0.2.jar new file mode 100644 index 00000000..c5c52adf Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/commons-httpclient-2.0.2.jar differ diff --git a/src/main/webapp/WEB-INF/lib/commons-io-2.0.1.jar b/src/main/webapp/WEB-INF/lib/commons-io-2.0.1.jar new file mode 100644 index 00000000..5b64b7d6 Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/commons-io-2.0.1.jar differ diff --git a/src/main/webapp/WEB-INF/lib/commons-lang3-3.3.2.jar b/src/main/webapp/WEB-INF/lib/commons-lang3-3.3.2.jar new file mode 100644 index 00000000..2ce08ae9 Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/commons-lang3-3.3.2.jar differ diff --git a/src/main/webapp/WEB-INF/lib/commons-validator-1.4.0.jar b/src/main/webapp/WEB-INF/lib/commons-validator-1.4.0.jar new file mode 100644 index 00000000..ddb78e75 Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/commons-validator-1.4.0.jar differ diff --git a/src/main/webapp/WEB-INF/lib/cos-26Dec2008.jar b/src/main/webapp/WEB-INF/lib/cos-26Dec2008.jar new file mode 100644 index 00000000..030f6da4 Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/cos-26Dec2008.jar differ diff --git a/src/main/webapp/WEB-INF/lib/doxia-sink-api-1.0-alpha-7.jar b/src/main/webapp/WEB-INF/lib/doxia-sink-api-1.0-alpha-7.jar new file mode 100644 index 00000000..8ca52a7e Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/doxia-sink-api-1.0-alpha-7.jar differ diff --git a/src/main/webapp/WEB-INF/lib/egovframework.rte.fdl.cmmn-3.5.0.jar b/src/main/webapp/WEB-INF/lib/egovframework.rte.fdl.cmmn-3.5.0.jar new file mode 100644 index 00000000..a353019d Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/egovframework.rte.fdl.cmmn-3.5.0.jar differ diff --git a/src/main/webapp/WEB-INF/lib/egovframework.rte.fdl.idgnr-3.5.0.jar b/src/main/webapp/WEB-INF/lib/egovframework.rte.fdl.idgnr-3.5.0.jar new file mode 100644 index 00000000..0b12becc Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/egovframework.rte.fdl.idgnr-3.5.0.jar differ diff --git a/src/main/webapp/WEB-INF/lib/egovframework.rte.fdl.logging-3.5.0.jar b/src/main/webapp/WEB-INF/lib/egovframework.rte.fdl.logging-3.5.0.jar new file mode 100644 index 00000000..63105e9f Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/egovframework.rte.fdl.logging-3.5.0.jar differ diff --git a/src/main/webapp/WEB-INF/lib/egovframework.rte.fdl.property-2.7.0.jar b/src/main/webapp/WEB-INF/lib/egovframework.rte.fdl.property-2.7.0.jar new file mode 100644 index 00000000..b438cc8e Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/egovframework.rte.fdl.property-2.7.0.jar differ diff --git a/src/main/webapp/WEB-INF/lib/egovframework.rte.psl.dataaccess-2.7.0.jar b/src/main/webapp/WEB-INF/lib/egovframework.rte.psl.dataaccess-2.7.0.jar new file mode 100644 index 00000000..cb492258 Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/egovframework.rte.psl.dataaccess-2.7.0.jar differ diff --git a/src/main/webapp/WEB-INF/lib/egovframework.rte.ptl.mvc-3.5.0.jar b/src/main/webapp/WEB-INF/lib/egovframework.rte.ptl.mvc-3.5.0.jar new file mode 100644 index 00000000..a5887a16 Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/egovframework.rte.ptl.mvc-3.5.0.jar differ diff --git a/src/main/webapp/WEB-INF/lib/ibatis-sqlmap-2.3.4.726.jar b/src/main/webapp/WEB-INF/lib/ibatis-sqlmap-2.3.4.726.jar new file mode 100644 index 00000000..cb39200f Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/ibatis-sqlmap-2.3.4.726.jar differ diff --git a/src/main/webapp/WEB-INF/lib/itext-2.1.7.js2.jar b/src/main/webapp/WEB-INF/lib/itext-2.1.7.js2.jar new file mode 100644 index 00000000..5d319fcd Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/itext-2.1.7.js2.jar differ diff --git a/src/main/webapp/WEB-INF/lib/jackson-annotations-2.0.5.jar b/src/main/webapp/WEB-INF/lib/jackson-annotations-2.0.5.jar new file mode 100644 index 00000000..88064d07 Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/jackson-annotations-2.0.5.jar differ diff --git a/src/main/webapp/WEB-INF/lib/jackson-core-2.0.5.jar b/src/main/webapp/WEB-INF/lib/jackson-core-2.0.5.jar new file mode 100644 index 00000000..51d1fdeb Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/jackson-core-2.0.5.jar differ diff --git a/src/main/webapp/WEB-INF/lib/jackson-core-asl-1.9.13.jar b/src/main/webapp/WEB-INF/lib/jackson-core-asl-1.9.13.jar new file mode 100644 index 00000000..bb4fe1da Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/jackson-core-asl-1.9.13.jar differ diff --git a/src/main/webapp/WEB-INF/lib/jackson-databind-2.0.5.jar b/src/main/webapp/WEB-INF/lib/jackson-databind-2.0.5.jar new file mode 100644 index 00000000..20f98992 Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/jackson-databind-2.0.5.jar differ diff --git a/src/main/webapp/WEB-INF/lib/jackson-mapper-asl-1.9.13.jar b/src/main/webapp/WEB-INF/lib/jackson-mapper-asl-1.9.13.jar new file mode 100644 index 00000000..0f2073fc Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/jackson-mapper-asl-1.9.13.jar differ diff --git a/src/main/webapp/WEB-INF/lib/jasperreports-5.1.0.jar b/src/main/webapp/WEB-INF/lib/jasperreports-5.1.0.jar new file mode 100644 index 00000000..77e1487a Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/jasperreports-5.1.0.jar differ diff --git a/src/main/webapp/WEB-INF/lib/javax.inject-1.jar b/src/main/webapp/WEB-INF/lib/javax.inject-1.jar new file mode 100644 index 00000000..b2a9d0bf Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/javax.inject-1.jar differ diff --git a/src/main/webapp/WEB-INF/lib/jcl-over-slf4j-1.6.6.jar b/src/main/webapp/WEB-INF/lib/jcl-over-slf4j-1.6.6.jar new file mode 100644 index 00000000..ab898c04 Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/jcl-over-slf4j-1.6.6.jar differ diff --git a/src/main/webapp/WEB-INF/lib/jcommon-1.0.15.jar b/src/main/webapp/WEB-INF/lib/jcommon-1.0.15.jar new file mode 100644 index 00000000..d0dc26de Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/jcommon-1.0.15.jar differ diff --git a/src/main/webapp/WEB-INF/lib/jdom-2.0.2.jar b/src/main/webapp/WEB-INF/lib/jdom-2.0.2.jar new file mode 100644 index 00000000..d540bad6 Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/jdom-2.0.2.jar differ diff --git a/src/main/webapp/WEB-INF/lib/jdtcore-3.1.0.jar b/src/main/webapp/WEB-INF/lib/jdtcore-3.1.0.jar new file mode 100644 index 00000000..d9207382 Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/jdtcore-3.1.0.jar differ diff --git a/src/main/webapp/WEB-INF/lib/jfreechart-1.0.12.jar b/src/main/webapp/WEB-INF/lib/jfreechart-1.0.12.jar new file mode 100644 index 00000000..73be90fd Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/jfreechart-1.0.12.jar differ diff --git a/src/main/webapp/WEB-INF/lib/jsch-0.1.27.jar b/src/main/webapp/WEB-INF/lib/jsch-0.1.27.jar new file mode 100644 index 00000000..3b01e3a3 Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/jsch-0.1.27.jar differ diff --git a/src/main/webapp/WEB-INF/lib/jsr250-api-1.0.jar b/src/main/webapp/WEB-INF/lib/jsr250-api-1.0.jar new file mode 100644 index 00000000..c1f29bf8 Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/jsr250-api-1.0.jar differ diff --git a/src/main/webapp/WEB-INF/lib/jstl-1.2.jar b/src/main/webapp/WEB-INF/lib/jstl-1.2.jar new file mode 100644 index 00000000..0fd275e9 Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/jstl-1.2.jar differ diff --git a/src/main/webapp/WEB-INF/lib/jtidy-4aug2000r7-dev.jar b/src/main/webapp/WEB-INF/lib/jtidy-4aug2000r7-dev.jar new file mode 100644 index 00000000..0eebfa6c Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/jtidy-4aug2000r7-dev.jar differ diff --git a/src/main/webapp/WEB-INF/lib/junit-4.7.jar b/src/main/webapp/WEB-INF/lib/junit-4.7.jar new file mode 100644 index 00000000..700ad695 Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/junit-4.7.jar differ diff --git a/src/main/webapp/WEB-INF/lib/log4j-1.2.17.jar b/src/main/webapp/WEB-INF/lib/log4j-1.2.17.jar new file mode 100644 index 00000000..1d425cf7 Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/log4j-1.2.17.jar differ diff --git a/src/main/webapp/WEB-INF/lib/log4j-api-2.1.jar b/src/main/webapp/WEB-INF/lib/log4j-api-2.1.jar new file mode 100644 index 00000000..d18d67c4 Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/log4j-api-2.1.jar differ diff --git a/src/main/webapp/WEB-INF/lib/log4j-core-2.1.jar b/src/main/webapp/WEB-INF/lib/log4j-core-2.1.jar new file mode 100644 index 00000000..3e41a550 Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/log4j-core-2.1.jar differ diff --git a/src/main/webapp/WEB-INF/lib/log4j-over-slf4j-1.7.7.jar b/src/main/webapp/WEB-INF/lib/log4j-over-slf4j-1.7.7.jar new file mode 100644 index 00000000..d2a102ee Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/log4j-over-slf4j-1.7.7.jar differ diff --git a/src/main/webapp/WEB-INF/lib/log4j-slf4j-impl-2.1.jar b/src/main/webapp/WEB-INF/lib/log4j-slf4j-impl-2.1.jar new file mode 100644 index 00000000..20cd64bf Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/log4j-slf4j-impl-2.1.jar differ diff --git a/src/main/webapp/WEB-INF/lib/log4jdbc-remix-0.2.7.jar b/src/main/webapp/WEB-INF/lib/log4jdbc-remix-0.2.7.jar new file mode 100644 index 00000000..0956c0af Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/log4jdbc-remix-0.2.7.jar differ diff --git a/src/main/webapp/WEB-INF/lib/lucy-xss-1.6.3.jar b/src/main/webapp/WEB-INF/lib/lucy-xss-1.6.3.jar new file mode 100644 index 00000000..d0bb1585 Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/lucy-xss-1.6.3.jar differ diff --git a/src/main/webapp/WEB-INF/lib/lucy-xss-servlet-2.0.0.jar b/src/main/webapp/WEB-INF/lib/lucy-xss-servlet-2.0.0.jar new file mode 100644 index 00000000..3fc31b0c Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/lucy-xss-servlet-2.0.0.jar differ diff --git a/src/main/webapp/WEB-INF/lib/maven-archiver-2.5.jar b/src/main/webapp/WEB-INF/lib/maven-archiver-2.5.jar new file mode 100644 index 00000000..95e716e1 Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/maven-archiver-2.5.jar differ diff --git a/src/main/webapp/WEB-INF/lib/maven-artifact-2.0.6.jar b/src/main/webapp/WEB-INF/lib/maven-artifact-2.0.6.jar new file mode 100644 index 00000000..e6f60b75 Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/maven-artifact-2.0.6.jar differ diff --git a/src/main/webapp/WEB-INF/lib/maven-artifact-manager-2.0.6.jar b/src/main/webapp/WEB-INF/lib/maven-artifact-manager-2.0.6.jar new file mode 100644 index 00000000..c2ac7f8b Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/maven-artifact-manager-2.0.6.jar differ diff --git a/src/main/webapp/WEB-INF/lib/maven-core-2.0.6.jar b/src/main/webapp/WEB-INF/lib/maven-core-2.0.6.jar new file mode 100644 index 00000000..37108649 Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/maven-core-2.0.6.jar differ diff --git a/src/main/webapp/WEB-INF/lib/maven-error-diagnostics-2.0.6.jar b/src/main/webapp/WEB-INF/lib/maven-error-diagnostics-2.0.6.jar new file mode 100644 index 00000000..d6068974 Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/maven-error-diagnostics-2.0.6.jar differ diff --git a/src/main/webapp/WEB-INF/lib/maven-filtering-1.0-beta-2.jar b/src/main/webapp/WEB-INF/lib/maven-filtering-1.0-beta-2.jar new file mode 100644 index 00000000..d6f32762 Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/maven-filtering-1.0-beta-2.jar differ diff --git a/src/main/webapp/WEB-INF/lib/maven-model-2.0.6.jar b/src/main/webapp/WEB-INF/lib/maven-model-2.0.6.jar new file mode 100644 index 00000000..5a7f1cbc Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/maven-model-2.0.6.jar differ diff --git a/src/main/webapp/WEB-INF/lib/maven-monitor-2.0.6.jar b/src/main/webapp/WEB-INF/lib/maven-monitor-2.0.6.jar new file mode 100644 index 00000000..a7d71f3e Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/maven-monitor-2.0.6.jar differ diff --git a/src/main/webapp/WEB-INF/lib/maven-plugin-api-2.0.6.jar b/src/main/webapp/WEB-INF/lib/maven-plugin-api-2.0.6.jar new file mode 100644 index 00000000..a34ffa09 Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/maven-plugin-api-2.0.6.jar differ diff --git a/src/main/webapp/WEB-INF/lib/maven-plugin-descriptor-2.0.6.jar b/src/main/webapp/WEB-INF/lib/maven-plugin-descriptor-2.0.6.jar new file mode 100644 index 00000000..3cf29b69 Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/maven-plugin-descriptor-2.0.6.jar differ diff --git a/src/main/webapp/WEB-INF/lib/maven-plugin-parameter-documenter-2.0.6.jar b/src/main/webapp/WEB-INF/lib/maven-plugin-parameter-documenter-2.0.6.jar new file mode 100644 index 00000000..553b10e2 Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/maven-plugin-parameter-documenter-2.0.6.jar differ diff --git a/src/main/webapp/WEB-INF/lib/maven-plugin-registry-2.0.6.jar b/src/main/webapp/WEB-INF/lib/maven-plugin-registry-2.0.6.jar new file mode 100644 index 00000000..e0365a2a Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/maven-plugin-registry-2.0.6.jar differ diff --git a/src/main/webapp/WEB-INF/lib/maven-profile-2.0.6.jar b/src/main/webapp/WEB-INF/lib/maven-profile-2.0.6.jar new file mode 100644 index 00000000..5c99a124 Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/maven-profile-2.0.6.jar differ diff --git a/src/main/webapp/WEB-INF/lib/maven-project-2.0.6.jar b/src/main/webapp/WEB-INF/lib/maven-project-2.0.6.jar new file mode 100644 index 00000000..42311bec Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/maven-project-2.0.6.jar differ diff --git a/src/main/webapp/WEB-INF/lib/maven-reporting-api-2.0.6.jar b/src/main/webapp/WEB-INF/lib/maven-reporting-api-2.0.6.jar new file mode 100644 index 00000000..8d2834c8 Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/maven-reporting-api-2.0.6.jar differ diff --git a/src/main/webapp/WEB-INF/lib/maven-repository-metadata-2.0.6.jar b/src/main/webapp/WEB-INF/lib/maven-repository-metadata-2.0.6.jar new file mode 100644 index 00000000..af8d9fd2 Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/maven-repository-metadata-2.0.6.jar differ diff --git a/src/main/webapp/WEB-INF/lib/maven-settings-2.0.6.jar b/src/main/webapp/WEB-INF/lib/maven-settings-2.0.6.jar new file mode 100644 index 00000000..4953b082 Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/maven-settings-2.0.6.jar differ diff --git a/src/main/webapp/WEB-INF/lib/maven-war-plugin-2.3.jar b/src/main/webapp/WEB-INF/lib/maven-war-plugin-2.3.jar new file mode 100644 index 00000000..88cc966e Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/maven-war-plugin-2.3.jar differ diff --git a/src/main/webapp/WEB-INF/lib/mybatis-3.2.2.jar b/src/main/webapp/WEB-INF/lib/mybatis-3.2.2.jar new file mode 100644 index 00000000..70c87379 Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/mybatis-3.2.2.jar differ diff --git a/src/main/webapp/WEB-INF/lib/mybatis-spring-1.2.0.jar b/src/main/webapp/WEB-INF/lib/mybatis-spring-1.2.0.jar new file mode 100644 index 00000000..9e845c9c Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/mybatis-spring-1.2.0.jar differ diff --git a/src/main/webapp/WEB-INF/lib/mysql-connector-java-5.1.31.jar b/src/main/webapp/WEB-INF/lib/mysql-connector-java-5.1.31.jar new file mode 100644 index 00000000..26864e49 Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/mysql-connector-java-5.1.31.jar differ diff --git a/src/main/webapp/WEB-INF/lib/plexus-archiver-2.2.jar b/src/main/webapp/WEB-INF/lib/plexus-archiver-2.2.jar new file mode 100644 index 00000000..7b2bf4f7 Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/plexus-archiver-2.2.jar differ diff --git a/src/main/webapp/WEB-INF/lib/plexus-container-default-1.0-alpha-9-stable-1.jar b/src/main/webapp/WEB-INF/lib/plexus-container-default-1.0-alpha-9-stable-1.jar new file mode 100644 index 00000000..d205236a Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/plexus-container-default-1.0-alpha-9-stable-1.jar differ diff --git a/src/main/webapp/WEB-INF/lib/plexus-interactivity-api-1.0-alpha-4.jar b/src/main/webapp/WEB-INF/lib/plexus-interactivity-api-1.0-alpha-4.jar new file mode 100644 index 00000000..a08eeb8a Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/plexus-interactivity-api-1.0-alpha-4.jar differ diff --git a/src/main/webapp/WEB-INF/lib/plexus-interpolation-1.15.jar b/src/main/webapp/WEB-INF/lib/plexus-interpolation-1.15.jar new file mode 100644 index 00000000..4679518a Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/plexus-interpolation-1.15.jar differ diff --git a/src/main/webapp/WEB-INF/lib/plexus-io-2.0.5.jar b/src/main/webapp/WEB-INF/lib/plexus-io-2.0.5.jar new file mode 100644 index 00000000..0b971c0f Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/plexus-io-2.0.5.jar differ diff --git a/src/main/webapp/WEB-INF/lib/plexus-utils-3.0.8.jar b/src/main/webapp/WEB-INF/lib/plexus-utils-3.0.8.jar new file mode 100644 index 00000000..3f68f4be Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/plexus-utils-3.0.8.jar differ diff --git a/src/main/webapp/WEB-INF/lib/postgresql-9.1-901.jdbc4.jar b/src/main/webapp/WEB-INF/lib/postgresql-9.1-901.jdbc4.jar new file mode 100644 index 00000000..63e54165 Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/postgresql-9.1-901.jdbc4.jar differ diff --git a/src/main/webapp/WEB-INF/lib/slf4j-api-1.6.6.jar b/src/main/webapp/WEB-INF/lib/slf4j-api-1.6.6.jar new file mode 100644 index 00000000..4c03fa6b Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/slf4j-api-1.6.6.jar differ diff --git a/src/main/webapp/WEB-INF/lib/spring-aop-3.2.4.RELEASE.jar b/src/main/webapp/WEB-INF/lib/spring-aop-3.2.4.RELEASE.jar new file mode 100644 index 00000000..614fdd4f Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/spring-aop-3.2.4.RELEASE.jar differ diff --git a/src/main/webapp/WEB-INF/lib/spring-beans-3.2.4.RELEASE.jar b/src/main/webapp/WEB-INF/lib/spring-beans-3.2.4.RELEASE.jar new file mode 100644 index 00000000..b6558739 Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/spring-beans-3.2.4.RELEASE.jar differ diff --git a/src/main/webapp/WEB-INF/lib/spring-context-3.2.4.RELEASE.jar b/src/main/webapp/WEB-INF/lib/spring-context-3.2.4.RELEASE.jar new file mode 100644 index 00000000..1c551325 Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/spring-context-3.2.4.RELEASE.jar differ diff --git a/src/main/webapp/WEB-INF/lib/spring-context-support-3.2.4.RELEASE.jar b/src/main/webapp/WEB-INF/lib/spring-context-support-3.2.4.RELEASE.jar new file mode 100644 index 00000000..ab327ec6 Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/spring-context-support-3.2.4.RELEASE.jar differ diff --git a/src/main/webapp/WEB-INF/lib/spring-core-3.2.4.RELEASE.jar b/src/main/webapp/WEB-INF/lib/spring-core-3.2.4.RELEASE.jar new file mode 100644 index 00000000..1438f4b1 Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/spring-core-3.2.4.RELEASE.jar differ diff --git a/src/main/webapp/WEB-INF/lib/spring-expression-3.2.4.RELEASE.jar b/src/main/webapp/WEB-INF/lib/spring-expression-3.2.4.RELEASE.jar new file mode 100644 index 00000000..eab0ca68 Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/spring-expression-3.2.4.RELEASE.jar differ diff --git a/src/main/webapp/WEB-INF/lib/spring-jdbc-3.2.4.RELEASE.jar b/src/main/webapp/WEB-INF/lib/spring-jdbc-3.2.4.RELEASE.jar new file mode 100644 index 00000000..2c68d9cb Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/spring-jdbc-3.2.4.RELEASE.jar differ diff --git a/src/main/webapp/WEB-INF/lib/spring-modules-validation-0.9.jar b/src/main/webapp/WEB-INF/lib/spring-modules-validation-0.9.jar new file mode 100644 index 00000000..d1d93cc3 Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/spring-modules-validation-0.9.jar differ diff --git a/src/main/webapp/WEB-INF/lib/spring-orm-3.0.5.RELEASE.jar b/src/main/webapp/WEB-INF/lib/spring-orm-3.0.5.RELEASE.jar new file mode 100644 index 00000000..d0550ccd Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/spring-orm-3.0.5.RELEASE.jar differ diff --git a/src/main/webapp/WEB-INF/lib/spring-tx-3.2.4.RELEASE.jar b/src/main/webapp/WEB-INF/lib/spring-tx-3.2.4.RELEASE.jar new file mode 100644 index 00000000..305507cd Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/spring-tx-3.2.4.RELEASE.jar differ diff --git a/src/main/webapp/WEB-INF/lib/spring-web-3.2.4.RELEASE.jar b/src/main/webapp/WEB-INF/lib/spring-web-3.2.4.RELEASE.jar new file mode 100644 index 00000000..38572737 Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/spring-web-3.2.4.RELEASE.jar differ diff --git a/src/main/webapp/WEB-INF/lib/spring-webmvc-3.2.4.RELEASE.jar b/src/main/webapp/WEB-INF/lib/spring-webmvc-3.2.4.RELEASE.jar new file mode 100644 index 00000000..31d81c90 Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/spring-webmvc-3.2.4.RELEASE.jar differ diff --git a/src/main/webapp/WEB-INF/lib/tiles-api-3.0.3.jar b/src/main/webapp/WEB-INF/lib/tiles-api-3.0.3.jar new file mode 100644 index 00000000..bfa87ece Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/tiles-api-3.0.3.jar differ diff --git a/src/main/webapp/WEB-INF/lib/tiles-autotag-core-runtime-1.1.0.jar b/src/main/webapp/WEB-INF/lib/tiles-autotag-core-runtime-1.1.0.jar new file mode 100644 index 00000000..95a7d961 Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/tiles-autotag-core-runtime-1.1.0.jar differ diff --git a/src/main/webapp/WEB-INF/lib/tiles-core-3.0.3.jar b/src/main/webapp/WEB-INF/lib/tiles-core-3.0.3.jar new file mode 100644 index 00000000..c23b9207 Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/tiles-core-3.0.3.jar differ diff --git a/src/main/webapp/WEB-INF/lib/tiles-jsp-3.0.3.jar b/src/main/webapp/WEB-INF/lib/tiles-jsp-3.0.3.jar new file mode 100644 index 00000000..3215c72a Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/tiles-jsp-3.0.3.jar differ diff --git a/src/main/webapp/WEB-INF/lib/tiles-request-api-1.0.3.jar b/src/main/webapp/WEB-INF/lib/tiles-request-api-1.0.3.jar new file mode 100644 index 00000000..f97716db Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/tiles-request-api-1.0.3.jar differ diff --git a/src/main/webapp/WEB-INF/lib/tiles-request-jsp-1.0.3.jar b/src/main/webapp/WEB-INF/lib/tiles-request-jsp-1.0.3.jar new file mode 100644 index 00000000..11b3a8d5 Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/tiles-request-jsp-1.0.3.jar differ diff --git a/src/main/webapp/WEB-INF/lib/tiles-request-servlet-1.0.3.jar b/src/main/webapp/WEB-INF/lib/tiles-request-servlet-1.0.3.jar new file mode 100644 index 00000000..54675a9d Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/tiles-request-servlet-1.0.3.jar differ diff --git a/src/main/webapp/WEB-INF/lib/tiles-servlet-3.0.3.jar b/src/main/webapp/WEB-INF/lib/tiles-servlet-3.0.3.jar new file mode 100644 index 00000000..d821f474 Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/tiles-servlet-3.0.3.jar differ diff --git a/src/main/webapp/WEB-INF/lib/tiles-template-3.0.3.jar b/src/main/webapp/WEB-INF/lib/tiles-template-3.0.3.jar new file mode 100644 index 00000000..e6367f23 Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/tiles-template-3.0.3.jar differ diff --git a/src/main/webapp/WEB-INF/lib/wagon-file-1.0-beta-2.jar b/src/main/webapp/WEB-INF/lib/wagon-file-1.0-beta-2.jar new file mode 100644 index 00000000..97dc9c68 Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/wagon-file-1.0-beta-2.jar differ diff --git a/src/main/webapp/WEB-INF/lib/wagon-http-lightweight-1.0-beta-2.jar b/src/main/webapp/WEB-INF/lib/wagon-http-lightweight-1.0-beta-2.jar new file mode 100644 index 00000000..145139cd Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/wagon-http-lightweight-1.0-beta-2.jar differ diff --git a/src/main/webapp/WEB-INF/lib/wagon-http-shared-1.0-beta-2.jar b/src/main/webapp/WEB-INF/lib/wagon-http-shared-1.0-beta-2.jar new file mode 100644 index 00000000..f0c791fd Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/wagon-http-shared-1.0-beta-2.jar differ diff --git a/src/main/webapp/WEB-INF/lib/wagon-provider-api-1.0-beta-2.jar b/src/main/webapp/WEB-INF/lib/wagon-provider-api-1.0-beta-2.jar new file mode 100644 index 00000000..79fcf226 Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/wagon-provider-api-1.0-beta-2.jar differ diff --git a/src/main/webapp/WEB-INF/lib/wagon-ssh-1.0-beta-2.jar b/src/main/webapp/WEB-INF/lib/wagon-ssh-1.0-beta-2.jar new file mode 100644 index 00000000..6e0fc71a Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/wagon-ssh-1.0-beta-2.jar differ diff --git a/src/main/webapp/WEB-INF/lib/wagon-ssh-common-1.0-beta-2.jar b/src/main/webapp/WEB-INF/lib/wagon-ssh-common-1.0-beta-2.jar new file mode 100644 index 00000000..2ebff21b Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/wagon-ssh-common-1.0-beta-2.jar differ diff --git a/src/main/webapp/WEB-INF/lib/wagon-ssh-external-1.0-beta-2.jar b/src/main/webapp/WEB-INF/lib/wagon-ssh-external-1.0-beta-2.jar new file mode 100644 index 00000000..71365cd3 Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/wagon-ssh-external-1.0-beta-2.jar differ diff --git a/src/main/webapp/WEB-INF/lib/xml-apis-1.3.02.jar b/src/main/webapp/WEB-INF/lib/xml-apis-1.3.02.jar new file mode 100644 index 00000000..243eaeae Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/xml-apis-1.3.02.jar differ diff --git a/src/main/webapp/WEB-INF/lib/xmlpull-1.1.3.1.jar b/src/main/webapp/WEB-INF/lib/xmlpull-1.1.3.1.jar new file mode 100644 index 00000000..cbc149d0 Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/xmlpull-1.1.3.1.jar differ diff --git a/src/main/webapp/WEB-INF/lib/xmlrpc-2.0.1.jar b/src/main/webapp/WEB-INF/lib/xmlrpc-2.0.1.jar new file mode 100644 index 00000000..47b46375 Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/xmlrpc-2.0.1.jar differ diff --git a/src/main/webapp/WEB-INF/lib/xpp3_min-1.1.4c.jar b/src/main/webapp/WEB-INF/lib/xpp3_min-1.1.4c.jar new file mode 100644 index 00000000..813a9a83 Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/xpp3_min-1.1.4c.jar differ diff --git a/src/main/webapp/WEB-INF/lib/xstream-1.4.3.jar b/src/main/webapp/WEB-INF/lib/xstream-1.4.3.jar new file mode 100644 index 00000000..815ed039 Binary files /dev/null and b/src/main/webapp/WEB-INF/lib/xstream-1.4.3.jar differ diff --git a/src/main/webapp/WEB-INF/views/drilling/inquiry/drilling_inquiry.jsp b/src/main/webapp/WEB-INF/views/drilling/inquiry/drilling_inquiry.jsp index de852404..d91ebee2 100644 --- a/src/main/webapp/WEB-INF/views/drilling/inquiry/drilling_inquiry.jsp +++ b/src/main/webapp/WEB-INF/views/drilling/inquiry/drilling_inquiry.jsp @@ -59,9 +59,32 @@ if (request.getSession().getAttribute("CLS") == null || "2".equals(request.getSe xhr.onreadystatechange = function() { if (xhr.readyState === 4 && xhr.status === 200) { // 요청 성공 시 처리 - console.log(xhr.responseText); + console.log('%o', xhr.responseText); const obj = JSON.parse(xhr.responseText); - alert(obj.message) + var dataListEle = document.getElementById('data-list'); + dataListEle.innerHTML = ''; + + + var content = ''; + + for( idx in obj.data ) { + content += + ` + + 1 + ` + obj.data[idx].constName + ` + ` + obj.data[idx].constStateCode + ` + ` + obj.data[idx].constStartDate + ` ~ ` + obj.data[idx].constEndDate + ` + ` + obj.data[idx].constName + ` + ` + obj.data[idx].masterCompanyDept + ` + ` + obj.data[idx].masterCompanyAdmin + ` + ` + obj.data[idx].masterCompanyTel + ` + ` + obj.data[idx].coinstCompanyDept + ` + ` + obj.data[idx].constCompanyAdmin + ` + ` + obj.data[idx].constCompanyTel + ` + + `; + dataListEle.innerHTML = tt; } else if (xhr.readyState === 4) { // 요청 실패 시 처리 console.error('요청 실패:', xhr.status); @@ -164,137 +187,8 @@ if (request.getSession().getAttribute("CLS") == null || "2".equals(request.getSe 담당연락처 - - - 1 - 남부내륙철도 건설사업 (제1공구 노반 기본 및 실시설계) - 미입력 - 2020.01~2027.12 - 유지관리 단계 - 수도권사업단 인덕원동탄월곶판교 PM - 남궁길동 - 070-123-4567 - 계롱건설산업(주) - 남궁길동 - 070-123-4567 - - - 1 - 남부내륙철도 건설사업 (제1공구 노반 기본 및 실시설계) - 미입력 - 2020.01~2027.12 - 유지관리 단계 - 수도권사업단 인덕원동탄월곶판교 PM - 남궁길동 - 070-123-4567 - 계롱건설산업(주) - 남궁길동 - 070-123-4567 - - - 1 - 남부내륙철도 건설사업 (제1공구 노반 기본 및 실시설계) - 미입력 - 2020.01~2027.12 - 유지관리 단계 - 수도권사업단 인덕원동탄월곶판교 PM - 남궁길동 - 070-123-4567 - 계롱건설산업(주) - 남궁길동 - 070-123-4567 - - - 1 - 남부내륙철도 건설사업 (제1공구 노반 기본 및 실시설계) - 미입력 - 2020.01~2027.12 - 유지관리 단계 - 수도권사업단 인덕원동탄월곶판교 PM - 남궁길동 - 070-123-4567 - 계롱건설산업(주) - 남궁길동 - 070-123-4567 - - - 1 - 남부내륙철도 건설사업 (제1공구 노반 기본 및 실시설계) - 미입력 - 2020.01~2027.12 - 유지관리 단계 - 수도권사업단 인덕원동탄월곶판교 PM - 남궁길동 - 070-123-4567 - 계롱건설산업(주) - 남궁길동 - 070-123-4567 - - - 1 - 남부내륙철도 건설사업 (제1공구 노반 기본 및 실시설계) - 미입력 - 2020.01~2027.12 - 유지관리 단계 - 수도권사업단 인덕원동탄월곶판교 PM - 남궁길동 - 070-123-4567 - 계롱건설산업(주) - 남궁길동 - 070-123-4567 - - - 1 - 남부내륙철도 건설사업 (제1공구 노반 기본 및 실시설계) - 미입력 - 2020.01~2027.12 - 유지관리 단계 - 수도권사업단 인덕원동탄월곶판교 PM - 남궁길동 - 070-123-4567 - 계롱건설산업(주) - 남궁길동 - 070-123-4567 - - - 1 - 남부내륙철도 건설사업 (제1공구 노반 기본 및 실시설계) - 미입력 - 2020.01~2027.12 - 유지관리 단계 - 수도권사업단 인덕원동탄월곶판교 PM - 남궁길동 - 070-123-4567 - 계롱건설산업(주) - 남궁길동 - 070-123-4567 - - - 1 - 남부내륙철도 건설사업 (제1공구 노반 기본 및 실시설계) - 미입력 - 2020.01~2027.12 - 유지관리 단계 - 수도권사업단 인덕원동탄월곶판교 PM - 남궁길동 - 070-123-4567 - 계롱건설산업(주) - 남궁길동 - 070-123-4567 - - - 1 - 남부내륙철도 건설사업 (제1공구 노반 기본 및 실시설계) - 미입력 - 2020.01~2027.12 - 유지관리 단계 - 수도권사업단 인덕원동탄월곶판교 PM - 남궁길동 - 070-123-4567 - 계롱건설산업(주) - 남궁길동 - 070-123-4567 - + +