diff --git a/src/main/java/itn/let/cop/bbs/web/EgovBBSManageController.java b/src/main/java/itn/let/cop/bbs/web/EgovBBSManageController.java index a4b39d32..b547ae68 100644 --- a/src/main/java/itn/let/cop/bbs/web/EgovBBSManageController.java +++ b/src/main/java/itn/let/cop/bbs/web/EgovBBSManageController.java @@ -1628,6 +1628,16 @@ public class EgovBBSManageController { return "redirect:/web/user/login/login.do"; } + /** + * 회원 정지된 상태이면 1:1 등록 화면으로 이동되지 않도록 처리 + * */ + boolean mberSttus = userManageService.selectUserStatusInfo(userId); + + if(!mberSttus) { + return "redirect:/web/uat/uia/actionLogout.do"; + } + + MberManageVO mberManageVO = new MberManageVO(); mberManageVO.setMberId(user.getId()); diff --git a/src/main/java/itn/let/fax/admin/service/FaxStatVO.java b/src/main/java/itn/let/fax/admin/service/FaxStatVO.java index e2222041..bebccbd1 100644 --- a/src/main/java/itn/let/fax/admin/service/FaxStatVO.java +++ b/src/main/java/itn/let/fax/admin/service/FaxStatVO.java @@ -25,6 +25,9 @@ public class FaxStatVO extends ComDefaultVO implements Serializable { private int statEndDate; //통계 종료일 private int statStandardDate; //통계 where 기준 + private int succPageCnt; //팩스 성공 페이지 수 + private int failPageCnt; //팩스 실패 페이지 수 + public String getReqDate() { return reqDate; } @@ -115,5 +118,17 @@ public class FaxStatVO extends ComDefaultVO implements Serializable { public void setStatStandardDate(int statStandardDate) { this.statStandardDate = statStandardDate; } + public int getSuccPageCnt() { + return succPageCnt; + } + public void setSuccPageCnt(int succPageCnt) { + this.succPageCnt = succPageCnt; + } + public int getFailPageCnt() { + return failPageCnt; + } + public void setFailPageCnt(int failPageCnt) { + this.failPageCnt = failPageCnt; + } } diff --git a/src/main/java/itn/let/fax/admin/service/impl/FaxAdmServiceImpl.java b/src/main/java/itn/let/fax/admin/service/impl/FaxAdmServiceImpl.java index 4dd34591..617db4d8 100644 --- a/src/main/java/itn/let/fax/admin/service/impl/FaxAdmServiceImpl.java +++ b/src/main/java/itn/let/fax/admin/service/impl/FaxAdmServiceImpl.java @@ -26,7 +26,6 @@ import itn.let.fax.admin.service.FaxAdmService; import itn.let.fax.admin.service.FaxStatVO; import itn.let.fax.user.service.FaxGroupDataVO; import itn.let.fax.user.service.impl.FaxDAO; -import itn.let.mjo.msg.service.MjonMsgVO; import itn.let.mjo.msgdata.service.impl.MjonMsgDataDAO; import itn.let.mjo.pay.service.impl.MjonPayDAO; import itn.let.module.base.PriceAndPoint; @@ -128,7 +127,8 @@ public class FaxAdmServiceImpl extends EgovAbstractServiceImpl implements FaxAdm faxStatVO.setFirstIndex(paginationInfo.getFirstRecordIndex()); faxStatVO.setLastIndex(paginationInfo.getLastRecordIndex()); - faxStatVO.setRecordCountPerPage(paginationInfo.getRecordCountPerPage()); + //faxStatVO.setRecordCountPerPage(paginationInfo.getRecordCountPerPage()); + faxStatVO.setRecordCountPerPage(1000); // 최초 접근 시 오늘 날짜의 통계를 보여준다 SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd"); @@ -212,12 +212,16 @@ public class FaxAdmServiceImpl extends EgovAbstractServiceImpl implements FaxAdm double succFaxCost = 0; double failFaxCost = 0; double succFaxRate = 0; + int succPageCnt = 0; + int failPageCnt = 0; for(FaxStatVO tmpVO : list) { succFaxCnt += tmpVO.getSuccFaxCnt(); failFaxCnt += tmpVO.getFailFaxCnt(); succFaxCost += Double.parseDouble(tmpVO.getSuccFaxCost()); failFaxCost += Double.parseDouble(tmpVO.getFailFaxCost()); + succPageCnt += tmpVO.getSuccPageCnt(); + failPageCnt += tmpVO.getFailPageCnt(); } if(succFaxCnt + succFaxCnt != 0) { @@ -236,6 +240,8 @@ public class FaxAdmServiceImpl extends EgovAbstractServiceImpl implements FaxAdm faxStatVO.setSuccFaxCost(dcf.format(succFaxCost)); faxStatVO.setFailFaxCost(dcf.format(failFaxCost)); faxStatVO.setSuccFaxRate(Double.toString(succFaxRate)); + faxStatVO.setSuccPageCnt(succPageCnt); + faxStatVO.setFailPageCnt(failPageCnt); List totalSumList = new ArrayList(); totalSumList.add(faxStatVO); diff --git a/src/main/java/itn/let/fax/admin/web/FaxAdmController.java b/src/main/java/itn/let/fax/admin/web/FaxAdmController.java index 439c8a06..8076da3c 100644 --- a/src/main/java/itn/let/fax/admin/web/FaxAdmController.java +++ b/src/main/java/itn/let/fax/admin/web/FaxAdmController.java @@ -324,6 +324,7 @@ public class FaxAdmController { return "/uss/ion/fax/faxAdmSendStatistics"; } + // 팩스 금일 발송통계 갱신 @RequestMapping(value = "/uss/ion/msg/insertFaxCountStatTodayAjax.do") public ResponseEntity insertFaxCountStatTodayAjax(FaxStatVO faxStatVO) throws Exception { diff --git a/src/main/java/itn/let/fax/user/web/FaxRestController.java b/src/main/java/itn/let/fax/user/web/FaxRestController.java index 16dfbb94..6719276c 100644 --- a/src/main/java/itn/let/fax/user/web/FaxRestController.java +++ b/src/main/java/itn/let/fax/user/web/FaxRestController.java @@ -6,6 +6,7 @@ import java.time.LocalDateTime; import javax.annotation.Resource; import javax.imageio.ImageIO; +import javax.servlet.http.HttpServletRequest; import org.apache.commons.lang3.StringUtils; import org.apache.pdfbox.pdmodel.PDDocument; @@ -29,6 +30,7 @@ import itn.let.fax.user.service.FaxConvertVO; import itn.let.fax.user.service.FaxService; import itn.let.fax.user.service.FaxTranVO; import itn.let.mail.service.StatusResponse; +import itn.let.uss.umt.service.EgovUserManageService; /** * @@ -50,6 +52,10 @@ public class FaxRestController { @Resource(name = "faxService") private FaxService faxService; + /** userManageService */ + @Resource(name = "userManageService") + private EgovUserManageService userManageService; + private static final Logger logger = LoggerFactory.getLogger(FaxRestController.class); /** @@ -124,7 +130,7 @@ public class FaxRestController { * @throws Exception */ @RequestMapping(value= {"/web/mjon/fax/sendData.do"}) - public ResponseEntity sendData(FaxTranVO faxTranVO) throws Exception{ + public ResponseEntity sendData(FaxTranVO faxTranVO, HttpServletRequest request) throws Exception{ //로그인 권한정보 불러오기 LoginVO loginVO = EgovUserDetailsHelper.isAuthenticated()? (LoginVO)EgovUserDetailsHelper.getAuthenticatedUser():null; String userId = loginVO == null ? "" : EgovStringUtil.isNullToString(loginVO.getId()); @@ -132,6 +138,16 @@ public class FaxRestController { // 로그인 안되어있음 return if(StringUtils.isEmpty(userId)) return ResponseEntity.ok().body(new StatusResponse(HttpStatus.BAD_REQUEST, "로그인 후 이용해 주세요", LocalDateTime.now())); + /** + * 회원 정지된 상태이면 팩스 발송이되지 않도록 처리 + * */ + boolean mberSttus = userManageService.selectUserStatusInfo(userId); + + if(!mberSttus) { + request.getSession().invalidate(); + return ResponseEntity.ok().body(new StatusResponse(HttpStatus.BAD_REQUEST, "현재 고객님께서는 문자온 서비스 이용이 정지된 상태로 팩스를 발송하실 수 없습니다. 이용정지 해제를 원하시면 고객센터로 연락주시기 바랍니다.", LocalDateTime.now())); + } + try { return ResponseEntity.ok().body(faxService.sendData(faxTranVO, userId)); // return ResponseEntity.ok().body(new StatusResponse(HttpStatus.BAD_REQUEST, "임시 성공.", LocalDateTime.now())); diff --git a/src/main/java/itn/let/kakao/user/kakaoAt/web/KakaoAlimTalkController.java b/src/main/java/itn/let/kakao/user/kakaoAt/web/KakaoAlimTalkController.java index 60e925cd..9ac8b441 100644 --- a/src/main/java/itn/let/kakao/user/kakaoAt/web/KakaoAlimTalkController.java +++ b/src/main/java/itn/let/kakao/user/kakaoAt/web/KakaoAlimTalkController.java @@ -23,6 +23,7 @@ import itn.let.kakao.kakaoComm.kakaoApi.KakaoApiProfile; import itn.let.kakao.kakaoComm.kakaoApi.KakaoApiProfileCategory; import itn.let.kakao.kakaoComm.kakaoApi.service.KakaoApiService; import itn.let.kakao.user.kakaoAt.service.KakaoAlimTalkService; +import itn.let.uss.umt.service.EgovUserManageService; @Controller public class KakaoAlimTalkController { @@ -36,6 +37,10 @@ public class KakaoAlimTalkController { @Resource(name = "kakaoAlimTalkService") private KakaoAlimTalkService kakaoAlimTalkService; + /** userManageService */ + @Resource(name = "userManageService") + private EgovUserManageService userManageService; + /** EgovMessageSource */ @Resource(name="egovMessageSource") EgovMessageSource egovMessageSource; @@ -58,6 +63,16 @@ public class KakaoAlimTalkController { } model.addAttribute("loginVO", loginVO); + /** + * 회원 정지된 상태이면 알림톡 설정화면으로 이동되지 않도록 처리 + * */ + boolean mberSttus = userManageService.selectUserStatusInfo(userId); + + if(!mberSttus) { + return "redirect:/web/uat/uia/actionLogout.do"; + } + + KakaoVO kakaoVO = new KakaoVO(); kakaoVO.setUserId(userId); kakaoVO.setCategoryDepth("1"); diff --git a/src/main/java/itn/let/kakao/user/kakaoAt/web/KakaoAlimTalkSendController.java b/src/main/java/itn/let/kakao/user/kakaoAt/web/KakaoAlimTalkSendController.java index fae0a426..438bb612 100644 --- a/src/main/java/itn/let/kakao/user/kakaoAt/web/KakaoAlimTalkSendController.java +++ b/src/main/java/itn/let/kakao/user/kakaoAt/web/KakaoAlimTalkSendController.java @@ -15,6 +15,7 @@ import java.util.Map; import java.util.stream.Collectors; import javax.annotation.Resource; +import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.apache.poi.ss.usermodel.Cell; @@ -50,7 +51,6 @@ import itn.let.kakao.kakaoComm.kakaoApi.KakaoApiTemplate; import itn.let.kakao.kakaoComm.kakaoApi.service.KakaoApiService; import itn.let.kakao.user.kakaoAt.service.KakaoAlimTalkService; import itn.let.mjo.mjocommon.MjonCommon; -import itn.let.mjo.msg.service.MjonMsgVO; import itn.let.mjo.msgdata.service.MjonMsgDataService; import itn.let.mjo.msgdata.service.MjonMsgDataVO; import itn.let.mjo.msgdata.service.MjonMsgReturnVO; @@ -473,6 +473,7 @@ public class KakaoAlimTalkSendController { // @ResponseBody public ModelAndView kakaoAlimTalkMsgSendAjax( // @RequestBody KakaoVO kakaoVO + HttpServletRequest request, @ModelAttribute("kakaoVO") KakaoVO kakaoVO ) throws Exception { ModelAndView modelAndView = new ModelAndView(); @@ -492,6 +493,24 @@ public class KakaoAlimTalkSendController { modelAndView.addObject("result", "loginFail"); return modelAndView; }else { + + /** + * 회원 정지된 상태이면 알림톡 발송이 안되도록 처리함 + * 현재 로그인 세션도 만료 처리함 + * */ + boolean mberSttus = userManageService.selectUserStatusInfo(userId); + + if(!mberSttus) { + + modelAndView.addObject("message", "현재 고객님께서는 문자온 서비스 이용이 정지된 상태로 알림톡을 발송하실 수 없습니다. 이용정지 해제를 원하시면 고객센터로 연락주시기 바랍니다."); + modelAndView.addObject("result", "authFail"); + + request.getSession().invalidate(); + + return modelAndView; + + } + /** 카카오톡 전송 기본 설정 -------------------------------------------*/ kakaoVO.setSendType("AT"); kakaoVO.setMsgType("8"); diff --git a/src/main/java/itn/let/kakao/user/kakaoAt/web/KakaoAlimTalkTemplateController.java b/src/main/java/itn/let/kakao/user/kakaoAt/web/KakaoAlimTalkTemplateController.java index 83d05b39..20e7a768 100644 --- a/src/main/java/itn/let/kakao/user/kakaoAt/web/KakaoAlimTalkTemplateController.java +++ b/src/main/java/itn/let/kakao/user/kakaoAt/web/KakaoAlimTalkTemplateController.java @@ -39,6 +39,7 @@ import itn.let.kakao.user.kakaoAt.service.KakaoAlimTalkService; import itn.let.mjo.symbol.service.MjonSymbolService; import itn.let.mjo.symbol.service.MjonSymbolVO; import itn.let.uss.ion.cnt.service.CntManageVO; +import itn.let.uss.umt.service.EgovUserManageService; @Controller public class KakaoAlimTalkTemplateController { @@ -52,6 +53,10 @@ public class KakaoAlimTalkTemplateController { @Resource(name = "kakaoAlimTalkService") private KakaoAlimTalkService kakaoAlimTalkService; + /** userManageService */ + @Resource(name = "userManageService") + private EgovUserManageService userManageService; + /** EgovMessageSource */ @Resource(name="egovMessageSource") EgovMessageSource egovMessageSource; @@ -101,6 +106,15 @@ public class KakaoAlimTalkTemplateController { } model.addAttribute("loginVO", loginVO); + /** + * 회원 정지된 상태이면 알림톡 템플릿 등록 화면으로 이동되지 않도록 처리 + * */ + boolean mberSttus = userManageService.selectUserStatusInfo(userId); + + if(!mberSttus) { + return "redirect:/web/uat/uia/actionLogout.do"; + } + KakaoVO kakaoVO = new KakaoVO(); kakaoVO.setUserId(userId); kakaoVO.setCategoryDepth("1"); diff --git a/src/main/java/itn/let/kakao/user/stepInfo/web/KakaoStepInfoController.java b/src/main/java/itn/let/kakao/user/stepInfo/web/KakaoStepInfoController.java index 58c63620..5b1fb768 100644 --- a/src/main/java/itn/let/kakao/user/stepInfo/web/KakaoStepInfoController.java +++ b/src/main/java/itn/let/kakao/user/stepInfo/web/KakaoStepInfoController.java @@ -26,6 +26,7 @@ import itn.let.cop.bbs.service.BoardMasterVO; import itn.let.cop.bbs.service.BoardVO; import itn.let.cop.bbs.service.EgovBBSAttributeManageService; import itn.let.cop.bbs.service.EgovBBSManageService; +import itn.let.uss.umt.service.EgovUserManageService; @Controller public class KakaoStepInfoController { @@ -43,6 +44,10 @@ public class KakaoStepInfoController { @Resource(name = "EgovFileMngService") private EgovFileMngService fileService; + /** userManageService */ + @Resource(name = "userManageService") + private EgovUserManageService userManageService; + /** * @Method Name : selectKaKaoStepInfo @@ -64,6 +69,15 @@ public class KakaoStepInfoController { } model.addAttribute("loginVO", loginVO); + /** + * 회원 정지된 상태이면 알림톡 사용안내 화면으로 이동되지 않도록 처리 + * */ + boolean mberSttus = userManageService.selectUserStatusInfo(userId); + + if(!mberSttus) { + return "redirect:/web/uat/uia/actionLogout.do"; + } + BoardMasterVO bmVO = new BoardMasterVO(); PaginationInfo paginationInfo = new PaginationInfo(); Map map = new HashMap(); diff --git a/src/main/java/itn/let/mjo/msgcampain/service/MjonCandidateService.java b/src/main/java/itn/let/mjo/msgcampain/service/MjonCandidateService.java index 4979ee36..47a12258 100644 --- a/src/main/java/itn/let/mjo/msgcampain/service/MjonCandidateService.java +++ b/src/main/java/itn/let/mjo/msgcampain/service/MjonCandidateService.java @@ -13,4 +13,7 @@ public interface MjonCandidateService { // 선거문자 후보자 삭제 처리 public int deleteCandidateDataInfo(MjonCandidateVO mjonCandidateVO) throws Exception; + + // 선거문자 후보자 등록/수정시 회원정보 테이블 세금계산서 정보 수정해주기 + public int updateTaxBillMemberInfo(MjonCandidateVO mjonCandidateVO) throws Exception; } diff --git a/src/main/java/itn/let/mjo/msgcampain/service/MjonCandidateVO.java b/src/main/java/itn/let/mjo/msgcampain/service/MjonCandidateVO.java index 4d1b94d6..03045b4c 100644 --- a/src/main/java/itn/let/mjo/msgcampain/service/MjonCandidateVO.java +++ b/src/main/java/itn/let/mjo/msgcampain/service/MjonCandidateVO.java @@ -21,7 +21,8 @@ public class MjonCandidateVO { private String lastUpdusrId; private String dataType; - + private String emailFullStr; + private String regidentNoFullStr; public int getCandidateId() { return candidateId; @@ -120,10 +121,18 @@ public class MjonCandidateVO { public void setDataType(String dataType) { this.dataType = dataType; } - - - - - + public String getEmailFullStr() { + return emailFullStr; + } + public void setEmailFullStr(String emailFullStr) { + this.emailFullStr = emailFullStr; + } + public String getRegidentNoFullStr() { + return regidentNoFullStr; + } + public void setRegidentNoFullStr(String regidentNoFullStr) { + this.regidentNoFullStr = regidentNoFullStr; + } + } diff --git a/src/main/java/itn/let/mjo/msgcampain/service/impl/MjonCandidateDAO.java b/src/main/java/itn/let/mjo/msgcampain/service/impl/MjonCandidateDAO.java index 44daff91..6d9879f1 100644 --- a/src/main/java/itn/let/mjo/msgcampain/service/impl/MjonCandidateDAO.java +++ b/src/main/java/itn/let/mjo/msgcampain/service/impl/MjonCandidateDAO.java @@ -27,4 +27,10 @@ public class MjonCandidateDAO extends EgovAbstractDAO { return update("mjonCandidateDAO.deleteCandidateDataInfo", mjonCandidateVO); } + + // 선거문자 후보자 등록/수정시 회원정보 테이블 세금계산서 정보 수정해주기 + public int updateTaxBillMemberInfo(MjonCandidateVO mjonCandidateVO) throws Exception{ + + return update("mjonCandidateDAO.updateTaxBillMemberInfo", mjonCandidateVO); + } } diff --git a/src/main/java/itn/let/mjo/msgcampain/service/impl/MjonCandidateServiceImpl.java b/src/main/java/itn/let/mjo/msgcampain/service/impl/MjonCandidateServiceImpl.java index de2b2f3e..037608d9 100644 --- a/src/main/java/itn/let/mjo/msgcampain/service/impl/MjonCandidateServiceImpl.java +++ b/src/main/java/itn/let/mjo/msgcampain/service/impl/MjonCandidateServiceImpl.java @@ -33,4 +33,9 @@ public class MjonCandidateServiceImpl extends EgovAbstractServiceImpl implement return mjonCandidateDAO.deleteCandidateDataInfo(mjonCandidateVO); } + + // 선거문자 후보자 등록/수정시 회원정보 테이블 세금계산서 정보 수정해주기 + public int updateTaxBillMemberInfo(MjonCandidateVO mjonCandidateVO) throws Exception{ + return mjonCandidateDAO.updateTaxBillMemberInfo(mjonCandidateVO); + } } diff --git a/src/main/java/itn/let/mjo/msgcampain/web/MjonMsgCampainDataController.java b/src/main/java/itn/let/mjo/msgcampain/web/MjonMsgCampainDataController.java index 84bb44af..28bd1cf4 100644 --- a/src/main/java/itn/let/mjo/msgcampain/web/MjonMsgCampainDataController.java +++ b/src/main/java/itn/let/mjo/msgcampain/web/MjonMsgCampainDataController.java @@ -570,6 +570,7 @@ public class MjonMsgCampainDataController { model.addAttribute("resultPhoList", resultPhoList); paginationInfo.setTotalRecordCount( resultPhoList.size()> 0 ? ((Long)((EgovMap)resultPhoList.get(0)).get("totCnt")).intValue() : 0); model.addAttribute("paginationInfo", paginationInfo); + model.addAttribute("mberManageVO", mberManageVO); return "web/msgcampain/MsgDataSMLView"; } @@ -598,66 +599,98 @@ public class MjonMsgCampainDataController { LoginVO loginVO = EgovUserDetailsHelper.isAuthenticated()? (LoginVO)EgovUserDetailsHelper.getAuthenticatedUser():null; String userId = loginVO == null ? "" : EgovStringUtil.isNullToString(loginVO.getId()); - if(userId.equals("")) { + try { - modelAndView.addObject("result", "loginFail"); - modelAndView.addObject("message", "로그인이 필요합니다."); - return modelAndView; + if(userId.equals("")) { + + modelAndView.addObject("result", "loginFail"); + modelAndView.addObject("message", "로그인이 필요합니다."); + return modelAndView; + + }else { + + mjonCandidateVO.setMberId(userId); + + } - }else { + MjonVOParamXssValues XssParam = new MjonVOParamXssValues(); + + int XssCnt = XssParam.buildUri(mjonCandidateVO); + + if(XssCnt > 0) { + + modelAndView.addObject("result", "fail"); + modelAndView.addObject("message", "후보자 등록 정보에 잘못된 문자열이 있습니다."); + return modelAndView; + + } + + int resultCnt = 0; + String dataType = mjonCandidateVO.getDataType(); - mjonCandidateVO.setMberId(userId); + //주민번호 앞, 뒷 자리 암호화 처리하기 + String regidentNo1 = egovCryptoUtil.encrypt(mjonCandidateVO.getRegidentNo1()); + String regidentNo2 = egovCryptoUtil.encrypt(mjonCandidateVO.getRegidentNo2()); - } - - MjonVOParamXssValues XssParam = new MjonVOParamXssValues(); - - int XssCnt = XssParam.buildUri(mjonCandidateVO); - - if(XssCnt > 0) { + mjonCandidateVO.setRegidentNo1(regidentNo1); + mjonCandidateVO.setRegidentNo2(regidentNo2); - modelAndView.addObject("result", "fail"); - modelAndView.addObject("message", "후보자 등록 정보에 잘못된 문자열이 있습니다."); - return modelAndView; + if(dataType.equals("Upt")) { + + resultCnt = mjonCandidateService.updateCandidateDataInfo(mjonCandidateVO); + + }else { + + resultCnt = mjonCandidateService.insertCandidateDataInfo(mjonCandidateVO); + + } - } - - int resultCnt = 0; - String dataType = mjonCandidateVO.getDataType(); - - //주민번호 앞, 뒷 자리 암호화 처리하기 - String regidentNo1 = egovCryptoUtil.encrypt(mjonCandidateVO.getRegidentNo1()); - String regidentNo2 = egovCryptoUtil.encrypt(mjonCandidateVO.getRegidentNo2()); - - mjonCandidateVO.setRegidentNo1(regidentNo1); - mjonCandidateVO.setRegidentNo2(regidentNo2); - - if(dataType.equals("Upt")) { + /* + * 20231122 우영두 수정 + * 후보자 등록/수정시 후보자 정보에 대한 세금계산서 정보가 등록되어야 함. + * 선거문자를 이용하는 개인 회원은 세금계산서를 후보자에 대한 것을 신청하기 때문에 회원정보의 세금계산서 정보를 업데이트 하도록 함. + * + * */ + if(resultCnt > 0) { + + //후보자 담당자 이메일 주소 합쳐주기 + mjonCandidateVO.setEmailFullStr(mjonCandidateVO.getEmail() + "@" + mjonCandidateVO.getEmailDomain()); + + // 주민번호 복호화 하기 + regidentNo1 = egovCryptoUtil.decrypt(mjonCandidateVO.getRegidentNo1()); + regidentNo2 = egovCryptoUtil.decrypt(mjonCandidateVO.getRegidentNo2()); + + mjonCandidateVO.setRegidentNoFullStr(regidentNo1+regidentNo2); + + mjonCandidateService.updateTaxBillMemberInfo(mjonCandidateVO); + + } + + if(resultCnt > 0 && dataType.equals("Upt")) { + + modelAndView.addObject("result", "success"); + modelAndView.addObject("message", "후보자 정보의 수정이 완료되었습니다."); + + }else if(resultCnt > 0 && dataType.equals("Reg")) { + + modelAndView.addObject("result", "success"); + modelAndView.addObject("message", "후보자 등록이 완료되었습니다."); + + }else { + + modelAndView.addObject("result", "fail"); + modelAndView.addObject("message", "후보자 등록에 오류가 발생하였습니다."); + + } - resultCnt = mjonCandidateService.updateCandidateDataInfo(mjonCandidateVO); - - }else { - - resultCnt = mjonCandidateService.insertCandidateDataInfo(mjonCandidateVO); - - } - - - if(resultCnt > 0 && dataType.equals("Upt")) { - - modelAndView.addObject("result", "success"); - modelAndView.addObject("message", "후보자 정보의 수정이 완료되었습니다."); - - }else if(resultCnt > 0 && dataType.equals("Reg")) { - - modelAndView.addObject("result", "success"); - modelAndView.addObject("message", "후보자 등록이 완료되었습니다."); - - }else { + } catch (Exception e) { + System.out.println("insertCandidateDataInfoAjax Controller Error!!! " + e); modelAndView.addObject("result", "fail"); modelAndView.addObject("message", "후보자 등록에 오류가 발생하였습니다."); + return modelAndView; + } return modelAndView; @@ -686,40 +719,47 @@ public class MjonMsgCampainDataController { LoginVO loginVO = EgovUserDetailsHelper.isAuthenticated()? (LoginVO)EgovUserDetailsHelper.getAuthenticatedUser():null; String userId = loginVO == null ? "" : EgovStringUtil.isNullToString(loginVO.getId()); - if(userId.equals("")) { + try { + + if(userId.equals("")) { + + modelAndView.addObject("result", "loginFail"); + modelAndView.addObject("message", "로그인이 필요합니다."); + return modelAndView; + + }else { + + mjonCandidateVO.setMberId(userId); + + } - modelAndView.addObject("result", "loginFail"); - modelAndView.addObject("message", "로그인이 필요합니다."); - return modelAndView; + MjonVOParamXssValues XssParam = new MjonVOParamXssValues(); + + int XssCnt = XssParam.buildUri(mjonCandidateVO); + + int resultCnt = 0; - }else { + resultCnt = mjonCandidateService.deleteCandidateDataInfo(mjonCandidateVO); + + if(resultCnt > 0 ) { + + modelAndView.addObject("result", "success"); + modelAndView.addObject("message", "후보자 정보의 삭제 완료되었습니다."); + + + }else { + + modelAndView.addObject("result", "fail"); + modelAndView.addObject("message", "후보자 삭제에 오류가 발생하였습니다."); + + } - mjonCandidateVO.setMberId(userId); - - } - - MjonVOParamXssValues XssParam = new MjonVOParamXssValues(); - - int XssCnt = XssParam.buildUri(mjonCandidateVO); - - - int resultCnt = 0; - - - resultCnt = mjonCandidateService.deleteCandidateDataInfo(mjonCandidateVO); - - - - if(resultCnt > 0 ) { - - modelAndView.addObject("result", "success"); - modelAndView.addObject("message", "후보자 정보의 삭제 완료되었습니다."); - - - }else { + } catch (Exception e) { + System.out.println("deleteCandidateDataInfoAjax Controller Error!!! " + e); modelAndView.addObject("result", "fail"); modelAndView.addObject("message", "후보자 삭제에 오류가 발생하였습니다."); + return modelAndView; } diff --git a/src/main/java/itn/let/mjo/pay/web/MjonPayController.java b/src/main/java/itn/let/mjo/pay/web/MjonPayController.java index 87962f7d..46ebdacf 100644 --- a/src/main/java/itn/let/mjo/pay/web/MjonPayController.java +++ b/src/main/java/itn/let/mjo/pay/web/MjonPayController.java @@ -3425,10 +3425,77 @@ public class MjonPayController { LoginVO loginVO = EgovUserDetailsHelper.isAuthenticated()? (LoginVO)EgovUserDetailsHelper.getAuthenticatedUser():null; String userId = loginVO == null ? "" : EgovStringUtil.isNullToString(loginVO.getUniqId()); - mberManageVO.setUniqId(userId); - mberManageService.updateTaxbill(mberManageVO); - - redirectAttributes.addFlashAttribute("message", egovMessageSource.getMessage("success.common.update")); + if(userId.equals("")) { + + redirectAttributes.addFlashAttribute("message", egovMessageSource.getMessage("fail.common.login")); + return "redirect:/web/member/pay/BillPub.do"; + + } + + try { + + //세금계산서 정보 수정해주기 + mberManageVO.setUniqId(userId); + mberManageService.updateTaxbill(mberManageVO); + + /* + * 20231122 우영두 기능 추가 + * 개인회원인 경우 + * 세금계산서 타입이 개인인 경우 + * 후보자 정보가 있는지 확인하여 후보자 정보가 있다면 세금계산서 정보와 일치하도록 변경된 정보를 후보자 정보도 수정해준다. + * */ + String mberId = loginVO.getId(); + String taxCNm = mberManageVO.getTaxCNm(); + + MberManageVO tmpMberManageVO = mjonMsgDataService.selectMberManageInfo(mberId); + String dept = tmpMberManageVO.getDept(); + + if(dept.equals("p") && taxCNm != null && taxCNm.length() > 0) { + + MjonCandidateVO mjonCandidateVO = mjonCandidateService.selectCandidateDataInfo(mberId); + String candidateNm = mjonCandidateVO.getCandidateNm(); + if(candidateNm != null && candidateNm.length() > 0) { + + MjonCandidateVO updtCandidateVO = new MjonCandidateVO(); + + //이메일 정보 아이디/도메인 정보 분리 + String email = mberManageVO.getTaxMngEmail().split("@")[0]; + String emailDomain = mberManageVO.getTaxMngEmail().split("@")[1]; + + /* + * 주민번호 앞, 뒷 자리 암호화 처리하기 + * 세금계산서에서 주민번호는 별도로 암/복호화 처리를 안하고 저장함 + * 기본 가비아 암호화 솔루션 처리로 안한것 같음, 후보자 정보 쪽에서는 전자정부 프레임워크의 암/복호화 적용하여 저장함. + * + * */ + String regidentNo1 = egovCryptoUtil.encrypt(mberManageVO.getTaxCIhidNum().substring(0, 6)); + String regidentNo2 = egovCryptoUtil.encrypt(mberManageVO.getTaxCIhidNum().substring(6, 13)); + + updtCandidateVO.setMberId(mberId); + updtCandidateVO.setCandidateNm(taxCNm); + updtCandidateVO.setRegidentNo1(regidentNo1); + updtCandidateVO.setRegidentNo2(regidentNo2); + updtCandidateVO.setCandidateAddr(mberManageVO.getTaxCAddr()); + updtCandidateVO.setManagerNm(mberManageVO.getTaxMngNm()); + updtCandidateVO.setPhoneNo(mberManageVO.getTaxMngPhoneNum()); + updtCandidateVO.setEmail(email); + updtCandidateVO.setEmailDomain(emailDomain); + updtCandidateVO.setLastUpdusrId(mberId); + + int resultCnt = mjonCandidateService.updateCandidateDataInfo(updtCandidateVO); + + } + + } + + redirectAttributes.addFlashAttribute("message", egovMessageSource.getMessage("success.common.update")); + + } catch (Exception e) { + System.out.println("updateTaxbill Controller Error!!! " + e); + + redirectAttributes.addFlashAttribute("message", "세금계산서 정보 수정 중 오류가 발생하였습니다."); + return "redirect:/web/member/pay/BillPub.do"; + } return "redirect:/web/member/pay/BillPub.do"; } diff --git a/src/main/java/itn/let/mjo/reservmsg/service/impl/MjonReservMsgDAO.java b/src/main/java/itn/let/mjo/reservmsg/service/impl/MjonReservMsgDAO.java index 20fad5e5..010502ec 100644 --- a/src/main/java/itn/let/mjo/reservmsg/service/impl/MjonReservMsgDAO.java +++ b/src/main/java/itn/let/mjo/reservmsg/service/impl/MjonReservMsgDAO.java @@ -356,4 +356,17 @@ public class MjonReservMsgDAO extends EgovAbstractDAO { return update("MjonReservMsgDAO.updateReserveTimeBizMsgSeqListByMsgSeq", mjonResvMsgVO); } + + /** + * @Method Name : selectMjonMsgGroupDataByGroupId + * @작성일 : 2023. 11. 23. + * @작성자 : 우영두 + * @Method 설명 : 문자발송 그룹 데이터 테이블 데이터 조회 , 예약취소시 문자발송 정보 조회를 위해 사용 + * 예약취소시 전송사별 발송테이블의 데이터 삭제는 완료되었으나, mj_msg_data 테이블의 Deadlock 상황으로 오류 발생시 처리를 위해서 사용 + */ + public MjonResvMsgVO selectMjonMsgGroupDataChkByGroupId(MjonResvMsgVO mjonResvMsgVO) { + + return (MjonResvMsgVO) select("MjonReservMsgDAO.selectMjonMsgGroupDataChkByGroupId", mjonResvMsgVO); + } + } diff --git a/src/main/java/itn/let/mjo/reservmsg/service/impl/MjonReservMsgServiceImpl.java b/src/main/java/itn/let/mjo/reservmsg/service/impl/MjonReservMsgServiceImpl.java index 418cb100..988625d6 100644 --- a/src/main/java/itn/let/mjo/reservmsg/service/impl/MjonReservMsgServiceImpl.java +++ b/src/main/java/itn/let/mjo/reservmsg/service/impl/MjonReservMsgServiceImpl.java @@ -85,6 +85,9 @@ public class MjonReservMsgServiceImpl extends EgovAbstractServiceImpl implements int result = 0; try { + System.out.println("================= 예약 취소 처리 시작============================"); + System.out.println("================= 메세지 그룹 아이디============================" + mjonResvMsgVO.getMsgGroupId()); + String agentCode = mjonResvMsgVO.getAgentCode(); //전송사 코드번호 String msgType = mjonResvMsgVO.getMsgType(); //문자 종류 - 4:단문, 6:장문 @@ -102,72 +105,58 @@ public class MjonReservMsgServiceImpl extends EgovAbstractServiceImpl implements mjonResvMsgVO.setUserDataList(userDataList); - int ihResult = 0; - int imoResult = 0; + //int ihResult = 0; + //int imoResult = 0; int bizResult = 0; int jjResult = 0; int ivtResult = 0; - int FHSmsResult = 0; - int FHMmsResult = 0; + //int FHSmsResult = 0; + //int FHMmsResult = 0; int jjB01Result = 0; int jjB02Result = 0; //아이하트 예약취소 삭제 - ihResult = mjonReservMsgDAO.deleteIHeartMsgSeqListByMsgSeq(mjonResvMsgVO); + //ihResult = mjonReservMsgDAO.deleteIHeartMsgSeqListByMsgSeq(mjonResvMsgVO); //현대퓨처넷 단문예약취소 삭제 - FHSmsResult = mjonReservMsgDAO.deleteHFNSmsMsgSeqListByMsgSeq(mjonResvMsgVO); + //FHSmsResult = mjonReservMsgDAO.deleteHFNSmsMsgSeqListByMsgSeq(mjonResvMsgVO); //현대퓨처넷 장문/그림 문예약취소 삭제 - FHMmsResult = mjonReservMsgDAO.deleteHFNMmsMsgSeqListByMsgSeq(mjonResvMsgVO); + //FHMmsResult = mjonReservMsgDAO.deleteHFNMmsMsgSeqListByMsgSeq(mjonResvMsgVO); //아이엠오 예약취소 삭제 - imoResult = mjonReservMsgDAO.deleteIMOMsgSeqListByMsgSeq(mjonResvMsgVO); + //imoResult = mjonReservMsgDAO.deleteIMOMsgSeqListByMsgSeq(mjonResvMsgVO); //비트뿌리오 예약취소 삭제 bizResult = mjonReservMsgDAO.deleteBizMsgSeqListByMsgSeq(mjonResvMsgVO); + System.out.println("============================== 다우기술 예약 취소 건수 ::: "+bizResult); //제이제이 예약취소 삭제 jjResult = mjonReservMsgDAO.deleteJJMsgSeqListByMsgSeq(mjonResvMsgVO); + System.out.println("============================== 제이제이 예약 취소 건수 ::: "+jjResult); //인비토 예약취소 삭제 ivtResult = mjonReservMsgDAO.deleteIVTMsgSeqListByMsgSeq(mjonResvMsgVO); + System.out.println("============================== 인비토 예약 취소 건수 ::: "+ivtResult); //제이제이 B01 예약취소 삭제 jjB01Result = mjonReservMsgDAO.deleteJJB01MsgSeqListByMsgSeq(mjonResvMsgVO); + System.out.println("============================== 제이제이 B01 예약 취소 건수 ::: "+jjB01Result); //제이제이 B02 예약취소 삭제 jjB02Result = mjonReservMsgDAO.deleteJJB02MsgSeqListByMsgSeq(mjonResvMsgVO); + System.out.println("============================== 제이제이 B02 예약 취소 건수 ::: "+jjB02Result); //삭제 결과 합산 - result = ihResult + FHSmsResult + FHMmsResult + imoResult + bizResult +jjResult + ivtResult + jjB01Result + jjB02Result; + //result = ihResult + FHSmsResult + FHMmsResult + imoResult + bizResult +jjResult + ivtResult + jjB01Result + jjB02Result; + result = bizResult +jjResult + ivtResult + jjB01Result + jjB02Result; + System.out.println("============================== 총 예약 취소 건수 ::: "+result); - //각 전송사별 문자 발송 테이블에서 데이터 삭제 처리 - /*if(agentCode.equals("01")) { //아이하트 메세지 삭제 - - result = mjonReservMsgDAO.deleteIHeartMsgSeqListByMsgSeq(mjonResvMsgVO); - - }else if(agentCode.equals("02")) { //현대퓨쳐넷 메세지 삭제 - - if(msgType.equals("4")) { //단문 삭제 - - result = mjonReservMsgDAO.deleteHFNSmsMsgSeqListByMsgSeq(mjonResvMsgVO); - - }else { //장문, 그림 삭제 - - result = mjonReservMsgDAO.deleteHFNMmsMsgSeqListByMsgSeq(mjonResvMsgVO); - - } - - }else { //아이엠오 메세지 삭제 - - result = mjonReservMsgDAO.deleteIMOMsgSeqListByMsgSeq(mjonResvMsgVO); - - }*/ //예약 취소 환불 처리 if(result > 0) { + System.out.println("========================예약취소 상태값 변경 및 환불 처리============================"); //mj_msg_data 테이블 예약 취소 값 수정 mjonReservMsgDAO.updateResvMsgCancelDataFlag(mjonResvMsgVO); @@ -252,6 +241,102 @@ public class MjonReservMsgServiceImpl extends EgovAbstractServiceImpl implements } + }else if(result == 0){ + + //문자 발송 그룹 테이블의 데이터에 예약 취소가 되었는지 조회 + MjonResvMsgVO tmpMjonResvMsgVO = mjonReservMsgDAO.selectMjonMsgGroupDataChkByGroupId(mjonResvMsgVO); + String reserveCYn = tmpMjonResvMsgVO.getReserveCYn(); + + if(reserveCYn.equals("N")) { + + result = Integer.parseInt(tmpMjonResvMsgVO.getMsgGroupCnt()); + + System.out.println("========================예약취소 상태값 변경 및 환불 처리============================"); + //mj_msg_data 테이블 예약 취소 값 수정 + mjonReservMsgDAO.updateResvMsgCancelDataFlag(mjonResvMsgVO); + + //mj_msg_group_data 테이블 예약 취소 값 수정 + mjonReservMsgDAO.updateResvMsgCancelGroupFlag(mjonResvMsgVO); + + MjonMsgVO mjonMsgVO = mjonReservMsgDAO.selectMjonMsgGroupData(mjonResvMsgVO); + + //문자 발송 캐시 차감 해주기 + MjonPayVO mjonPayVO = new MjonPayVO(); + + mjonPayVO.setCashId(idgenMjonCashId.getNextStringId()); + mjonPayVO.setUserId(mjonMsgVO.getUserId()); + mjonPayVO.setCash(Float.parseFloat(mjonMsgVO.getTotPrice())); + mjonPayVO.setFrstRegisterId(mjonMsgVO.getUserId()); + mjonPayVO.setMemo("예약문자 취소 " + result + "건 환불"); + mjonPayVO.setMsgGroupId(mjonMsgVO.getMsgGroupId()); + + mjonPayDAO.insertCash(mjonPayVO); //캐시 환불 + mjonPayDAO.updateMemberCash(mjonPayVO); //회원정보 업데이트 + + String eventYn = mjonMsgVO.getEventYn(); + + if(eventYn.equals("Y")) {//이벤트 단가로 발송한 문자인 경우에만 이벤트 환불 처리해줌 + + //이벤트 회원의 경우 이벤트 캐시도 환불 처리해줌. + MjonEventVO mjonEventVO = new MjonEventVO(); + mjonEventVO.setMberId(mjonMsgVO.getUserId()); + MjonEventVO eventMberInfo = mjonEventDAO.selectEventMsgMberDefaultInfo(mjonEventVO); + + float eventRemainCash = 0; + boolean compareEndDate = false; + + if(eventMberInfo != null) { + + String eventEndDate = eventMberInfo.getEventEndDate(); //이벤트 종료 일자 + String eventStatus = eventMberInfo.getEventStatus(); //이벤트 진행 상태 + + + /** + * MJUtil.getCompareDate() + * 현재 날짜와 파라미터 전달 날짜를 비교 + * 전달날짜를 지난경우 False를 리턴함. + * 현재날짜 이전 혹은 같은 날짜면 True를 리턴함. + * + * */ + + if(eventStatus.equals("Y") || eventStatus.equals("E")) {//현재 이벤트를 진행 중이거나, 종료 된경우 환불 처리해줌 + + if(eventEndDate != null) {//이벤트 종료일이 지나지 않은 회원만 환불 처리해줌. + compareEndDate = MJUtil.getCompareDate(eventEndDate); + eventRemainCash = (float) eventMberInfo.getEventRemainCash(); + + + if(compareEndDate) {//현재 시간이 이벤트 종료일이 지나지 않았다면 + + float totEventRemainCash = eventRemainCash + Float.parseFloat(mjonMsgVO.getTotPrice()); //남은 이벤트 캐시 금액에 환불해줄 캐시 금액을 더해준다. + + //이벤트 상태값을 종료로 변경한다. + mjonEventVO.setEventInfoId(eventMberInfo.getEventInfoId()); + + if(eventStatus.equals("E")) {//이벤트가 종료 된 상태에서 예약 취소를 진행하는 경우 이벤트 종료에서 진행으로 변경 후 캐시 환불 처리 + + mjonEventVO.setEventStatus("Y"); + mjonEventVO.setEventMemo("예약문자 취소로 인한 환물 및 종료되었던 이벤트 진행으로 변경"); + + }else {//진행중인 경우 기존 상태값 그대로 적용해준다. + + mjonEventVO.setEventStatus(eventStatus); + + } + + mjonEventVO.setEventRemainCash(totEventRemainCash); + mjonEventDAO.updateEventEndStatus(mjonEventVO); + + } + } + + } + + } + + } + } + } diff --git a/src/main/java/itn/let/mjo/reservmsg/web/MjonReservMsgController.java b/src/main/java/itn/let/mjo/reservmsg/web/MjonReservMsgController.java index d1355fb4..38025fc7 100644 --- a/src/main/java/itn/let/mjo/reservmsg/web/MjonReservMsgController.java +++ b/src/main/java/itn/let/mjo/reservmsg/web/MjonReservMsgController.java @@ -513,7 +513,7 @@ public class MjonReservMsgController { }else { - modelAndView.addObject("message", "예약 발송 처리가 실패 되었습니다."); + modelAndView.addObject("message", "예약 발송 취소 처리가 실패 되었습니다. 잠시 후 다시 시도해 주세요."); modelAndView.addObject("result", "fail"); } diff --git a/src/main/java/itn/let/uat/uia/service/impl/EgovMberManageServiceImpl.java b/src/main/java/itn/let/uat/uia/service/impl/EgovMberManageServiceImpl.java index 873100a9..d81e731a 100644 --- a/src/main/java/itn/let/uat/uia/service/impl/EgovMberManageServiceImpl.java +++ b/src/main/java/itn/let/uat/uia/service/impl/EgovMberManageServiceImpl.java @@ -584,4 +584,23 @@ public class EgovMberManageServiceImpl extends EgovAbstractServiceImpl implement mberManageDAO.insertCertInfoLog(certVO); } + + @Override + //기업회원 기업정보 변경신청 취소 처리 + public int updateCmpUserInfoCancel(MberManageVO mberManageVO) throws Exception{ + + int resultCnt = 0; + + try { + + resultCnt = mberManageDAO.updateCmpUserInfoCancel(mberManageVO); + + } catch (Exception e) { + System.out.println("updateCmpUserInfoCancel Service Imple Error!!!" + e); + } + + return resultCnt; + } + + } \ No newline at end of file diff --git a/src/main/java/itn/let/uat/uia/service/impl/MberManageDAO.java b/src/main/java/itn/let/uat/uia/service/impl/MberManageDAO.java index 196fa80c..62398fa5 100644 --- a/src/main/java/itn/let/uat/uia/service/impl/MberManageDAO.java +++ b/src/main/java/itn/let/uat/uia/service/impl/MberManageDAO.java @@ -313,4 +313,20 @@ public class MberManageDAO extends EgovComAbstractDAO{ return (List) list("mberManageDAO.selectMemberLoginIpList", mberId); } + //기업회원 기업정보 변경신청 취소 처리 + public int updateCmpUserInfoCancel(MberManageVO mberManageVO) throws Exception{ + + int resultCnt = 0; + + try { + + resultCnt = update("mberManageDAO.updateCmpUserInfoCancel", mberManageVO); + + } catch (Exception e) { + System.out.println("updateCmpUserInfoCancel DAO Error!!!" + e); + } + + return resultCnt; + } + } \ No newline at end of file diff --git a/src/main/java/itn/let/uat/uia/web/EgovMypageController.java b/src/main/java/itn/let/uat/uia/web/EgovMypageController.java index af71b6c8..cce20cc8 100644 --- a/src/main/java/itn/let/uat/uia/web/EgovMypageController.java +++ b/src/main/java/itn/let/uat/uia/web/EgovMypageController.java @@ -988,6 +988,50 @@ public class EgovMypageController { } return modelAndView; } + + + /** + * 마이페이지 기업정보 변경 취소 처리 + */ + @RequestMapping(value="/web/user/updateCmpUserInfoCancelAjax.do") + public ModelAndView updateCmpUserInfoCancelAjax(@ModelAttribute MberManageVO mberManageVO + , HttpServletRequest request + , HttpServletResponse response) throws Exception { + ModelAndView modelAndView = new ModelAndView(); + modelAndView.setViewName("jsonView"); + + LoginVO loginVO = EgovUserDetailsHelper.isAuthenticated()? (LoginVO)EgovUserDetailsHelper.getAuthenticatedUser():null; + + if(loginVO == null) { + + modelAndView.addObject("result", "loginFail"); + + return modelAndView; + } + + try { + + //취소 회원 아이디 셋팅 + mberManageVO.setLastUpdusrId(loginVO.getId()); + + //기업회원 변경 취소 Update 처리 hstType = 05, hstSttus = 04로 변경 + mberManageService.updateCmpUserInfoCancel(mberManageVO); + + modelAndView.addObject("result", "success"); + + } catch (Exception e) { + + System.out.println("updateCmpUserInfoCancelAjax Controller Error!!!! " + e); + + modelAndView.addObject("message", "기업회원 정보변경 취소요청 처리 중 오류가 발생하였습니다."); + modelAndView.addObject("result", "fail"); + return modelAndView; + } + + return modelAndView; + } + + /* *//** * 마이페이지 기업정보 변경 *//* diff --git a/src/main/java/itn/let/uss/umt/service/EgovMberManageService.java b/src/main/java/itn/let/uss/umt/service/EgovMberManageService.java index 025e498b..a333609d 100644 --- a/src/main/java/itn/let/uss/umt/service/EgovMberManageService.java +++ b/src/main/java/itn/let/uss/umt/service/EgovMberManageService.java @@ -238,4 +238,7 @@ public interface EgovMberManageService { // 이용정지회원 금일, 금년 잔액 합계 public MberManageVO selectMberStopCashSum(MberManageVO mberManageVO) throws Exception; + + //기업회원 기업정보 변경신청 취소 처리 + public int updateCmpUserInfoCancel(MberManageVO mberManageVO) throws Exception; } \ No newline at end of file diff --git a/src/main/resources/egovframework/spring/com/context-scheduling-sym-log-lgm.xml b/src/main/resources/egovframework/spring/com/context-scheduling-sym-log-lgm.xml index 53417f3b..b3240689 100644 --- a/src/main/resources/egovframework/spring/com/context-scheduling-sym-log-lgm.xml +++ b/src/main/resources/egovframework/spring/com/context-scheduling-sym-log-lgm.xml @@ -92,35 +92,34 @@ - - + + - + + 매시간 43분 47초 마다 일별 문자 발송 데이터 집계 - - + + --> - - + + - + + 매시간 43분 47초 마다 일별 문자 발송 데이터 집계 - - + --> @@ -151,8 +150,8 @@ - - + + diff --git a/src/main/resources/egovframework/sqlmap/let/fax/Fax_SQL_Mysql.xml b/src/main/resources/egovframework/sqlmap/let/fax/Fax_SQL_Mysql.xml index ee5f684e..2c0ee8fb 100644 --- a/src/main/resources/egovframework/sqlmap/let/fax/Fax_SQL_Mysql.xml +++ b/src/main/resources/egovframework/sqlmap/let/fax/Fax_SQL_Mysql.xml @@ -525,6 +525,8 @@ SUCC_FAX_USER_COST, FAIL_FAX_COST, SUCC_FAX_RATE, + SUCC_PAGE_CNT, + FAIL_PAGE_CNT, REG_DATE ) SELECT b.reqDate, @@ -535,6 +537,8 @@ b.succFaxUserCost, b.failFaxCost, b.succFaxRate, + b.succPageCnt, + b.failPageCnt, b.regDate FROM ( SELECT a.reqDate AS reqDate, '06' AS AGENT_CODE, @@ -544,7 +548,9 @@ SUM( IF(a.Result = 'SENT', 1, 0) *a.faxUserCost) AS succFaxUserCost, SUM(IF(a.Result = 'FAIL', 1, 0) *a.faxCost) AS failFaxCost, IF(ROUND((SUM(IF(a.Result = 'SENT', 1, 0)) / IF(SUM(IF(a.Result <> '0', 1, 0)) = 0 , 1 , SUM(IF(a.Result <> '0', 1, 0)))) * 100) IS NOT NULL, ROUND((SUM(IF(a.Result = 'SENT', 1, 0)) / IF(SUM(IF(a.Result <> '0', 1, 0)) = 0 , 1, SUM(IF(a.Result <> '0', 1, 0)))) * 100), 0) AS succFaxRate, - NOW() AS regDate + NOW() AS regDate, + SUM(IF(a.Result = 'SENT', 1, 0) *a.resPage) AS succPageCnt, + SUM(IF(a.Result = 'FAIL', 1, 0) *a.resPage) AS failPageCnt FROM (SELECT a.*, b.EACH_PRICE AS faxUserCost FROM mj_fax_summary_view a @@ -575,6 +581,8 @@ SUCC_FAX_USER_COST = b.succFaxUserCost, FAIL_FAX_COST = b.failFaxCost, SUCC_FAX_RATE = b.succFaxRate, + SUCC_PAGE_CNT = b.succPageCnt, + FAIL_PAGE_CNT = b.failPageCnt, REG_DATE = now() @@ -584,7 +592,9 @@ a.FAIL_FAX_CNT AS failFaxCnt, a.SUCC_FAX_COST AS succFaxCost, a.FAIL_FAX_COST AS failFaxCost, - a.SUCC_FAX_RATE AS succFaxRate + a.SUCC_FAX_RATE AS succFaxRate, + a.SUCC_PAGE_CNT AS succPageCnt, + a.FAIL_PAGE_CNT AS failPageCnt FROM mj_fax_stat a WHERE 1=1 diff --git a/src/main/resources/egovframework/sqlmap/let/msg/MjonMsgCampainData_SQL_mysql.xml b/src/main/resources/egovframework/sqlmap/let/msg/MjonMsgCampainData_SQL_mysql.xml index 5374b6cb..293022e3 100644 --- a/src/main/resources/egovframework/sqlmap/let/msg/MjonMsgCampainData_SQL_mysql.xml +++ b/src/main/resources/egovframework/sqlmap/let/msg/MjonMsgCampainData_SQL_mysql.xml @@ -37,7 +37,6 @@ REGIDENT_NO2, CANDIDATE_ADDR, MANAGER_NM, - OFFICE, PHONE_NO, EMAIL, EMAIL_DOMAIN, @@ -54,7 +53,6 @@ #regidentNo2#, #candidateAddr#, #managerNm#, - #office#, #phoneNo#, #email#, #emailDomain#, @@ -75,7 +73,6 @@ REGIDENT_NO2 = #regidentNo2#, CANDIDATE_ADDR = #candidateAddr#, MANAGER_NM = #managerNm#, - OFFICE = #office#, PHONE_NO = #phoneNo#, EMAIL = #email#, EMAIL_DOMAIN = #emailDomain#, @@ -90,6 +87,19 @@ WHERE MBER_ID = #mberId# + + + UPDATE LETTNGNRLMBER SET + TAX_MNG_EMAIL = #emailFullStr#, + TAX_MNG_NM = #managerNm#, + TAX_MNG_PHONENUM = #phoneNo#, + TAX_C_NM = #candidateNm#, + TAX_C_IHIDNUM = #regidentNoFullStr#, + TAX_C_ADDR = #candidateAddr# + WHERE MBER_ID = #mberId# + + + diff --git a/src/main/resources/egovframework/sqlmap/let/msg/MjonMsgResv_SQL_mysql.xml b/src/main/resources/egovframework/sqlmap/let/msg/MjonMsgResv_SQL_mysql.xml index fbfa454d..61b93073 100644 --- a/src/main/resources/egovframework/sqlmap/let/msg/MjonMsgResv_SQL_mysql.xml +++ b/src/main/resources/egovframework/sqlmap/let/msg/MjonMsgResv_SQL_mysql.xml @@ -938,6 +938,27 @@ + + diff --git a/src/main/resources/egovframework/sqlmap/let/uss/umt/EgovMberManage_SQL_Mysql.xml b/src/main/resources/egovframework/sqlmap/let/uss/umt/EgovMberManage_SQL_Mysql.xml index 109dca18..dab47381 100644 --- a/src/main/resources/egovframework/sqlmap/let/uss/umt/EgovMberManage_SQL_Mysql.xml +++ b/src/main/resources/egovframework/sqlmap/let/uss/umt/EgovMberManage_SQL_Mysql.xml @@ -1964,4 +1964,15 @@ WHERE LOGIN_ID = #mberId# AND LOGIN_YN = 'Y' + + + + UPDATE LETTNGNRLMBER_CMPHST SET + HST_TYPE = '05' + ,HST_STTUS = '04' + ,LAST_UPDUSR_ID = #lastUpdusrId# + ,LAST_UPDT_PNTTM = NOW() + WHERE CMPHST_ID = #cmpHstId# + + diff --git a/src/main/webapp/WEB-INF/jsp/cmm/uss/umt/EgovGnrlUserSelectUpdt.jsp b/src/main/webapp/WEB-INF/jsp/cmm/uss/umt/EgovGnrlUserSelectUpdt.jsp index 5b0621e3..5e5163b5 100644 --- a/src/main/webapp/WEB-INF/jsp/cmm/uss/umt/EgovGnrlUserSelectUpdt.jsp +++ b/src/main/webapp/WEB-INF/jsp/cmm/uss/umt/EgovGnrlUserSelectUpdt.jsp @@ -3295,7 +3295,7 @@ function kakaoATDelayCancel(msgGroupId){ <%-- B선 회원 선결제 버튼 처리 --%> - + @@ -3683,7 +3683,7 @@ function kakaoATDelayCancel(msgGroupId){ <%-- B선 회원 선결제 버튼 처리 --%> - + diff --git a/src/main/webapp/WEB-INF/jsp/uss/ion/fax/faxAdmSendStatistics.jsp b/src/main/webapp/WEB-INF/jsp/uss/ion/fax/faxAdmSendStatistics.jsp index 3549c5ff..cdb69efb 100644 --- a/src/main/webapp/WEB-INF/jsp/uss/ion/fax/faxAdmSendStatistics.jsp +++ b/src/main/webapp/WEB-INF/jsp/uss/ion/fax/faxAdmSendStatistics.jsp @@ -43,33 +43,33 @@ fnCalChange(""); }); -// function fnCalChange(type) { -// if(type == 'day') { -// $(".calendar_box").show(); -// $(".line").show(); -// $("#searchYear").hide(); -// $("#searchMonth").hide(); -// $("#searchQuarter").hide(); -// } else if(type == 'month') { -// $(".calendar_box").hide(); -// $(".line").hide(); -// $("#searchYear").show(); -// $("#searchMonth").show(); -// $("#searchQuarter").hide(); -// } else if(type == 'quarter') { -// $(".calendar_box").hide(); -// $(".line").hide(); -// $("#searchYear").show(); -// $("#searchMonth").hide(); -// $("#searchQuarter").show(); -// } else if(type == 'year') { -// $(".calendar_box").hide(); -// $(".line").hide(); -// $("#searchYear").show(); -// $("#searchMonth").hide(); -// $("#searchQuarter").hide(); -// } -// } + function fnCalChange(type) { + if(type == 'day') { + $(".calendar_box").show(); + $(".line").show(); + $("#searchYear").hide(); + $("#searchMonth").hide(); + $("#searchQuarter").hide(); + } else if(type == 'month') { + $(".calendar_box").hide(); + $(".line").hide(); + $("#searchYear").show(); + $("#searchMonth").show(); + $("#searchQuarter").hide(); + } else if(type == 'quarter') { + $(".calendar_box").hide(); + $(".line").hide(); + $("#searchYear").show(); + $("#searchMonth").hide(); + $("#searchQuarter").show(); + } else if(type == 'year') { + $(".calendar_box").hide(); + $(".line").hide(); + $("#searchYear").show(); + $("#searchMonth").hide(); + $("#searchQuarter").hide(); + } + } function fn_list_search() { var form = document.listForm; @@ -202,7 +202,6 @@
(부가세 별도) - (30분 단위 업데이트)  
@@ -210,7 +209,7 @@ - + @@ -228,9 +227,9 @@ - - - + + + diff --git a/src/main/webapp/WEB-INF/jsp/web/kakao/msgdata/at/KakaoAlimtalkMsgDataView.jsp b/src/main/webapp/WEB-INF/jsp/web/kakao/msgdata/at/KakaoAlimtalkMsgDataView.jsp index d8565ea7..c46bf615 100644 --- a/src/main/webapp/WEB-INF/jsp/web/kakao/msgdata/at/KakaoAlimtalkMsgDataView.jsp +++ b/src/main/webapp/WEB-INF/jsp/web/kakao/msgdata/at/KakaoAlimtalkMsgDataView.jsp @@ -686,6 +686,11 @@ function sendTemplateInfo(){ alert(returnData.message); return false; + }else if('authFail' == returnData.result){ + + alert(returnData.message); + location.reload(); + } else if(status == 'success'){ var kakaoSendCnt = returnData.resultSts; diff --git a/src/main/webapp/WEB-INF/jsp/web/msgcampain/MsgDataSMLView.jsp b/src/main/webapp/WEB-INF/jsp/web/msgcampain/MsgDataSMLView.jsp index 14462670..68b31566 100644 --- a/src/main/webapp/WEB-INF/jsp/web/msgcampain/MsgDataSMLView.jsp +++ b/src/main/webapp/WEB-INF/jsp/web/msgcampain/MsgDataSMLView.jsp @@ -2839,6 +2839,13 @@ function fn_candidateLoginChk(){ } +function fn_mberDeptChk(){ + + alert("선거문자는 개인 회원만 이용 가능합니다."); + return false; + +} + function goToCustom(){ var form = document.goToCustomForm; @@ -3254,11 +3261,9 @@ function getMjMsgSentListAll(pageNo) {
-

선거문자는 반드시 후보자 등록을 하셔야만 이용 가능합니다.

+

선거문자는 반드시 후보자 등록을 하셔야만 이용 가능합니다.
입력하신 내용은 세금계산서 발행을 위한 정보로만 사용됩니다.

후보자

- -
건(매)()() %
@@ -3309,13 +3314,13 @@ function getMjMsgSentListAll(pageNo) { - + <%-- - + --%> - + diff --git a/src/main/webapp/robots.txt b/src/main/webapp/robots.txt index 06f7c1d7..2863291d 100644 --- a/src/main/webapp/robots.txt +++ b/src/main/webapp/robots.txt @@ -1,12 +1,2 @@ User-agent: * -Disallow:/uat -Disallow:/MapUrl.do -Disallow:/web/pop/testSendPop.do -Disallow:/web/addr/getAddrGroupDuplCheckAjax.do -Disallow:/web/mjon/msgdata/sendMsgDataAjax.do -Disallow:/web/com/userSessionExpendAjax.do -Disallow:/web/mjon/msgdata/selectMsgGroupNotExistInfoAjax.do -Disallow:/web/addr/getAddrGroupDuplCheckAjax.do -Disallow:/web/mjon/msgdata/selectMsgAddrListAjax.do -Disallow:/web/mjon/conf/selectMjonMsgUseConfAjax.do -Sitemap: https://www.munjaon.co.kr/sitemap.xml \ No newline at end of file +Disallow:/uat \ No newline at end of file diff --git a/src/main/webapp/sitemap.xml b/src/main/webapp/sitemap.xml index 85a39826..7db571d6 100644 --- a/src/main/webapp/sitemap.xml +++ b/src/main/webapp/sitemap.xml @@ -9,2777 +9,2992 @@ https://www.munjaon.co.kr/ - 2022-12-07T08:53:44+00:00 + 2023-10-23T06:28:54+00:00 1.00 - https://www.munjaon.co.kr/web/mjon/msgdata/excel/selectMsgExcelDataView.do - 2022-12-07T08:53:44+00:00 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do + 2023-10-23T06:28:54+00:00 0.80 - https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do - 2022-12-07T08:53:44+00:00 + https://www.munjaon.co.kr/web/mjon/msgdata/excel/selectMsgExcelDataView.do + 2023-10-23T06:28:54+00:00 + 0.80 + + + https://www.munjaon.co.kr/web/mjon/msgcampain/selectMsgDataView.do + 2023-10-23T06:28:54+00:00 + 0.80 + + + https://www.munjaon.co.kr/web/mjon/msgcampain/excel/selectMsgExcelDataView.do + 2023-10-23T06:28:54+00:00 0.80 https://www.munjaon.co.kr/web/mjon/custom/selectMsgCustomView.do - 2022-12-07T08:53:44+00:00 - 0.64 - - - https://www.munjaon.co.kr/web/user/login/login.do - 2022-12-07T08:53:44+00:00 - 0.64 - - - https://www.munjaon.co.kr/web/cop/bbs/NoticeList.do - 2022-12-07T08:53:44+00:00 - 0.64 - - - https://www.munjaon.co.kr/web/cop/bbs/FaqList.do - 2022-12-07T08:53:44+00:00 - 0.64 - - - https://www.munjaon.co.kr/web/mjon/msgcampain/selectMsgDataView.do - 2022-12-07T08:53:44+00:00 - 0.64 - - - https://www.munjaon.co.kr/web/mjon/msgcampain/excel/selectMsgExcelDataView.do - 2022-12-07T08:53:44+00:00 - 0.64 + 2023-10-23T06:28:54+00:00 + 0.80 https://www.munjaon.co.kr/web/mjon/custom/selectMsgCustomView.do?tap=2 - 2022-12-07T08:53:44+00:00 - 0.64 - - - https://www.munjaon.co.kr/web/mjon/custom/selectMsgCustomView.do?tap=3 - 2022-12-07T08:53:44+00:00 - 0.64 + 2023-10-23T06:28:54+00:00 + 0.80 https://www.munjaon.co.kr/web/info/mjonInfo.do - 2022-12-07T08:53:44+00:00 - 0.64 + 2023-10-23T06:28:54+00:00 + 0.80 https://www.munjaon.co.kr/web/info/mjonFunc.do - 2022-12-07T08:53:44+00:00 - 0.64 + 2023-10-23T06:28:54+00:00 + 0.80 https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do - 2022-12-07T08:53:44+00:00 - 0.64 + 2023-10-23T06:28:54+00:00 + 0.80 https://www.munjaon.co.kr/web/mjon/addr/addrMobGuide.do - 2022-12-07T08:53:44+00:00 - 0.64 + 2023-10-23T06:28:54+00:00 + 0.80 + + + https://www.munjaon.co.kr/web/cop/bbs/NoticeList.do + 2023-10-23T06:28:54+00:00 + 0.80 https://www.munjaon.co.kr/web/cop/bbs/TermsList.do - 2022-12-07T08:53:44+00:00 - 0.64 + 2023-10-23T06:28:54+00:00 + 0.80 + + + https://www.munjaon.co.kr/web/cop/bbs/FaqList.do + 2023-10-23T06:28:54+00:00 + 0.80 https://www.munjaon.co.kr/web/cop/bbs/EventList.do - 2022-12-07T08:53:44+00:00 + 2023-10-23T06:28:54+00:00 + 0.80 + + + https://www.munjaon.co.kr/web/main/mainPage.do + 2023-10-23T06:28:54+00:00 + 0.80 + + + https://www.munjaon.co.kr/web/mjon/alimtalk/kakaoAlimtalkMsgDataView.do + 2023-10-23T06:28:54+00:00 + 0.64 + + + https://www.munjaon.co.kr/web/mjon/fax/faxDataView.do + 2023-10-23T06:28:54+00:00 + 0.64 + + + https://www.munjaon.co.kr/web/mjon/kakao/alimtalk/kakaoAlimtalkIntrdView.do + 2023-10-23T06:28:54+00:00 0.64 https://www.munjaon.co.kr/web/user/findUserId.do - 2022-12-07T08:53:44+00:00 + 2023-10-23T06:28:54+00:00 0.64 https://www.munjaon.co.kr/web/user/rePassword.do - 2022-12-07T08:53:44+00:00 + 2023-10-23T06:28:54+00:00 0.64 https://www.munjaon.co.kr/web/cop/bbs/TermsList.do?menuNm=02 - 2022-12-07T08:53:44+00:00 + 2023-10-23T06:28:54+00:00 0.64 https://www.munjaon.co.kr/web/cop/bbs/TermsList.do?menuNm=03 - 2022-12-07T08:53:44+00:00 + 2023-10-23T06:28:54+00:00 0.64 https://www.munjaon.co.kr/web/cop/bbs/TermsList.do?menuNm=04 - 2022-12-07T08:53:44+00:00 + 2023-10-23T06:28:54+00:00 0.64 - https://www.munjaon.co.kr/web/user/login/selectUserDept.do - 2022-12-07T08:53:44+00:00 - 0.51 + https://www.munjaon.co.kr/web/cop/bbs/NoticeDetail.do?bbsId=BBSMSTR_000000000762&nttId=215&seCmmnCdId=&frstRegisterId=&viewsYn=&menuNo=&searchBgnDe=&searchEndDe=&pageIndex=1&searchSortCnd=&searchSortOrd=&searchCnd=&searchWrd=&pageUnit=10 + 2023-10-23T06:28:54+00:00 + 0.64 - https://www.munjaon.co.kr/web/cop/bbs/NoticeDetail.do?bbsId=BBSMSTR_000000000762&nttId=210 - 2022-12-07T08:53:44+00:00 - 0.51 + https://www.munjaon.co.kr/web/cop/bbs/NoticeDetail.do?bbsId=BBSMSTR_000000000762&nttId=335&seCmmnCdId=&frstRegisterId=&viewsYn=&menuNo=&searchBgnDe=&searchEndDe=&pageIndex=1&searchSortCnd=&searchSortOrd=&searchCnd=&searchWrd=&pageUnit=10 + 2023-10-23T06:28:54+00:00 + 0.64 + + + https://www.munjaon.co.kr/publish/publish_adv/send_group_text.html + 2023-10-23T06:11:19+00:00 + 0.64 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P + 2023-10-23T06:28:54+00:00 + 0.64 + + + https://www.munjaon.co.kr/web/cop/bbs/NoticeDetail.do?bbsId=BBSMSTR_000000000762&nttId=210&seCmmnCdId=&frstRegisterId=&viewsYn=&menuNo=&searchBgnDe=&searchEndDe=&pageIndex=1&searchSortCnd=&searchSortOrd=&searchCnd=&searchWrd=&pageUnit=10 + 2023-10-23T06:28:54+00:00 + 0.64 https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%95%88%EB%B6%80 - 2022-12-07T08:53:44+00:00 - 0.51 + 2023-10-23T06:28:54+00:00 + 0.64 https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%95%88%EB%B6%80 - 2022-12-07T08:53:44+00:00 - 0.51 + 2023-10-23T06:28:54+00:00 + 0.64 https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%95%88%EB%B6%80 - 2022-12-07T08:53:44+00:00 - 0.51 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%82%B0%EC%95%85%ED%9A%8C - 2022-12-07T08:53:44+00:00 - 0.51 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%A1%B0%EB%AC%B8 - 2022-12-07T08:53:44+00:00 - 0.51 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EB%AA%A9%EC%9A%94%EC%9D%BC - 2022-12-07T08:53:44+00:00 - 0.51 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EB%82%A0%EC%94%A8 - 2022-12-07T08:53:44+00:00 - 0.51 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=4%EC%9B%94 - 2022-12-07T08:53:44+00:00 - 0.51 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EB%8B%B5%EB%A1%80 - 2022-12-07T08:53:44+00:00 - 0.51 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%97%B0%EB%A7%90%EC%97%B0%EC%8B%9C - 2022-12-07T08:53:44+00:00 - 0.51 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%A2%8B%EC%9D%80%EA%B8%80 - 2022-12-07T08:53:44+00:00 - 0.51 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EA%B0%90%EC%82%AC - 2022-12-07T08:53:44+00:00 - 0.51 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%ED%86%A0%EC%9A%94%EC%9D%BC - 2022-12-07T08:53:44+00:00 - 0.51 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%ED%9C%B4%EC%9D%BC - 2022-12-07T08:53:44+00:00 - 0.51 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=6%EC%9B%94 - 2022-12-07T08:53:44+00:00 - 0.51 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%B9%A0%EC%88%9C - 2022-12-07T08:53:44+00:00 - 0.51 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EB%8F%8C%EC%9E%94%EC%B9%98 - 2022-12-07T08:53:44+00:00 - 0.51 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%A2%85%EA%B5%90 - 2022-12-07T08:53:44+00:00 - 0.51 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%9D%91%EC%9B%90 - 2022-12-07T08:53:44+00:00 - 0.51 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=1%EC%9B%94 - 2022-12-07T08:53:44+00:00 - 0.51 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%9E%85%EB%8F%99 - 2022-12-07T08:53:44+00:00 - 0.51 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=8%EC%9B%94 - 2022-12-07T08:53:44+00:00 - 0.51 + 2023-10-23T06:28:54+00:00 + 0.64 https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%8A%B9%EC%A7%84 - 2022-12-07T08:53:44+00:00 - 0.51 + 2023-10-23T06:28:54+00:00 + 0.64 https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%9B%94%EC%9A%94%EC%9D%BC - 2022-12-07T08:53:44+00:00 - 0.51 + 2023-10-23T06:28:54+00:00 + 0.64 https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%ED%99%98%EA%B0%91 - 2022-12-07T08:53:44+00:00 - 0.51 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=10%EC%9B%94 - 2022-12-07T08:53:44+00:00 - 0.51 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EB%B3%84%EC%9E%90%EB%A6%AC - 2022-12-07T08:53:44+00:00 - 0.51 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%9D%B8%EC%82%AC - 2022-12-07T08:53:44+00:00 - 0.51 + 2023-10-23T06:28:54+00:00 + 0.64 https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EA%B3%A0%EB%B0%B1 - 2022-12-07T08:53:44+00:00 - 0.51 + 2023-10-23T06:28:54+00:00 + 0.64 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=10%EC%9B%94 + 2023-10-23T06:28:54+00:00 + 0.64 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EB%B3%84%EC%9E%90%EB%A6%AC + 2023-10-23T06:28:54+00:00 + 0.64 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%9D%B8%EC%82%AC + 2023-10-23T06:28:54+00:00 + 0.64 https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%ED%96%89%EC%82%AC - 2022-12-07T08:53:44+00:00 - 0.51 + 2023-10-23T06:28:54+00:00 + 0.64 https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%88%98%EC%9A%94%EC%9D%BC - 2022-12-07T08:53:44+00:00 - 0.51 + 2023-10-23T06:28:54+00:00 + 0.64 https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EA%B3%A0%ED%9D%AC - 2022-12-07T08:53:44+00:00 - 0.51 + 2023-10-23T06:28:54+00:00 + 0.64 https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=3%EC%9B%94 - 2022-12-07T08:53:44+00:00 - 0.51 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%84%A0%EA%B1%B0 - 2022-12-07T08:53:44+00:00 - 0.51 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%B6%95%ED%95%98 - 2022-12-07T08:53:44+00:00 - 0.51 + 2023-10-23T06:28:54+00:00 + 0.64 https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EB%AA%85%EC%A0%88 - 2022-12-07T08:53:44+00:00 - 0.51 + 2023-10-23T06:28:54+00:00 + 0.64 - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%BD%94%EB%AF%B9 - 2022-12-07T08:53:44+00:00 - 0.51 + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%ED%99%94%EC%9D%B4%ED%8A%B8%EB%8D%B0%EC%9D%B4 + 2023-10-23T06:28:54+00:00 + 0.64 - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%9C%84%EB%A1%9C - 2022-12-07T08:53:44+00:00 - 0.51 + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%84%A0%EA%B1%B0 + 2023-10-23T06:28:54+00:00 + 0.64 - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EA%B8%88%EC%9A%94%EC%9D%BC - 2022-12-07T08:53:44+00:00 - 0.51 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EA%B3%84%EC%A0%88 - 2022-12-07T08:53:44+00:00 - 0.51 + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%B6%95%ED%95%98 + 2023-10-23T06:28:54+00:00 + 0.64 https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=5%EC%9B%94 - 2022-12-07T08:53:44+00:00 - 0.51 + 2023-10-23T06:28:54+00:00 + 0.64 - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EA%B2%BD%EC%A1%B0%EC%82%AC - 2022-12-07T08:53:44+00:00 - 0.51 + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%BD%94%EB%AF%B9 + 2023-10-23T06:28:54+00:00 + 0.64 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%9C%84%EB%A1%9C + 2023-10-23T06:28:54+00:00 + 0.64 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EA%B8%88%EC%9A%94%EC%9D%BC + 2023-10-23T06:28:54+00:00 + 0.64 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EA%B3%84%EC%A0%88 + 2023-10-23T06:28:54+00:00 + 0.64 https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%B4%88%EB%8C%80 - 2022-12-07T08:53:44+00:00 - 0.51 + 2023-10-23T06:28:54+00:00 + 0.64 - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EB%AA%85%EC%96%B8 - 2022-12-07T08:53:44+00:00 - 0.51 + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EB%AC%B4%EB%8D%94%EC%9C%84 + 2023-10-23T06:28:54+00:00 + 0.64 - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%88%98%EB%8A%A5 - 2022-12-07T08:53:44+00:00 - 0.51 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%9D%BC%EC%9A%94%EC%9D%BC - 2022-12-07T08:53:44+00:00 - 0.51 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%ED%99%98%EC%A0%88%EA%B8%B0 - 2022-12-07T08:53:44+00:00 - 0.51 + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EA%B2%BD%EC%A1%B0%EC%82%AC + 2023-10-23T06:28:54+00:00 + 0.64 https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=7%EC%9B%94 - 2022-12-07T08:53:44+00:00 - 0.51 + 2023-10-23T06:28:54+00:00 + 0.64 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EB%AA%85%EC%96%B8 + 2023-10-23T06:28:54+00:00 + 0.64 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%88%98%EB%8A%A5 + 2023-10-23T06:28:54+00:00 + 0.64 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%9D%BC%EC%9A%94%EC%9D%BC + 2023-10-23T06:28:54+00:00 + 0.64 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%ED%99%98%EC%A0%88%EA%B8%B0 + 2023-10-23T06:28:54+00:00 + 0.64 https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%ED%95%A9%EA%B2%A9 - 2022-12-07T08:53:44+00:00 - 0.51 + 2023-10-23T06:28:54+00:00 + 0.64 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EA%B2%A9%EB%A0%A4 + 2023-10-23T06:28:54+00:00 + 0.64 https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EA%B2%A8%EC%9A%B8 - 2022-12-07T08:53:44+00:00 - 0.51 + 2023-10-23T06:28:54+00:00 + 0.64 https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%B6%9C%EC%82%B0 - 2022-12-07T08:53:44+00:00 - 0.51 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%9A%B4%EC%84%B8 - 2022-12-07T08:53:44+00:00 - 0.51 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%A3%BC%EB%A7%90 - 2022-12-07T08:53:44+00:00 - 0.51 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=2%EC%9B%94 - 2022-12-07T08:53:44+00:00 - 0.51 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%9C%A0%EB%A8%B8 - 2022-12-07T08:53:44+00:00 - 0.51 + 2023-10-23T06:28:54+00:00 + 0.64 https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=9%EC%9B%94 - 2022-12-07T08:53:44+00:00 - 0.51 + 2023-10-23T06:28:54+00:00 + 0.64 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%9A%B4%EC%84%B8 + 2023-10-23T06:28:54+00:00 + 0.64 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%A3%BC%EB%A7%90 + 2023-10-23T06:28:54+00:00 + 0.64 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=2%EC%9B%94 + 2023-10-23T06:28:54+00:00 + 0.64 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%9C%A0%EB%A8%B8 + 2023-10-23T06:28:54+00:00 + 0.64 https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EB%AA%A8%EC%9E%84 - 2022-12-07T08:53:44+00:00 - 0.51 + 2023-10-23T06:28:54+00:00 + 0.64 https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%ED%99%94%EC%9A%94%EC%9D%BC - 2022-12-07T08:53:44+00:00 - 0.51 + 2023-10-23T06:28:54+00:00 + 0.64 https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%ED%9A%8C%EA%B0%91 - 2022-12-07T08:53:44+00:00 - 0.51 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%ED%88%AC%ED%91%9C - 2022-12-07T08:53:44+00:00 - 0.51 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EA%B1%B4%EA%B0%95 - 2022-12-07T08:53:44+00:00 - 0.51 + 2023-10-23T06:28:54+00:00 + 0.64 https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EA%B8%B0%EB%85%90%EC%9D%BC - 2022-12-07T08:53:44+00:00 - 0.51 + 2023-10-23T06:28:54+00:00 + 0.64 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EB%B4%84 + 2023-10-23T06:28:54+00:00 + 0.64 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%ED%88%AC%ED%91%9C + 2023-10-23T06:28:54+00:00 + 0.64 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EA%B1%B4%EA%B0%95 + 2023-10-23T06:28:54+00:00 + 0.64 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%82%B0%EC%95%85%ED%9A%8C + 2023-10-23T06:28:54+00:00 + 0.64 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%A1%B0%EB%AC%B8 + 2023-10-23T06:28:54+00:00 + 0.64 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EB%AA%A9%EC%9A%94%EC%9D%BC + 2023-10-23T06:28:54+00:00 + 0.64 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EB%82%A0%EC%94%A8 + 2023-10-23T06:28:54+00:00 + 0.64 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=4%EC%9B%94 + 2023-10-23T06:28:54+00:00 + 0.64 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%97%B0%EB%A7%90%EC%97%B0%EC%8B%9C + 2023-10-23T06:28:54+00:00 + 0.64 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%97%AC%EB%A6%84 + 2023-10-23T06:28:54+00:00 + 0.64 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EB%8B%B5%EB%A1%80 + 2023-10-23T06:28:54+00:00 + 0.64 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=6%EC%9B%94 + 2023-10-23T06:28:54+00:00 + 0.64 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%A2%8B%EC%9D%80%EA%B8%80 + 2023-10-23T06:28:54+00:00 + 0.64 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EA%B0%90%EC%82%AC + 2023-10-23T06:28:54+00:00 + 0.64 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%ED%86%A0%EC%9A%94%EC%9D%BC + 2023-10-23T06:28:54+00:00 + 0.64 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%ED%9C%B4%EC%9D%BC + 2023-10-23T06:28:54+00:00 + 0.64 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EB%8F%8C%EC%9E%94%EC%B9%98 + 2023-10-23T06:28:54+00:00 + 0.64 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%B6%94%EC%84%9D + 2023-10-23T06:28:54+00:00 + 0.64 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%B9%A0%EC%88%9C + 2023-10-23T06:28:54+00:00 + 0.64 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=8%EC%9B%94 + 2023-10-23T06:28:54+00:00 + 0.64 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%A2%85%EA%B5%90 + 2023-10-23T06:28:54+00:00 + 0.64 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%9D%91%EC%9B%90 + 2023-10-23T06:28:54+00:00 + 0.64 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=1%EC%9B%94 + 2023-10-23T06:28:54+00:00 + 0.64 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%9E%85%EB%8F%99 + 2023-10-23T06:28:54+00:00 + 0.64 https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=12%EC%9B%94 - 2022-12-07T08:53:44+00:00 - 0.51 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%8B%A0%EB%85%84 - 2022-12-07T08:53:44+00:00 - 0.51 + 2023-10-23T06:28:54+00:00 + 0.64 https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%84%A4%EB%82%A0 - 2022-12-07T08:53:44+00:00 - 0.51 + 2023-10-23T06:28:54+00:00 + 0.64 - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EA%B2%BD%EC%A1%B0 - 2022-12-07T08:53:44+00:00 - 0.51 + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%8B%A0%EB%85%84 + 2023-10-23T06:28:54+00:00 + 0.64 https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=11%EC%9B%94 - 2022-12-07T08:53:44+00:00 - 0.51 + 2023-10-23T06:28:54+00:00 + 0.64 https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%83%9D%EC%9D%BC - 2022-12-07T08:53:44+00:00 - 0.51 + 2023-10-23T06:28:54+00:00 + 0.64 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EA%B2%BD%EC%A1%B0 + 2023-10-23T06:28:54+00:00 + 0.64 https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EA%B2%B0%ED%98%BC - 2022-12-07T08:53:44+00:00 - 0.51 + 2023-10-23T06:28:54+00:00 + 0.64 https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EB%B6%80%EA%B3%A0 - 2022-12-07T08:53:44+00:00 - 0.51 + 2023-10-23T06:28:54+00:00 + 0.64 https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%9E%A5%EB%A1%80 - 2022-12-07T08:53:44+00:00 - 0.51 + 2023-10-23T06:28:54+00:00 + 0.64 https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%A1%B0%EC%9D%98 - 2022-12-07T08:53:44+00:00 - 0.51 + 2023-10-23T06:28:54+00:00 + 0.64 https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EB%B9%BC%EB%B9%BC%EB%A1%9C%EB%8D%B0%EC%9D%B4 - 2022-12-07T08:53:44+00:00 - 0.51 + 2023-10-23T06:28:54+00:00 + 0.64 https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EA%B0%80%EC%9D%84 - 2022-12-07T08:53:44+00:00 - 0.51 + 2023-10-23T06:28:54+00:00 + 0.64 https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%83%88%ED%95%B4 - 2022-12-07T08:53:44+00:00 - 0.51 + 2023-10-23T06:28:54+00:00 + 0.64 https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%ED%81%AC%EB%A6%AC%EC%8A%A4%EB%A7%88%EC%8A%A4 - 2022-12-07T08:53:44+00:00 - 0.51 + 2023-10-23T06:28:54+00:00 + 0.64 - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%ED%96%89%EC%82%AC - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%A1%B0%EB%AC%B8 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%9B%94%EC%9A%94%EC%9D%BC - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EA%B3%A0%ED%9D%AC - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=1%EC%9B%94 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=10%EC%9B%94 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EB%B3%84%EC%9E%90%EB%A6%AC - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EB%8B%B5%EB%A1%80 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EB%AA%85%EC%A0%88 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%86%A1%EB%85%84%ED%9A%8C - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EA%B0%90%EC%82%AC - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%88%98%EC%9A%94%EC%9D%BC - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EA%B3%84%EC%A0%88 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=3%EC%9B%94 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EA%B0%9C%EC%97%85 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%B4%88%EB%8C%80 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%BD%94%EB%AF%B9 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%9D%91%EC%9B%90 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EA%B8%88%EC%9A%94%EC%9D%BC - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%ED%99%98%EC%A0%88%EA%B8%B0 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=5%EC%9B%94 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%ED%95%A9%EA%B2%A9 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%B6%9C%EC%82%B0 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=7%EC%9B%94 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EB%AA%85%EC%96%B8 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%9D%B8%EC%82%AC - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%9C%A0%EB%A8%B8 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EB%AA%A8%EC%9E%84 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EA%B3%A0%EA%B0%9D%EA%B4%80%EB%A6%AC - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%ED%9A%8C%EA%B0%91 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%9D%BC%EC%9A%94%EC%9D%BC - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=9%EC%9B%94 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%9A%B4%EC%84%B8 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%B6%95%ED%95%98 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EA%B8%B0%EB%85%90%EC%9D%BC - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%86%A1%EB%85%84 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%9C%84%EB%A1%9C - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%ED%99%94%EC%9A%94%EC%9D%BC - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EB%82%A0%EC%94%A8 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=2%EC%9B%94 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%84%A0%EA%B1%B0 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EA%B2%BD%EC%A1%B0%EC%82%AC - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%97%B0%EB%A7%90%EC%97%B0%EC%8B%9C - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EB%8F%99%EC%B0%BD%ED%9A%8C - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%88%98%EB%8A%A5 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EB%AA%A9%EC%9A%94%EC%9D%BC - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%ED%9C%B4%EC%9D%BC - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=4%EC%9B%94 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EB%8F%8C%EC%9E%94%EC%B9%98 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%B9%A0%EC%88%9C - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%A2%8B%EC%9D%80%EA%B8%80 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%A3%BC%EB%A7%90 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%ED%86%A0%EC%9A%94%EC%9D%BC - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%9E%85%EB%8F%99 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=6%EC%9B%94 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%8A%B9%EC%A7%84 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EA%B2%A8%EC%9A%B8 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%ED%99%98%EA%B0%91 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=8%EC%9B%94 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%A2%85%EA%B5%90 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EA%B1%B4%EA%B0%95 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EA%B3%A0%EB%B0%B1 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=12%EC%9B%94 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%8B%A0%EB%85%84 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%84%A4%EB%82%A0 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EA%B2%BD%EC%A1%B0 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=11%EC%9B%94 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%83%9D%EC%9D%BC - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EA%B2%B0%ED%98%BC - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EB%B6%80%EA%B3%A0 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%9E%A5%EB%A1%80 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%A1%B0%EC%9D%98 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EB%B9%BC%EB%B9%BC%EB%A1%9C%EB%8D%B0%EC%9D%B4 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EA%B0%80%EC%9D%84 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%83%88%ED%95%B4 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%ED%81%AC%EB%A6%AC%EC%8A%A4%EB%A7%88%EC%8A%A4 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%86%A1%EB%85%84%ED%9A%8C - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EA%B0%90%EC%82%AC - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%9B%94%EC%9A%94%EC%9D%BC - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%ED%99%98%EC%A0%88%EA%B8%B0 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=1%EC%9B%94 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=10%EC%9B%94 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%ED%88%AC%ED%91%9C - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%ED%99%98%EA%B0%91 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EB%8F%8C%EC%9E%94%EC%B9%98 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%BD%94%EB%AF%B9 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%9D%91%EC%9B%90 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%88%98%EC%9A%94%EC%9D%BC - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%9E%85%EB%8F%99 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=3%EC%9B%94 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EA%B3%A0%ED%9D%AC - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%8A%B9%EC%A7%84 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EB%AA%85%EC%96%B8 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%9D%B8%EC%82%AC - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EA%B8%88%EC%9A%94%EC%9D%BC - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EA%B3%A0%EB%B0%B1 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=5%EC%9B%94 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%ED%96%89%EC%82%AC - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EB%82%A0%EC%94%A8 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=7%EC%9B%94 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%98%88%EB%B0%B0 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%B6%95%ED%95%98 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EB%AA%85%EC%A0%88 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%86%A1%EB%85%84 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%9C%84%EB%A1%9C - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%B1%84%EC%9A%A9 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%ED%9C%B4%EC%9D%BC - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%9D%BC%EC%9A%94%EC%9D%BC - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=9%EC%9B%94 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EB%B3%84%EC%9E%90%EB%A6%AC - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EA%B2%BD%EC%A1%B0%EC%82%AC - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%B4%88%EB%8C%80 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%82%B0%EC%95%85%ED%9A%8C - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%88%98%EB%8A%A5 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%ED%99%94%EC%9A%94%EC%9D%BC - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%97%AC%ED%96%89 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=2%EC%9B%94 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%84%A0%EA%B1%B0 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%ED%9A%8C%EA%B0%91 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%ED%95%A9%EA%B2%A9 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%A2%8B%EC%9D%80%EA%B8%80 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%A3%BC%EB%A7%90 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EB%AA%A9%EC%9A%94%EC%9D%BC - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%9C%A0%EB%A8%B8 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=4%EC%9B%94 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EB%AA%A8%EC%9E%84 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%A1%B0%EC%9D%98 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%A2%85%EA%B5%90 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EA%B1%B4%EA%B0%95 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%ED%86%A0%EC%9A%94%EC%9D%BC - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EA%B8%B0%EB%85%90%EC%9D%BC - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=6%EC%9B%94 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%B9%9C%EB%AA%A9 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EA%B2%A8%EC%9A%B8 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EA%B3%84%EC%A0%88 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=8%EC%9B%94 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%9A%B4%EC%84%B8 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EB%8B%B5%EB%A1%80 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%97%B0%EB%A7%90%EC%97%B0%EC%8B%9C - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=12%EC%9B%94 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%8B%A0%EB%85%84 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%84%A4%EB%82%A0 - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=11%EC%9B%94 - 2022-12-07T08:53:44+00:00 - 0.41 + https://www.munjaon.co.kr/web/pay/PayGuide.do?tabType=2 + 2023-10-23T06:28:54+00:00 + 0.64 https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EA%B2%BD%EC%A1%B0 - 2022-12-07T08:53:44+00:00 - 0.41 + 2023-10-23T06:28:54+00:00 + 0.64 - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%83%9D%EC%9D%BC - 2022-12-07T08:53:44+00:00 - 0.41 + https://www.munjaon.co.kr/publish/publish_adv/adv_template_v1_manuscript_6.html + 2023-10-20T08:32:30+00:00 + 0.64 + + + https://www.munjaon.co.kr/web/cop/bbs/NoticeDetail.do?bbsId=BBSMSTR_000000000762&nttId=171&seCmmnCdId=&frstRegisterId=&viewsYn=&menuNo=&searchBgnDe=&searchEndDe=&pageIndex=1&searchSortCnd=&searchSortOrd=&searchCnd=&searchWrd=&pageUnit=10 + 2023-10-23T06:28:54+00:00 + 0.64 https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EA%B2%B0%ED%98%BC - 2022-12-07T08:53:44+00:00 - 0.41 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EB%B6%80%EA%B3%A0 - 2022-12-07T08:53:44+00:00 - 0.41 + 2023-10-23T06:28:54+00:00 + 0.64 https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%9E%A5%EB%A1%80 - 2022-12-07T08:53:44+00:00 - 0.41 + 2023-10-23T06:28:54+00:00 + 0.64 - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EB%B9%BC%EB%B9%BC%EB%A1%9C%EB%8D%B0%EC%9D%B4 - 2022-12-07T08:53:44+00:00 - 0.41 + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%84%A4%EB%82%A0 + 2023-10-23T06:28:54+00:00 + 0.64 - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EA%B0%80%EC%9D%84 - 2022-12-07T08:53:44+00:00 - 0.41 + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%B6%94%EC%84%9D + 2023-10-23T06:28:54+00:00 + 0.64 - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%83%88%ED%95%B4 - 2022-12-07T08:53:44+00:00 - 0.41 + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%ED%95%9C%EA%B0%80%EC%9C%84 + 2023-10-23T06:28:54+00:00 + 0.64 https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%ED%81%AC%EB%A6%AC%EC%8A%A4%EB%A7%88%EC%8A%A4 - 2022-12-07T08:53:44+00:00 - 0.41 + 2023-10-23T06:28:54+00:00 + 0.64 - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%82%B0%EC%95%85%ED%9A%8C - 2022-12-07T08:53:44+00:00 - 0.41 + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%97%B0%EB%A7%90%EC%97%B0%EC%8B%9C + 2023-10-23T06:28:54+00:00 + 0.64 - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%A1%B0%EB%AC%B8 - 2022-12-07T08:53:44+00:00 - 0.41 + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EA%B0%90%EC%82%AC + 2023-10-23T06:28:54+00:00 + 0.64 - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%B9%A0%EC%88%9C - 2022-12-07T08:53:44+00:00 - 0.41 + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%ED%96%89%EC%82%AC + 2023-10-23T06:28:54+00:00 + 0.64 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EA%B2%A9%EB%A0%A4 + 2023-10-23T06:28:54+00:00 + 0.64 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%83%9D%EC%9D%BC + 2023-10-23T06:28:54+00:00 + 0.64 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%A1%B0%EC%9D%98 + 2023-10-23T06:28:54+00:00 + 0.64 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EB%AA%85%EC%A0%88 + 2023-10-23T06:28:54+00:00 + 0.64 + + + https://www.munjaon.co.kr/publish/publish_text/send_text.html + 2023-09-06T08:33:28+00:00 + 0.64 + + + https://www.munjaon.co.kr/web/cop/bbs/NoticeDetail.do?bbsId=BBSMSTR_000000000762&nttId=162&seCmmnCdId=&frstRegisterId=&viewsYn=&menuNo=&searchBgnDe=&searchEndDe=&pageIndex=1&searchSortCnd=&searchSortOrd=&searchCnd=&searchWrd=&pageUnit=10 + 2023-10-23T06:28:54+00:00 + 0.64 + + + https://www.munjaon.co.kr/publish/publish_text/text_send.html + 2023-09-06T08:33:28+00:00 + 0.64 + + + https://www.munjaon.co.kr/web/cop/bbs/NoticeDetail.do?bbsId=BBSMSTR_000000000762&nttId=176&seCmmnCdId=&frstRegisterId=&viewsYn=&menuNo=&searchBgnDe=&searchEndDe=&pageIndex=1&searchSortCnd=&searchSortOrd=&searchCnd=&searchWrd=&pageUnit=10 + 2023-10-23T06:28:54+00:00 + 0.64 + + + https://www.munjaon.co.kr/web/cop/bbs/NoticeDetail.do?bbsId=BBSMSTR_000000000762&nttId=173&seCmmnCdId=&frstRegisterId=&viewsYn=&menuNo=&searchBgnDe=&searchEndDe=&pageIndex=1&searchSortCnd=&searchSortOrd=&searchCnd=&searchWrd=&pageUnit=10 + 2023-10-23T06:28:54+00:00 + 0.64 + + + https://www.munjaon.co.kr/publish/publish_adv/adv_template_v1_manuscript_2.html + 2023-10-20T08:32:30+00:00 + 0.64 + + + https://www.munjaon.co.kr/publish/publish_text/multi_text.html + 2023-09-06T08:33:28+00:00 + 0.64 + + + https://www.munjaon.co.kr/publish/publish_adv/adv_template_v1_manuscript_3.html + 2023-10-20T08:32:30+00:00 + 0.64 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EB%B4%84 + 2023-10-23T06:28:54+00:00 + 0.64 + + + https://www.munjaon.co.kr/publish/publish_adv/adv_template_v1_manuscript_4.html + 2023-10-20T08:32:30+00:00 + 0.64 + + + https://www.munjaon.co.kr/publish/publish_adv/adv_template_v1_manuscript_5.html + 2023-10-20T08:32:30+00:00 + 0.64 + + + https://www.munjaon.co.kr/publish/spam_prevention_5.pdf + 2023-06-12T08:56:26+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%ED%99%94%EC%9A%94%EC%9D%BC + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%97%AC%ED%96%89 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=2%EC%9B%94 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%82%B0%EC%95%85%ED%9A%8C + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%88%98%EB%8A%A5 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%84%A0%EA%B1%B0 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%ED%9A%8C%EA%B0%91 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%ED%95%A9%EA%B2%A9 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EB%AA%A9%EC%9A%94%EC%9D%BC + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%9C%A0%EB%A8%B8 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=4%EC%9B%94 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%A2%8B%EC%9D%80%EA%B8%80 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%A3%BC%EB%A7%90 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EB%AA%A8%EC%9E%84 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%97%AC%EB%A6%84 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EA%B1%B4%EA%B0%95 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%ED%86%A0%EC%9A%94%EC%9D%BC + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EA%B8%B0%EB%85%90%EC%9D%BC + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=6%EC%9B%94 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%A2%85%EA%B5%90 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EA%B2%A8%EC%9A%B8 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EA%B3%84%EC%A0%88 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%B9%9C%EB%AA%A9 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%B6%94%EC%84%9D + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%9A%B4%EC%84%B8 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EB%8B%B5%EB%A1%80 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=8%EC%9B%94 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%9B%94%EC%9A%94%EC%9D%BC + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%ED%99%98%EC%A0%88%EA%B8%B0 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=1%EC%9B%94 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%86%A1%EB%85%84%ED%9A%8C + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%ED%88%AC%ED%91%9C + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%ED%99%98%EA%B0%91 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EB%8F%8C%EC%9E%94%EC%B9%98 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=10%EC%9B%94 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%88%98%EC%9A%94%EC%9D%BC + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%9E%85%EB%8F%99 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=3%EC%9B%94 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%BD%94%EB%AF%B9 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%9D%91%EC%9B%90 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EA%B3%A0%ED%9D%AC + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%8A%B9%EC%A7%84 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%ED%99%94%EC%9D%B4%ED%8A%B8%EB%8D%B0%EC%9D%B4 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EA%B8%88%EC%9A%94%EC%9D%BC + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EA%B3%A0%EB%B0%B1 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=5%EC%9B%94 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EB%AA%85%EC%96%B8 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%9D%B8%EC%82%AC + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EB%82%A0%EC%94%A8 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%ED%96%89%EC%82%AC + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EB%AC%B4%EB%8D%94%EC%9C%84 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%B6%95%ED%95%98 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EB%AA%85%EC%A0%88 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=7%EC%9B%94 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%98%88%EB%B0%B0 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%B1%84%EC%9A%A9 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%ED%9C%B4%EC%9D%BC + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%9D%BC%EC%9A%94%EC%9D%BC + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%86%A1%EB%85%84 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%9C%84%EB%A1%9C + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EB%B3%84%EC%9E%90%EB%A6%AC + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EA%B2%BD%EC%A1%B0%EC%82%AC + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%B4%88%EB%8C%80 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=9%EC%9B%94 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=12%EC%9B%94 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%8B%A0%EB%85%84 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=11%EC%9B%94 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EB%B6%80%EA%B3%A0 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EB%B9%BC%EB%B9%BC%EB%A1%9C%EB%8D%B0%EC%9D%B4 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EA%B0%80%EC%9D%84 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%83%88%ED%95%B4 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%ED%99%94%EC%9A%94%EC%9D%BC + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EB%82%A0%EC%94%A8 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=2%EC%9B%94 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%86%A1%EB%85%84 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%9C%84%EB%A1%9C + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%84%A0%EA%B1%B0 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EA%B2%BD%EC%A1%B0%EC%82%AC + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%97%B0%EB%A7%90%EC%97%B0%EC%8B%9C + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EB%B4%84 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EB%AA%A9%EC%9A%94%EC%9D%BC + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%ED%9C%B4%EC%9D%BC + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=4%EC%9B%94 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EB%8F%99%EC%B0%BD%ED%9A%8C + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%88%98%EB%8A%A5 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%B9%A0%EC%88%9C + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EB%8F%8C%EC%9E%94%EC%B9%98 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%97%AC%EB%A6%84 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%A3%BC%EB%A7%90 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%ED%86%A0%EC%9A%94%EC%9D%BC + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%9E%85%EB%8F%99 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=6%EC%9B%94 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%A2%8B%EC%9D%80%EA%B8%80 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EA%B2%A8%EC%9A%B8 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%ED%99%98%EA%B0%91 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%8A%B9%EC%A7%84 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%A2%85%EA%B5%90 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EA%B1%B4%EA%B0%95 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EA%B3%A0%EB%B0%B1 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=8%EC%9B%94 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%9B%94%EC%9A%94%EC%9D%BC + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EA%B3%A0%ED%9D%AC + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=1%EC%9B%94 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%A1%B0%EB%AC%B8 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%95%88%EB%82%B4 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EB%B3%84%EC%9E%90%EB%A6%AC + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EB%8B%B5%EB%A1%80 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=10%EC%9B%94 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%88%98%EC%9A%94%EC%9D%BC + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EA%B3%84%EC%A0%88 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=3%EC%9B%94 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%86%A1%EB%85%84%ED%9A%8C + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EA%B0%90%EC%82%AC + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EA%B0%9C%EC%97%85 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%B4%88%EB%8C%80 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%ED%99%94%EC%9D%B4%ED%8A%B8%EB%8D%B0%EC%9D%B4 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EA%B8%88%EC%9A%94%EC%9D%BC + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%ED%99%98%EC%A0%88%EA%B8%B0 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=5%EC%9B%94 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%BD%94%EB%AF%B9 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%9D%91%EC%9B%90 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%B6%9C%EC%82%B0 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%ED%95%A9%EA%B2%A9 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EB%AC%B4%EB%8D%94%EC%9C%84 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%9D%B8%EC%82%AC + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%9C%A0%EB%A8%B8 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=7%EC%9B%94 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EB%AA%85%EC%96%B8 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EA%B3%A0%EA%B0%9D%EA%B4%80%EB%A6%AC + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%ED%9A%8C%EA%B0%91 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%9D%BC%EC%9A%94%EC%9D%BC + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EB%AA%A8%EC%9E%84 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EA%B2%A9%EB%A0%A4 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%9A%B4%EC%84%B8 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%B6%95%ED%95%98 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EA%B8%B0%EB%85%90%EC%9D%BC + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=9%EC%9B%94 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=12%EC%9B%94 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%84%A4%EB%82%A0 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%8B%A0%EB%85%84 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=11%EC%9B%94 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%83%9D%EC%9D%BC + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EA%B2%BD%EC%A1%B0 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EA%B2%B0%ED%98%BC + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EB%B6%80%EA%B3%A0 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%A1%B0%EC%9D%98 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%9E%A5%EB%A1%80 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EB%B9%BC%EB%B9%BC%EB%A1%9C%EB%8D%B0%EC%9D%B4 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EA%B0%80%EC%9D%84 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%83%88%ED%95%B4 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%ED%81%AC%EB%A6%AC%EC%8A%A4%EB%A7%88%EC%8A%A4 + 2023-10-23T06:28:54+00:00 + 0.51 https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%B6%9C%EC%82%B0 - 2022-12-07T08:53:44+00:00 - 0.41 + 2023-10-23T06:28:54+00:00 + 0.51 https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%ED%88%AC%ED%91%9C - 2022-12-07T08:53:44+00:00 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%82%B0%EC%95%85%ED%9A%8C + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%A1%B0%EB%AC%B8 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%B9%A0%EC%88%9C + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%ED%95%9C%EA%B0%80%EC%9C%84 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%ED%95%9C%EA%B0%80%EC%9C%84 + 2023-10-23T06:28:54+00:00 + 0.51 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%97%AC%ED%96%89 + 2023-10-23T06:28:54+00:00 + 0.41 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%97%AC%ED%96%89 + 2023-10-23T06:28:54+00:00 + 0.41 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%B9%9C%EB%AA%A9 + 2023-10-23T06:28:54+00:00 + 0.41 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%B9%9C%EB%AA%A9 + 2023-10-23T06:28:54+00:00 0.41 https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%86%A1%EB%85%84%ED%9A%8C - 2022-12-07T08:53:44+00:00 - 0.33 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EA%B0%9C%EC%97%85 - 2022-12-07T08:53:44+00:00 - 0.33 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EA%B0%9C%EC%97%85 - 2022-12-07T08:53:44+00:00 - 0.33 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EA%B3%A0%EA%B0%9D%EA%B4%80%EB%A6%AC - 2022-12-07T08:53:44+00:00 - 0.33 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EA%B3%A0%EA%B0%9D%EA%B4%80%EB%A6%AC - 2022-12-07T08:53:44+00:00 - 0.33 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%86%A1%EB%85%84 - 2022-12-07T08:53:44+00:00 - 0.33 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EB%8F%99%EC%B0%BD%ED%9A%8C - 2022-12-07T08:53:44+00:00 - 0.33 - - - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EB%8F%99%EC%B0%BD%ED%9A%8C - 2022-12-07T08:53:44+00:00 - 0.33 + 2023-10-23T06:28:54+00:00 + 0.41 https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%98%88%EB%B0%B0 - 2022-12-07T08:53:44+00:00 - 0.33 + 2023-10-23T06:28:54+00:00 + 0.41 https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%98%88%EB%B0%B0 - 2022-12-07T08:53:44+00:00 - 0.33 + 2023-10-23T06:28:54+00:00 + 0.41 https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%B1%84%EC%9A%A9 - 2022-12-07T08:53:44+00:00 - 0.33 + 2023-10-23T06:28:54+00:00 + 0.41 https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%B1%84%EC%9A%A9 - 2022-12-07T08:53:44+00:00 + 2023-10-23T06:28:54+00:00 + 0.41 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%86%A1%EB%85%84 + 2023-10-23T06:28:54+00:00 + 0.41 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EB%8F%99%EC%B0%BD%ED%9A%8C + 2023-10-23T06:28:54+00:00 + 0.41 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EB%8F%99%EC%B0%BD%ED%9A%8C + 2023-10-23T06:28:54+00:00 + 0.41 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%95%88%EB%82%B4 + 2023-10-23T06:28:54+00:00 + 0.41 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%95%88%EB%82%B4 + 2023-10-23T06:28:54+00:00 + 0.41 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EA%B0%9C%EC%97%85 + 2023-10-23T06:28:54+00:00 + 0.41 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EA%B0%9C%EC%97%85 + 2023-10-23T06:28:54+00:00 + 0.41 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EA%B3%A0%EA%B0%9D%EA%B4%80%EB%A6%AC + 2023-10-23T06:28:54+00:00 + 0.41 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EA%B3%A0%EA%B0%9D%EA%B4%80%EB%A6%AC + 2023-10-23T06:28:54+00:00 + 0.41 + + + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=한글날 + 2023-10-23T06:28:54+00:00 0.33 - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%97%AC%ED%96%89 - 2022-12-07T08:53:44+00:00 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=1월 + 2023-10-23T06:28:54+00:00 0.33 - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%97%AC%ED%96%89 - 2022-12-07T08:53:44+00:00 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=2월 + 2023-10-23T06:28:54+00:00 0.33 - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%B9%9C%EB%AA%A9 - 2022-12-07T08:53:44+00:00 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=3월 + 2023-10-23T06:28:54+00:00 0.33 - https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%B9%9C%EB%AA%A9 - 2022-12-07T08:53:44+00:00 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=4월 + 2023-10-23T06:28:54+00:00 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=한글날 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=5월 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=1월 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=6월 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=2월 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=7월 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=3월 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=8월 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=4월 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=9월 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=5월 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=10월 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=6월 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=11월 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=7월 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=12월 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=8월 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=날씨 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=9월 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=계절 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=10월 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=안부 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=11월 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=봄 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=12월 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=여름 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=날씨 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=가을 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=계절 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=겨울 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=안부 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=개천절 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=봄 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=휴일 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=여름 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=인사 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=가을 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=추분 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=겨울 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=여행 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=개천절 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=환절기 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=휴일 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=연말 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=인사 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=입동 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=추분 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=소한 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=여행 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=대한 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=환절기 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=유머 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=연말 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=동지 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=입동 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=동짓날 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=소한 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=축제 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=대한 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=고백 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=유머 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=벚꽃 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=동지 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=기념일 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=동짓날 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=할로윈 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=축제 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=HALLOWWEEN + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=고백 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=빼빼로데이 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=벚꽃 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=크리스마스 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=기념일 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=성탄절 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=할로윈 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=XMAS + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=HALLOWWEEN -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=삼일절 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=빼빼로데이 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=삼겹살데이 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=크리스마스 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=만우절 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=성탄절 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=근로자의날 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=XMAS -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=어린이날 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=삼일절 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=어버이날 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=삼겹살데이 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=감사 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=만우절 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=로즈데이 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=근로자의날 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=스승의날 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=어린이날 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=성년의날 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=어버이날 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=현충일 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=감사 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=호국보훈의달 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=로즈데이 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=명절 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=스승의날 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=연시 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=성년의날 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=연말연시 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=현충일 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=설날 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=호국보훈의달 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=새해 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=명절 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=근하신년 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=연시 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=대보름 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=연말연시 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=정월대보름 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=설날 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=단오 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=새해 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=인사말 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=근하신년 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=결혼 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=대보름 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=초대 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=정월대보름 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=결혼초대 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=단오 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=축하 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=인사말 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=결혼축하 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=결혼 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=결혼감사 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=초대 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=돌잔치 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=결혼초대 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=돌잔치초대 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=축하 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=돌잔치축하 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=결혼축하 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=돌잔치감사 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=결혼감사 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=생일 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=돌잔치 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=경조사 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=돌잔치초대 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=생신 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=돌잔치축하 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=생일축하 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=돌잔치감사 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=환갑 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=생일 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=환갑초대 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=경조사 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=회갑 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=생신 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=회갑초대 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=생일축하 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=주갑 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=환갑 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=주갑초대 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=환갑초대 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=고희 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=회갑 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=고희초대 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=회갑초대 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=부고 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=주갑 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=장례 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=주갑초대 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=조의 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=고희 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=애도 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=고희초대 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=조문 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=부고 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=답례 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=장례 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=합격 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=조의 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=합격축하 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=애도 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=승진 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=조문 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=승진축하 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=답례 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=격려 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=합격 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=위로 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=합격축하 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=응원 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=승진 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=수능 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=승진축하 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=모임 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=격려 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=행사 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=위로 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=친목 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=응원 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=송년 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=수능 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=송년회 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=모임 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=동창모임 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=행사 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=산악회 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=친목 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=워크숍 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=송년 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=야유회 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=송년회 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=라운딩 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=동창모임 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=동호회 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=산악회 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=감성 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=워크숍 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=코믹 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=야유회 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=연락 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=라운딩 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=영화 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=동호회 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=경사 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=감성 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=좋은글 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=코믹 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=명언 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=연락 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=속담 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=영화 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=종교 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=경사 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=석가탄신일 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=좋은글 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=부활절 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=명언 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=예배 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=속담 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=운세 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=종교 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=별자리 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=석가탄신일 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=선거 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=부활절 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=투표 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=예배 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=사전투표 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=운세 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=복날 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=별자리 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=광복절 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=선거 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=추석 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=투표 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=한가위 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=사전투표 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=중추절 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=복날 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=한글날 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=광복절 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=1월 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=추석 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=2월 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=한가위 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=3월 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=중추절 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=4월 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=한글날 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=5월 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=1월 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=6월 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=2월 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=7월 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=3월 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=8월 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=4월 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=9월 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=5월 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=10월 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=6월 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=11월 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=7월 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=12월 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=8월 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=날씨 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=9월 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=계절 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=10월 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=안부 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=11월 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=봄 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=12월 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=여름 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=날씨 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=가을 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=계절 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=겨울 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=안부 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=개천절 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=봄 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=휴일 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=여름 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=인사 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=가을 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=추분 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=겨울 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=여행 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=개천절 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=환절기 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=휴일 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=연말 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=인사 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=입동 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=추분 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=소한 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=여행 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=대한 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=환절기 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=유머 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=연말 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=동지 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=입동 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=동짓날 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=소한 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=축제 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=대한 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=고백 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=유머 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=벚꽃 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=동지 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=기념일 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=동짓날 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=할로윈 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=축제 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=HALLOWWEEN + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=고백 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=빼빼로데이 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=벚꽃 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=크리스마스 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=기념일 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=성탄절 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=할로윈 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=XMAS + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=HALLOWWEEN -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=삼일절 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=빼빼로데이 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=삼겹살데이 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=크리스마스 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=만우절 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=성탄절 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=근로자의날 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=XMAS -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=어린이날 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=삼일절 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=어버이날 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=삼겹살데이 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=감사 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=만우절 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=로즈데이 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=근로자의날 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=스승의날 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=어린이날 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=성년의날 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=어버이날 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=현충일 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=감사 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=호국보훈의달 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=로즈데이 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=명절 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=스승의날 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=연시 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=성년의날 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=연말연시 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=현충일 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=설날 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=호국보훈의달 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=새해 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=명절 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=근하신년 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=연시 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=대보름 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=연말연시 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=정월대보름 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=설날 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=단오 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=새해 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=인사말 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=근하신년 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=결혼 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=대보름 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=초대 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=정월대보름 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=결혼초대 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=단오 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=축하 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=인사말 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=결혼축하 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=결혼 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=결혼감사 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=초대 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=돌잔치 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=결혼초대 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=돌잔치초대 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=축하 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=돌잔치축하 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=결혼축하 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=돌잔치감사 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=결혼감사 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=생일 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=돌잔치 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=경조사 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=돌잔치초대 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=생신 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=돌잔치축하 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=생일축하 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=돌잔치감사 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=환갑 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=생일 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=환갑초대 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=경조사 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=회갑 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=생신 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=회갑초대 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=생일축하 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=주갑 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=환갑 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=주갑초대 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=환갑초대 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=고희 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=회갑 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=고희초대 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=회갑초대 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=부고 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=주갑 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=장례 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=주갑초대 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=조의 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=고희 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=애도 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=고희초대 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=조문 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=부고 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=답례 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=장례 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=합격 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=조의 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=합격축하 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=애도 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=승진 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=조문 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=승진축하 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=답례 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=격려 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=합격 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=위로 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=합격축하 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=응원 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=승진 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=수능 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=승진축하 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=모임 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=격려 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=행사 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=위로 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=친목 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=응원 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=송년 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=수능 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=송년회 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=모임 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=동창모임 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=행사 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=산악회 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=친목 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=워크숍 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=송년 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=야유회 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=송년회 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=라운딩 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=동창모임 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=동호회 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=산악회 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=감성 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=워크숍 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=코믹 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=야유회 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=연락 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=라운딩 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=영화 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=동호회 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=경사 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=감성 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=좋은글 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=코믹 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=명언 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=연락 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=속담 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=영화 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=종교 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=경사 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=석가탄신일 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=좋은글 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=부활절 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=명언 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=예배 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=속담 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=운세 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=종교 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=별자리 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=석가탄신일 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=선거 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=부활절 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=투표 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=예배 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=사전투표 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=운세 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=복날 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=별자리 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=광복절 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=선거 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=추석 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=투표 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=한가위 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=사전투표 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=중추절 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=복날 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=월요일 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=광복절 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=월요일 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=추석 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=화요일 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=한가위 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=화요일 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=중추절 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=수요일 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=월요일 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=수요일 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=월요일 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=목요일 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=화요일 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=목요일 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=화요일 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=금요일 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=수요일 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=금요일 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=수요일 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=토요일 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=목요일 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=토요일 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=목요일 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=일요일 + 2023-10-23T06:28:54+00:00 + 0.33 -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=금요일 -2022-09-29T06:32:20+00:00 -0.33 - - -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=금요일 -2022-09-29T06:32:20+00:00 -0.33 - - -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=토요일 -2022-09-29T06:32:20+00:00 -0.33 - - -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=토요일 -2022-09-29T06:32:20+00:00 -0.33 - - -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=일요일 -2022-09-29T06:32:20+00:00 -0.33 - - -https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=일요일 -2022-09-29T06:32:20+00:00 -0.33 + https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=일요일 + 2023-10-23T06:28:54+00:00 + 0.33 \ No newline at end of file
후보자 등록을 위한 성명, 주민등록번호, 주소를 입력하는 표
직위
휴대폰 @@ -3589,7 +3594,7 @@ function getMjMsgSentListAll(pageNo) {
  • - 90byte 초과 시, 자동으로 장문으로 전환됩니다. 장문 문자는 최대 2,000byte까지만 작성할 수 있습니다.
  • - 그림문자 1건당 최대 3장까지 이미지 첨부 가능 [권장 사이즈 : 640 x 960픽셀 / 최대용량 : 10MB 이내]
  • -
  • - 광고성 메시지는 반드시 아래 유의사항을 사전 확인 후 발송해 주시기 바랍니다.
  • +
  • - 선거문자는 반드시 발송규정을 사전 확인 후 발송해 주시기 바랍니다.
@@ -3828,6 +3833,9 @@ function getMjMsgSentListAll(pageNo) { + + + @@ -4284,6 +4292,10 @@ function getMjMsgSentListAll(pageNo) { - + @@ -545,10 +545,10 @@ function getKisaSignSave(kisaIds) {
-
diff --git a/src/main/webapp/WEB-INF/jsp/web/user/mberCompanyInfoChange.jsp b/src/main/webapp/WEB-INF/jsp/web/user/mberCompanyInfoChange.jsp index 671abd77..c776c10a 100644 --- a/src/main/webapp/WEB-INF/jsp/web/user/mberCompanyInfoChange.jsp +++ b/src/main/webapp/WEB-INF/jsp/web/user/mberCompanyInfoChange.jsp @@ -395,11 +395,13 @@ function updateCmpUserRe(){ var form = document.updateCmpUserInfoForm; - if($("#atFileBasicWrite").val() == ''){ + if($("#atFileBasicWrite").val() == ''){ alert("사업자등록증을 첨부해주세요.") return false; } + form.bizNo.value = $("#bizNo").val().replaceAll('-',''); + if(doubleSubmitFlag3){ alert("이미 재등록하셨습니다."); return false; @@ -435,6 +437,39 @@ function updateCmpUserRe(){ } } + + +//기업정보 변경 재등록 취소 처리 +function updateCmpUserReCancel(cmpHstId){ + + if(!confirm("기업회원 변경을 취소하시겠습니까?")){ + return false; + } + + $.ajax({ + type : 'POST' + ,url : "" + ,async:false + ,data : {"cmpHstId":cmpHstId} + ,dataType:'json' + ,success : function(returnData, status){ + if(returnData.result == "success") { + alert("기업회원 정보변경 재등록 취소 요청이 처리되었습니다."); + location.href='/web/user/mberInfoIndex.do'; //마이페이지로 이동 + } else{ + alert(returnData.message); + return; + } + } + ,error : function(request , status, error){ + alert("기업회원 정보변경 취소요청 처리 중 오류가 발생하였습니다."); + console.log("code:"+request.status+"\n"+"message:"+request.responseText+"\n"+"error:"+error); + } + }); + +} + + //파일다운로드 function fn_egov_downFile(atchFileId, fileSn){ window.open(""); @@ -495,8 +530,6 @@ function changeValueWork(obj){ - -
@@ -535,7 +568,6 @@ function changeValueWork(obj){
- diff --git a/src/main/webapp/WEB-INF/jsp/web/user/mberSecession.jsp b/src/main/webapp/WEB-INF/jsp/web/user/mberSecession.jsp index 97f7f84f..e023f648 100644 --- a/src/main/webapp/WEB-INF/jsp/web/user/mberSecession.jsp +++ b/src/main/webapp/WEB-INF/jsp/web/user/mberSecession.jsp @@ -115,7 +115,7 @@ function openMberSecessionInfo(key){ 본인 확인 후 회원탈퇴 신청이 가능합니다.

-
+ <%--

등록한 휴대폰 번호로 SMS 인증

회원정보에 등록한 휴대폰 번호로 SMS 인증 @@ -132,7 +132,7 @@ function openMberSecessionInfo(key){
-
+
--%>

본인 명의 휴대폰 번호로 본인인증

diff --git a/src/main/webapp/publish/css/content.css b/src/main/webapp/publish/css/content.css index 8e6e4847..b28f48ca 100644 --- a/src/main/webapp/publish/css/content.css +++ b/src/main/webapp/publish/css/content.css @@ -18,6 +18,13 @@ .tRight {text-align: right !important;} .tLeft {text-align: left !important;} +.btn_blue.fill{background:#002c9a;color:#fff;} +.btn_gray.fill{background:#6a6c72;color:#fff;} +.btn_yellow.fill{background:#fbc72b;color:#222;} + +.btn_blue.border{border:1px solid #002c9a;color:#002c9a;} +.btn_gray.border{border:1px solid #6a6c72;color:#666;} + .w100 {width: 100%;} .h100 {height: 100%;} @@ -588,6 +595,33 @@ button.check_validity:hover {border: 1px solid #a3a3a3;box-shadow: 0px 0px 5px .sub .heading i.election_btn2 {background-image: url(/publish/images/content/receipt_icon.png); width: 18px; height: 19px; margin: 0 3px 2px 0;} .sub .heading i.election_btn3 {background-image: url(/publish/images/content/print_icon2.png); width: 20px; height: 19px; margin: 0 3px 2px 0;} +/* 2023/12/01 선거문자 - 20건문자(수동문자)전송 추가 */ +.sub .election .receipt_number_table_wrap .listType{height:346px;} +.sub .election .receipt_number_table_wrap .receipt_number_table tbody{height:calc(100% - 38px);} +.sub .election .receipt_number_table_wrap .receipt_number_table thead tr,.sub .election .receipt_number_table_wrap .receipt_number_table tbody tr{border-top:0;} +.sub .election .receipt_number_table_wrap .receipt_number_table th,.sub .election .receipt_number_table_wrap .receipt_number_table td{position:relative;} +.sub .election .receipt_number_table_wrap .receipt_number_table th::after,.sub .election .receipt_number_table_wrap .receipt_number_table td::after{position:absolute;content:"";width:1px;height:16px;background:#d4d4d4;right:0;top:50%;transform:translateY(-50%);} +.sub .election .receipt_number_table_wrap .receipt_number_table th:last-child::after,.sub .election .receipt_number_table_wrap .receipt_number_table td:last-child::after{display:none;} +.sub .election .receipt_number_table_wrap .receipt_number_table{width:100%;text-align:center;table-layout:fixed;} +.sub .election .receipt_number_table_wrap .receipt_number_table thead tr{border-bottom:1px solid #a2a2a2;} +.sub .election .receipt_number_table_wrap .receipt_number_table thead tr th{height:38px;text-align:center;background:#e8e8e8;} +.sub .election .receipt_number_table_wrap .receipt_number_table tbody tr td{height:29px;background:transparent;border:0;border-bottom:1px solid #e5e6e7;padding:0 3px;} +.sub .election .receipt_number_table_wrap .receipt_number_table tbody tr td input{width:60px;} +.sub .election .receipt_number_table_wrap .receipt_number_table tbody tr td label{display:inline-block;width:calc(100% - 64px);} +.sub .election .receipt_number_table_wrap .put_right .receipt_info{width:calc(100% - 10px);height:calc(100% - 143px);background:#f2f2f2;margin:10px 0 0 10px;padding:10px;border-radius:5px;box-sizing:border-box;} +.sub .election .receipt_number_table_wrap .put_right .receipt_info dt{font-size:15px;font-weight:500;margin:0 0 8px 0;} +.sub .election .receipt_number_table_wrap .put_right .receipt_info dd{font-size:14px;text-align:right;background:#fff;margin:0 0 8px 0;padding:3px 6px;border-radius:5px;} +.sub .election .receipt_number_table_wrap .put_right .receipt_info dd:last-child{margin:0 0 0 0;} +.sub .election .receipt_number_table_wrap .put_right .receipt_info dd b{font-size:16px;font-weight:500;} +.sub .election .list_bottom{display:flex;width:74%;align-items:center;justify-content:space-between;padding:0 0 10px 0;} +.sub .election .list_bottom .pagination{display:inline-flex;width:auto;margin:0;justify-content:flex-start;} +.sub .election .list_bottom .pagination button{height:32px;} +.sub .election .list_bottom .list_bottom_right{float:none;display:inline-flex;justify-content:flex-end;} +.sub .election .list_bottom .list_bottom_right button{height:32px;padding:0 13px;font-weight:400 !important;} +.sub .election .list_bottom .list_bottom_right>button{margin:0 4px 0 0;} +.sub .election .list_bottom .list_bottom_right .btn_yellow{display:inline-flex;align-items:center;padding:0 10px;} +.sub .election .list_bottom .list_bottom_right .btn_yellow i.qmMark{background:url(/publish/images/content/qmIcon_black.png) no-repeat center;margin:0 0 0 2px;} + /* send_bottom */ .send_bottom {position: relative;margin: 60px 0 0 0;} .send_bottom .bottom_content {background-color: #fff;padding: 40px;border-radius: 10px;} @@ -1994,6 +2028,12 @@ button.check_validity:hover {border: 1px solid #a3a3a3;box-shadow: 0px 0px 5px /*발송결과_select버튼*/ .select_btnWrap .btn_right .search .send_text{width: 170px;} + + /* 선거문자 */ + .election .tType1 tbody tr td.putText .receipt_number_table_wrap .put_right{max-width:170px;} + .sub .election .receipt_number_table_wrap+.list_bottom .list_bottom_right button{font-size:14px;letter-spacing:-1px;} + .sub .election .receipt_number_table_wrap+.list_bottom .list_bottom_right .btn_gray.fill{padding:0 5px;} + .sub .election .receipt_number_table_wrap+.list_bottom .list_bottom_right .btn_yellow.fill{padding:0 3px;} } @media only screen and (max-width:1480px){ @@ -2090,6 +2130,11 @@ button.check_validity:hover {border: 1px solid #a3a3a3;box-shadow: 0px 0px 5px /*발송결과_select버튼*/ .rev_admin_cont .select_btnWrap .btn_right .select_all_btn{width: 143px;} .rev_admin_cont .select_btnWrap .btn_right .select_btn{width: 105px;} + + /* 선거문자 */ + .sub .election .list_bottom{width:72.5%;} + .sub .election .receipt_number_table_wrap+.list_bottom .list_bottom_right button{letter-spacing:-1.4px;} + .sub .election .list_bottom .pagination button{width:30px;height:30px;} } @media only screen and (max-width:1380px){ diff --git a/src/main/webapp/publish/css/mem.css b/src/main/webapp/publish/css/mem.css index 1626ac75..a3250e03 100644 --- a/src/main/webapp/publish/css/mem.css +++ b/src/main/webapp/publish/css/mem.css @@ -590,8 +590,8 @@ input[type="password"].list_inputType1 {padding: 0px;background-color: transpare /* ȸ��Ż�� */ -.self_identfy_wrap {display: flex; justify-content: space-between;} -.self_identfy_wrap>div {width: calc(100%/2 - 15px); height: 390px; border: 3px solid #dddddd; border-radius: 5px; display: table; text-align: center;} +.self_identfy_wrap {display: flex; justify-content: center;} +.self_identfy_wrap>div {width: 64%; height: 390px; border: 3px solid #dddddd; border-radius: 5px; display: table; text-align: center;} .self_identfy_wrap p {font-size: 24px; font-weight: 500;} .self_identfy_wrap span {font-size: 17px; font-weight: 300; color: #555; margin: 12px 0 22px 0; display: inline-block; line-height: 1.5;} .self_identfy_wrap .indenfy_btn {width: 325px; height: 50px; border-radius: 5px; background-color: #002c9a; color: #fff; font-size: 18px;} diff --git a/src/main/webapp/publish/guide_2022.html b/src/main/webapp/publish/guide_2022.html index 35fccb6d..7bf04e8f 100644 --- a/src/main/webapp/publish/guide_2022.html +++ b/src/main/webapp/publish/guide_2022.html @@ -18,6 +18,7 @@
    +
  • sub_election_2023.html선거문자
  • send_text.html문자보내기
  • text_send.html문자발송
  • multi_text.html단체문자
  • diff --git a/src/main/webapp/publish/images/content/qmIcon_black.png b/src/main/webapp/publish/images/content/qmIcon_black.png new file mode 100644 index 00000000..ee452c98 Binary files /dev/null and b/src/main/webapp/publish/images/content/qmIcon_black.png differ diff --git a/src/main/webapp/publish/js/content.js b/src/main/webapp/publish/js/content.js index d17c0552..3cf96035 100644 --- a/src/main/webapp/publish/js/content.js +++ b/src/main/webapp/publish/js/content.js @@ -379,7 +379,14 @@ $(document).ready(function () { // LayerPopup.removeClass("active"); // } // }); - + + //선거문자 1명씩 선택 ? 호버 시 팝업 + $(".btn_check_one .qmMark").mouseover(function(){ + $(this).parents(".btnType").next(".send_hover_cont").addClass("on"); + }) + $(".btn_check_one .qmMark").mouseleave(function(){ + $(this).parents(".btnType").next(".send_hover_cont").removeClass("on"); + }) //문자발송 오류검사 ? 호버 시 팝업 $(".test_qm").mouseover(function(){ diff --git a/src/main/webapp/publish/js/publish.js b/src/main/webapp/publish/js/publish.js new file mode 100644 index 00000000..618d79e6 --- /dev/null +++ b/src/main/webapp/publish/js/publish.js @@ -0,0 +1,37 @@ + +// 마우스 길게 누르는 function +var onlongclick = function ($target, time, callback) { + $($target).on("mousedown", function () { + const timer = setTimeout(callback, time); + $($target).on("mouseup", function () { + clearTimeout(timer); + }); + }); +} + + +var publishCommon = { + count: 0, + longMousePressCheck: function (checkTarget, checkTime) { + // checkTarget → 체크박스([name='']) / checkTime → 몇초 간격으로 체크 될지 + var checkLength = checkTarget.length; // 체크박스 몇개인지 + var cnt = 0; // 몇개 체크됐는지 + var checkEvent = setInterval(function () { + if (this.count == 0) {} + else if (cnt >= checkLength) { + clearInterval(checkEvent); // 자동체크 끝. + } + $(checkTarget[cnt]).prop('checked', true); // 체크박스 체크. + cnt++; + }, checkTime); + }, + clickCheck: function (checkTarget) { + // 한번 클릭 했을 때 체크, checkTarget → 체크박스([name='']) + if (checkTarget.length < this.count) { + // 체크 다하면 더이상 작동 x. + return false; + } + $(checkTarget[this.count]).prop('checked', true); // 체크박스 체크 + this.count++; + } +} diff --git a/src/main/webapp/publish/publish_adv/adv_template_v1_230918.html b/src/main/webapp/publish/publish_adv/adv_template_v1_230918.html index e6bf22e1..4e964b10 100644 --- a/src/main/webapp/publish/publish_adv/adv_template_v1_230918.html +++ b/src/main/webapp/publish/publish_adv/adv_template_v1_230918.html @@ -10,7 +10,7 @@ - + diff --git a/src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_10.html b/src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_10.html new file mode 100644 index 00000000..be11be22 --- /dev/null +++ b/src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_10.html @@ -0,0 +1,491 @@ + + + + + + + + 홍보문자 예시 모음 - 문자온 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    +
    + +

    +
    +
    +
    +
    +
    +

    keyword

    +

    홍보문자 예시 모음

    +

    홍보는 널리 알린다는 의미로 일반적으로 기업, 단체 등 조직체가 커뮤니케이션 활동을 통하여 계획이나 업적 등의 정보를 전달하고 공유하는 활동을 뜻합니다. 이러한 활동은 기업의 홍보 담당자뿐만 아니라 카페, 미용실, 뷰티숍, 쇼핑몰, 부동산, 골프연습장, 학원, 학교, 세무사사무소 등에서도 유용하게 활용될 수 있는데요. 뿐만 아니라 모임이나 행사 개최 홍보도 가능합니다. 그렇다면 각각의 홍보 목적에 맞는 문자 내용을 작성하려면 어떻게 해야할까요? 고민하고 계시는 여러분들을 위해 문자온이 다양한 예시를 보여드리도록 하겠습니다.

    +
    +
    + +
    +
    +

    모임·행사 홍보문자 예시

    +
    +

    [단문]

    +
      +
    • +
      +
      +

      모임·행사 홍보문자

      +
      +
      + ○월 ○일 ○○시 연합회 월례회
      장소: ○○○식당 전체 모임으로 많은 참석 바랍니다.
      -총무- +

      PM 3:45

      +
      +
      + +
      +
      +
    • +
    • +
      +
      +

      모임·행사 홍보문자

      +
      +
      + ○○동기회 임원모임결과, 동기모임 일자확정 X월XX일(장소추후통보)
      -총무- +

      PM 5:30

      +
      +
      +
      +
      +
    • +
    • +
      +
      +

      모임·행사 홍보문자

      +
      +
      + [XX초교 71회 동창회 알림] 일시:0월20일
      장소:역삼동 행운식당
      -동창회장- +

      PM 8:55

      +
      +
      +
      +
      +
    • +
    • +
      +
      +

      모임·행사 홍보문자

      +
      +
      + 오늘은 전체 송년회가 있는 날입니다!
      일 마무리 잘하시고 이따 ○시에 뵙도록 하겠습니다! +

      PM 2:15

      +
      +
      +
      +
      +
    • +
    • +
      +
      +

      모임·행사 홍보문자

      +
      +
      + 동문산악회 X월산 공지 - XX산(XX위치) 인원파악 후 연락 요망
      - XX산악회 총무 +

      PM 2:15

      +
      +
      +
      +
      +
    • +
    +
    + +
    + +
    +

    [장문]

    +
      +
    • +
      +
      +

      모임·행사 홍보문자

      +
      +
      + [동창회 정기모임]
      + 우정이란 친구를 딛고 내가 높아지는 것이 아니라 친구가 나 자신을 딛게 하여 친구를 높이는 것이다. 그것은 둘이 함께 높아지는 일이기도 하다. + 어려웠던 한해가 지나가고 어느덧 희망찬 봄이 찾아왔습니다. 우리도 모여서 옛이야기 하며 우정을 나눕시다.
      + 언제:
      + 어디서:
      + 회시:
      + 회장 ○○○ 010-1234-5678
      + 총무 ○○○ 010-1234-5678 +

      PM 1:10

      +
      +
      + +
      +
      +
    • +
    • +
      +
      +

      모임·행사 홍보문자

      +
      +
      + ○○산악회 등산안내
      + 출발일시 : □년 □월 □일(아침 □시 □분)
      + 출발장소 : ***************** 앞 ★★관광버스
      + 산행지 :
      + 회 비 : ○○○○○ 원
      + 등산코스 :
      + 산행시간 : 약 ○시간
      + 준비물 :
      + 회측제공 :
      + 특 징 :
      +

      AM 8:45

      +
      +
      +
      +
      +
    • +
    • +
      +
      +

      모임·행사 홍보문자

      +
      +
      + 안녕하세요.
      + 20OO 문자온의 날 운영사무국입니다.
      + 오는 OO월OO일(O) OO:OO, 서울 ●●호텔에서 20OO 문자온의 날 행사를 개최하오니 부디 참석하시어 자리를 빛내주시길 부탁드립니다.

      + 감사합니다.
      +

      PM 5:35

      +
      +
      +
      +
      +
    • +
    • +
      +
      +

      모임·행사 홍보문자

      +
      +
      + 화창한 봄을 맞이하여 ○○동문회에서 춘계체육대회를 개최합니다.

      + 가족의 달을 맞이하여 가족들과 함께 참석하시어, 좋은 추억 남기시길 바랍니다.

      + 일시 :
      + 장소 :
      + 문의 :
      +

      AM 9:43

      +
      +
      +
      +
      +
    • +
    • +
      +
      +

      모임·행사 홍보문자

      +
      +
      + OO상인회 월 정기 회의를 아래와 같이 개최합니다.

      + - 일시: ◆월 ◆◆일(◆요일) 오후 5시
      + - 장소: 상인회 사무실

      + 회원 여러분의 적극적인 참여와 협조를 부탁드립니다.
      +

      PM 5:15

      +
      +
      +
      +
      +
    • +
    +
    + +
    + +
    +

    [그림문자]

    + +
    +
    +
    + +
    +
    +

    개업 홍보문자 예시

    + +
    +

    [장문]

    +
      +
    • +
      +
      +

      개업 홍보문자

      +
      +
      + 안녕하세요. ○○○입니다.
      + ○일 ○○을 개업해 인사 올립니다.
      + 많은 응원과 격려 부탁드립니다.
      + 시간 나실 때 방문해주시면 큰 힘이 될 것 같습니다.

      + 감사합니다. +

      PM 1:10

      +
      +
      + +
      +
      +
    • +
    • +
      +
      +

      개업 홍보문자

      +
      +
      + ★개업인사 드립니다.★
      + 귀댁에 평안과 행복이 함께 하시길 기원합니다.
      + 다름이 아니오라 "○○○○"을 개업하여 운영하게 되었습니다.
      + 많이 찾아주셔서 많은 격려와 앞날의 복을 기원해주시면 많은 도움이 될것입니다.
      + 상호 :
      + 주소 :
      + 전화 :
      + 주차 :
      + - ○○○ 올림- +

      AM 8:45

      +
      +
      +
      +
      +
    • +
    • +
      +
      +

      개업 홍보문자

      +
      +
      + 개업인사
      + 제가 이번에 회사를 개업하게되어 문자 드립니다.
      + 참석하시어 격려의 말씀 부탁드립니다.

      + 일시 :
      + 장소 :
      + 상호 :

      + ○○○ 드림 +

      PM 5:55

      +
      +
      +
      +
      +
    • +
    • +
      +
      +

      개업 홍보문자

      +
      +
      + 안녕하세요.
      + ○○○○○○ 개업 인사드립니다.
      + 현 사업자분께서 ○월 ○일까지 영업하며,
      + ○○일 개업식을 할 예정이오니
      + 많은 관심과 응원 부탁드립니다. 감사합니다.

      + ○○○ 올림 +

      AM 9:43

      +
      +
      +
      +
      +
    • +
    • +
      +
      +

      개업 홍보문자

      +
      +
      + **오픈안내문자**
      + ○○시 ○○동에 ○○○○을 오픈하게 되어 인사드립니다.
      + 많은 관심과 성원 부탁드립니다.

      + 개업일 :
      + 주소 :
      + 전화 :

      + 축하 화환, 화분 등은 정중히 사양합니다.

      + ○○○ 배상
      +

      PM 5:15

      +
      +
      +
      +
      +
    • +
    +
    + +
    + +
    +

    [그림문자]

    + +
    +
    +
    +
    +
    +

    기타 홍보문자 예시

    + +
    +

    [장문]

    +
      +
    • +
      +
      +

      기타 홍보문자

      +
      +
      + 안녕하세요. ○○○입니다.
      + 이번 ○월 ○일 ○요일, ○○○에서 개최되는 이벤트가 있습니다.
      + 참여만 하셔도 다양한 상품을 드리며 누구나 참여하실 수 있으니 많은 관심 부탁드립니다!

      + □ 장소 :
      + □ 일정 :
      + □ 상세 안내 URL : +

      PM 1:10

      +
      +
      + +
      +
      +
    • +
    • +
      +
      +

      기타 홍보문자

      +
      +
      + 안녕하세요, 날씨가 많이 추워졌습니다.
      + 항상 몸 관리 잘 하시고 건승하시길 빕니다.

      + 이번에 SNS 계정을 새로 개설하여 홍보 겸 안부차 연락 드립니다.
      + SNS :

      + 많은 이용 및 문의 부탁드립니다.
      + 감사합니다. +

      AM 8:45

      +
      +
      +
      +
      +
    • +
    • +
      +
      +

      기타 홍보문자

      +
      +
      + 안녕하세요. ○○○입니다.
      + 이전에 안내드린 ○○○○ 프로그램을 ○월 ○일부터 ○회 진행합니다.
      + 매주 ○요일 00:00~00:00(○시간), ○월 ○○일까지 진행예정입니다.
      + 많이 참석하실 수 있도록 홍보 부탁드립니다.

      + 감사합니다.
      +

      PM 5:55

      +
      +
      +
      +
      +
    • +
    • +
      +
      +

      기타 홍보문자

      +
      +
      + 안녕하세요, 기자님.
      + ○○○○○ 홍보 담당자 ○○○입니다.
      + ○○○○○는 지난 □□일, 신기술을 홍보할 수 있는 세계 박람회에 참여했다고 □□일 밝혔습니다.
      + 관련하여 참고하실 수 있도록 메일로 보도자료를 전달드렸으니 긍정적인 검토 부탁드립니다.
      + 좋은 하루 보내시기 바랍니다.

      + 감사합니다.
      + □□□ 드림 +

      AM 9:43

      +
      +
      +
      +
      +
    • +
    • +
      +
      +

      기타 홍보문자

      +
      +
      + 안녕하세요. ○○대 대학일자리플러스센터입니다.
      + □□년 □□시 상반기 일자리박람회 개최 예정으로 안내드립니다.

      + ■ 행사개요
      + ○ 일 시 :
      + ○ 장 소 :
      + ○ 행사규모 :
      + ○ 준 비 물 :
      + ■ 행사내용
      + 많은 참여 부탁드립니다. 감사합니다. +

      PM 5:15

      +
      +
      +
      +
      +
    • +
    +
    + +
    + +
    +

    [그림문자]

    + +
    +
    +
    + + +
    + + + + \ No newline at end of file diff --git a/src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_11.html b/src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_11.html new file mode 100644 index 00000000..376be7b6 --- /dev/null +++ b/src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_11.html @@ -0,0 +1,147 @@ + + + + + + + + 단체문자사이트에서 문자 보내기 - 문자온 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    +
    + +

    +
    +
    +
    +
    +
    +

    keyword

    +

    단체문자사이트에서 문자 보내기

    +
    +
    + +
    +
    +

    단체문자사이트

    +

    + 컴퓨터 인터넷을 통해 대량으로 단체에게 문자를 보내기 편하게 서비스를 제공하는 사이트를 말합니다. +

    + +
    +
    + +
    +
    +

    단체문자 보내기 방법

    +
    +

    1. 문자사이트에서 단체문자를 보내기 위해서는 먼저 본인에게 맞는 문자사이트를 찾으셔야 합니다.

    +

    - 일단 “문자온”으로 검색해볼게요. 아래 로고를 클릭하셔도 됩니다.

    + + + + +
    +
    +

    2. 회원가입을 진행해주세요. 개인회원 및 기업회원 가입이 가능하며 기업회원의 경우 사업자등록증과 재직증명서(사업자등록증 상의 대표자가 아닌 경우)가 필요합니다.

    + +
    +
    +

    3. 로그인을 진행해주세요.

    + +
    +
    +

    4. [마이페이지] > [발신번호 관리] 메뉴로 이동하시어 문자발송에 사용할 발신번호를 등록해주세요.

    + +

    - 발신번호의 명의를 증빙하는 방법은 휴대폰 번호의 경우 휴대폰인증 또는 통신서비스이용증명원 제출로 확인되며, 일반번호의 경우 통신서비스이용증명원으로 확인됩니다. 통신서비스이용증명원은 등록하실 발신번호를 제공하는 통신사에 발급을 요청하세요~

    +

    - 명의가 본인(개인회원) 또는 본인이 대표로 있는 회사(기업회원)가 아닐 경우 필수제출 서류가 상이하며 아래 이미지를 참고하시어 제출하시면 됩니다.

    + + +

    - 본인 명의에 경우 휴대폰인증을 통해 간편하게 등록 가능하시며, 그 외 서류제출이 필요한 경우 5분 이내로 발신번호 심사가 완료되므로 편하게 사용 가능합니다.

    +
    +
    +

    5. 사용하실 만큼의 요금을 충전해주세요. 문자온은 다양한 결제방식을 제공하므로 편리하게 충전하실 수 있습니다.

    +

    - 최소 5,000원 이상 충전 가능하며 결제 시 부가세 10%가 제외되어 충전됩니다.(문자 발송시에는 부가세가 차감되지 않습니다.)

    +

    - [결제관리] 메뉴를 통해 세금계산서, 현금영수증 등 다양한 증빙서류를 요청하실 수 있습니다.

    + +
    +
    +

    6. [문자발송] 메뉴로 이동하시어 등록하신 발신번호를 선택하신 후 문자내용을 입력합니다.

    +

    - 단문/장문/그림 문자를 발송할 수 있으며 문자종류는 입력내용에 따라 자동으로 선택됩니다.

    +

    - 단문은 90byte(띄어쓰기 없는 한글 45자)까지이며 장문은 2,000byte(띄어쓰기 없는 한글 1,000자)까지입니다. 그림문자는 장문 + 이미지(3장까지)입니다.

    + +

    - 문자분류를 “광고”로 선택할 경우 080무료수신거부 번호를 별도의 절차 없이 무료로 문자내용에 자동으로 입력처리합니다.(수신자로부터 080수신거부 요청 발생 시 문자온에서 자동으로 수신거부 처리하므로 안심하고 사용 가능합니다.)

    + +
    +
    +

    7. 받는사람 입력 후 발송하기 클릭

    +

    - 주소록, 엑셀, 최근 전송내역 등을 통해 받는사람을 선택할 수 있습니다.

    +

    - 엑셀 파일 내용을 복사 붙여넣기 하여 입력할 수 있습니다.

    + +
    +
    +

    8. [발송결과] 메뉴로 이동하시면 문자의 발송 결과를 확인할 수 있습니다.

    +

    - 발송실패된 건은 보유잔액으로 반환됩니다.

    + +
    +
    +

    9. 이외에도 무료 주소록 입력대행, 카톡 및 팩스 발송, 선거문자, 그림문자 맞춤제작, 편리한 주소록 관리 등을 제공하고 있습니다.

    +
    +
    +
    + + +
    + + + + \ No newline at end of file diff --git a/src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_3.html b/src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_3.html index a928ee73..1050299c 100644 --- a/src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_3.html +++ b/src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_3.html @@ -10,7 +10,7 @@ - + diff --git a/src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_4.html b/src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_4.html index 4053d7a6..2fb1025b 100644 --- a/src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_4.html +++ b/src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_4.html @@ -10,7 +10,7 @@ - + diff --git a/src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_5.html b/src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_5.html index bc0f492b..5dd2d47b 100644 --- a/src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_5.html +++ b/src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_5.html @@ -10,7 +10,7 @@ - + diff --git a/src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_6.html b/src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_6.html index 5422a0a1..d4947790 100644 --- a/src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_6.html +++ b/src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_6.html @@ -10,7 +10,7 @@ - + diff --git a/src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_7.html b/src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_7.html index e8d76dc7..3dfd66f2 100644 --- a/src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_7.html +++ b/src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_7.html @@ -10,7 +10,7 @@ - + diff --git a/src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_8.html b/src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_8.html new file mode 100644 index 00000000..c765c20c --- /dev/null +++ b/src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_8.html @@ -0,0 +1,697 @@ + + + + + + + + 결혼 축하 메시지, 청첩창 문구, 답례 문자 - 문자온 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    +
    + +

    +
    +
    +
    +
    +
    +

    keyword

    +

    결혼 축하 메시지, 청첩창 문구, 답례 문자

    +

    살아가는 동안 최고로 기쁘면서도 가장 성대한 축하를 받는 행사는 무엇일까요? 기쁜 일은 여러 가지 있겠지만 주인공이 되는 자리는 아무래도 “결혼”일 것입니다. 가족, 친지, 친구, 동료 등 알만한 지인들은 총출동하여 함께 축복하는 자리! 축복이 큰 자리이니 만큼 청첩장, 축하메시지, 답례인사까지 신경써야 할 문구들이 많은데요. 문자온이 아래 예시들을 제공해드리오니 마음껏 활용하시길 바랍니다.

    +
    +
    + +
    +
    +

    결혼 축하 메시지 예시

    +
    +

    [단문]

    +
      +
    • +
      +
      +

      결혼 축하 메시지

      +
      +
      + 세상에서 제일 행복한 부부가 되길 바래~ +

      PM 3:45

      +
      +
      + +
      +
      +
    • +
    • +
      +
      +

      결혼 축하 메시지

      +
      +
      + 알콩달콩 신혼살림 잘 꾸려가~ 결혼 축하해! +

      PM 5:30

      +
      +
      +
      +
      +
    • +
    • +
      +
      +

      결혼 축하 메시지

      +
      +
      + 결혼 축하드립니다. 행복이 가득하시길 바랍니다. +

      PM 8:55

      +
      +
      +
      +
      +
    • +
    • +
      +
      +

      결혼 축하 메시지

      +
      +
      + 검은머리 파뿌리! 될 때까지 행복하세요~ +

      PM 2:15

      +
      +
      +
      +
      +
    • +
    • +
      +
      +

      결혼 축하 메시지

      +
      +
      + 두 사람의 앞날에 늘 행복이 가득하기를 기원합니다. +

      PM 6:48

      +
      +
      +
      +
      +
    • +
    +
    + +
    + +
    +

    [장문]

    +
      +
    • +
      +
      +

      결혼 축하 메시지

      +
      +
      + 두 사람이 사랑으로 만나 마침내 그 사랑의 결실을 맺으시게 된 것에 진심으로 축하 말씀 드립니다. +

      PM 1:10

      +
      +
      + +
      +
      +
    • +
    • +
      +
      +

      결혼 축하 메시지

      +
      +
      + 결혼을 진심으로 축하드립니다.
      + 두 분의 뜻깊은 출발을 축복드리며~
      + 두 분에게 평안과 행복이 항상 함께 하시기를 기원합니다. +

      AM 8:45

      +
      +
      +
      +
      +
    • +
    • +
      +
      +

      결혼 축하 메시지

      +
      +
      + 오랜 기다림 속에 둘이 진실로 한마음이 되는 것을 모두 지켜본 사람으로써 무척 감격스럽다.
      + 항상 서로 아껴주고 이해하며 행복하기를 바래~ +

      PM 5:35

      +
      +
      +
      +
      +
    • +
    • +
      +
      +

      결혼 축하 메시지

      +
      +
      + 두사람
      + 이제 두 사람은 비를 맞지 않으리라.
      + 서로가 서로에게 지붕이 되어 줄테니까.
      + 이제 두 사람은 춥지 않으리라.
      + 서로가 서로에게 따뜻함이 되어 줄테니까.
      + 이제 두 사람은 더 이상 외롭지 않으리라.
      + 서로가 서로에게 동행이 될테니까.
      + 이제 두 사람은 두 개의 몸이지만
      + 두 사람 앞에는 오직
      + 하나의 인생만이 있으리라.
      + 이제 그대들의 집으로 들어가라.
      + 함께 있는 날들 속으로 들어가라.
      + 이 대지 위에서 그대들은
      + 오랫동안 행복하리라. +

      AM 9:43

      +
      +
      +
      +
      +
    • +
    • +
      +
      +

      결혼 축하 메시지

      +
      +
      + 결혼을 진심으로 축하드려요.
      + 하루씩 하루씩 시간이 가면 갈수록 서로 사랑이 깊어지는 가정이 되시길 바래요. +

      PM 5:15

      +
      +
      +
      +
      +
    • +
    • +
      +
      +

      결혼 축하 메시지

      +
      +
      + 너와 나의 어린시절...
      + 함께 뛰놀던
      + 그때가
      + 엊그제 같은데...
      + 어느덧 성인이 되어...
      + 사랑의 결실을 맺는구나
      + 결혼 진심으로 축하해! +

      PM 5:15

      +
      +
      +
      +
      +
    • + +
    +
    + +
    +
    + +
    +
    +

    청첩장 문구 예시

    +
    +

    [단문]

    +
      +
    • +
      +
      +

      청첩장 문구

      +
      +
      + ♧결혼청첩장♧
      + ○○○♡○○○
      + 저희 결혼을 축복해주세요^^
      + ○월 ○일 ○시
      + ○○○○웨딩홀 +

      PM 3:45

      +
      +
      + +
      +
      +
    • +
    • +
      +
      +

      청첩장 문구

      +
      +
      + 드디어 저희 결혼합니다
      + 축하해주세요
      + ○월○일○시
      + ○○○○예식장
      + 행복하게살겠습니다 +

      PM 5:30

      +
      +
      +
      +
      +
    • +
    • +
      +
      +

      청첩장 문구

      +
      +
      + ○○○의 혼사를 축~축하♡
      + ○월○일(토)오후○시
      + ○○○○○웨딩홀○층
      + 많은축하바랍니다 +

      PM 8:55

      +
      +
      +
      +
      +
    • +
    • +
      +
      +

      청첩장 문구

      +
      +
      + ..+:☆:+:☆:+..
      + 우ㄹl결혼ㅎH요。
      + 축하ㅎH주서l요。
      + '+:☆:+:☆:+' +

      PM 2:15

      +
      +
      +
      +
      +
    • +
    • +
      +
      +

      청첩장 문구

      +
      +
      + 나 드디어 결혼날짜잡았어! 0월0일 0시. 집근처에서참석해줄꺼지!^^꼭와서꼭축하해줘! +

      PM 6:48

      +
      +
      +
      +
      +
    • +
    +
    + +
    + +
    +

    [장문]

    +
      +
    • +
      +
      +

      청첩장 문자

      +
      +
      + 부모님은 하늘로부터 받은 최고의 선물이고,
      + 부부는 자신이 선택한 최고의 보물 이라고 합니다.
      + 서로가 서로에게 최고의 보물이라고 믿는 저희 두사람 드디어 하나되어 한 가정을 이루고자 합니다.
      + 부디 참석하시어 기쁨의 자리를 축복으로 더욱 빛내 주시기 바랍니다. +

      PM 1:10

      +
      +
      + +
      +
      +
    • +
    • +
      +
      +

      청첩장 문자

      +
      +
      + 안녕하세요. ○○○ 입니다.
      + 예전, 아주 작은 인연이 저희를 연인으로 만들었고
      + 오늘, 그 인연으로 저희가 하나가 됩니다.
      + 작은 사랑으로 하나의 커다란 열매를 맺고
      + 이제 또 다른 모습으로 사랑하고자 하는 두 사람,
      + 오셔서 지켜봐 주시고 축하해 주십시오.
      + 늘 그 인연을 생각하며 살겠습니다.
      + 언제:
      + 어디서:
      +

      AM 8:45

      +
      +
      +
      +
      +
    • +
    • +
      +
      +

      청첩장 문자

      +
      +
      + 하얀 눈처럼 순수한 영혼을 가진 사랑을 찾았습니다.
      + 여러 어른과 친지를 모신 자리에서 웃음도 눈물도 서로의 보이지 않는 작은 부분도 영원히 함께 공유할 수 있는 동반자라 맹세하며 사랑의 예를 맺고자 합니다.
      + 그 동안 아껴주신 것처럼 저희들의 새 출발에도 참석하시어 축복해 주시면 평생 잊을 수 없는 기쁨이 되겠습니다.
      +

      PM 5:55

      +
      +
      +
      +
      +
    • +
    • +
      +
      +

      청첩장 문자

      +
      +
      + 개나리 꽃길에서 시작된 저희의 사랑이 이제 결실을 이루려 합니다.
      + 코스모스 향기가 그윽한 푸르른 이 가을!
      + 새로운 출발을 위한 저희의 맹세에 초대하오니 오셔서 축복해 주시면 큰 기쁨이겠습니다. +

      AM 9:43

      +
      +
      +
      +
      +
    • +
    • +
      +
      +

      청첩장 문자

      +
      +
      + 안녕하세요?
      + 믿음으로 함께하고 사랑으로 하나되는 저희 결혼식에 소중한 분들을 모시고자 합니다.
      + 바쁘시더라도 귀한 시간내어 소중한 걸음 하시어 기쁜 마음으로 축복해주시면 감사하겠습니다.
      + - ○○○ 배상 -
      + 일시 : ○○월 ○○일 (○) ○○시
      + 장소 : 서울 웨딩홀
      +

      PM 5:15

      +
      +
      +
      +
      +
    • +
    • +
      +
      +

      청첩장 문자

      +
      +
      + 예전, 아주 작은 인연이 저희를 연인으로 만들었고 그 인연으로 저희 하나가 됩니다.
      + 곱게 다듬어지지 못한 질그릇처럼 아직은 많이도 부족하지만 늘 그 인연을 생각하며 살겠습니다.
      + 오셔서 지켜봐주시고 축하해 주십시오.
      + 살기 좋은 집처럼 포근한 남편이 되겠습니다.
      + 몸에 맞는 옷처럼 편안한 아내가 되겠습니다.
      + 이제 저희 두 사람 부부라는 이름으로 두 발이 하나 되어 즐거움을 나누고 어려움을 이겨내는 삶을 꾸리겠습니다.
      + 희망의 첫발을 내딛는 우리 둘 기쁨으로 곱해지고 행복으로 나눠지는 사랑의 축제에 지혜와 사랑으로 한껏 보듬어주실 고마운 분들과 함께 하고 싶습니다. +

      PM 5:15

      +
      +
      +
      +
      +
    • +
    • +
      +
      +

      청첩장 문자

      +
      +
      + 하얀 눈처럼 순수한 영혼을 가진 사랑을 찾았습니다.
      + 여러 어른과 친지를 모신 자리에서 웃음도 눈물도 서로의 보이지 않는 작은 부분도 영원히 함께 공유할 수 있는 동반자라 맹세하며 사랑의 예를 맺고자 합니다.
      + 그 동안 아껴주신 것처럼 저희들의 새 출발에도 참석하시어 축복해 주시면 평생 잊을 수 없는 기쁨이 되겠습니다. +

      PM 5:15

      +
      +
      +
      +
      +
    • +
    +
    + +
    + +
    +

    [그림문자]

    + +
    +
    +
    + +
    +
    +

    결혼 답례 문자 예시

    +
    +

    [단문]

    +
      +
    • +
      +
      +

      결혼 답례 문자

      +
      +
      + 더운 날씨에도 불구하고 저희 결혼식에 찾아 주셔서 매우 감사드립니다.
      + 큰 힘이 되었습니다. +

      PM 3:45

      +
      +
      + +
      +
      +
    • +
    • +
      +
      +

      결혼 답례 문자

      +
      +
      + 저희 결혼식에 바쁘신중에도 참석해주셔서 기뻤습니다. 진심으로 감사드립니다. 잘살겠습니다.^^ +

      PM 5:30

      +
      +
      +
      +
      +
    • +
    • +
      +
      +

      결혼 답례 문자

      +
      +
      + 금번 저희 혼사에바쁘심에도 불구하고 참석해 주시어 진심으로 감사의 말씀을드립니다 +

      PM 8:55

      +
      +
      +
      +
      +
    • +
    • +
      +
      +

      결혼 답례 문자

      +
      +
      + 금번 저희 자혼사에 베푸신 후의에 감사드리며 좋은 일만 있길 기원합니다
      + ○○○ 배상 +

      PM 2:15

      +
      +
      +
      +
      +
    • +
    • +
      +
      +

      결혼 답례 문자

      +
      +
      + 저희 아들 결혼을 축하해주신 ○○회원님들께 깊이 감사드립니다.
      + - ○○○배상 +

      PM 6:48

      +
      +
      +
      +
      +
    • +
    • +
      +
      +

      결혼 답례 문자

      +
      +
      + 저희집 혼사에 참석하시어 자리를 빛내주셔서 감사합니다. 건강과행복을 기원합니다. +

      PM 6:48

      +
      +
      +
      +
      +
    • +
    +
    + +
    + +
    +

    [장문]

    +
      +
    • +
      +
      +

      결혼 답례 문자

      +
      +
      + 신랑 알콩이, 신부 달콩이 입니다.
      + 바쁘신중에도 저희 결혼식에 참석해주셔서 저희 두사람 행복한 결혼식 무사히 마쳤습니다.
      + 진심으로 감사드립니다.
      + 믿음져버리지 않도록 열심히 노력하면서 잘 살겠습니다.
      + 앞으로도 많은 관심과 사랑 부탁드립니다.
      + 늘 건강하시고, 가정에 행복가득하시길 기원합니다.
      + 곧 찾아뵙고 정식으로 인사드리겠습니다. +

      AM 8:10

      +
      +
      + +
      +
      +
    • +
    • +
      +
      +

      결혼 답례 문자

      +
      +
      + 안녕하세요.
      + 저희 결혼식 때 바쁘신 중에도 잊지않고 찾아주셔서 감사합니다.
      + 따뜻한 격려와 축하속에서 행복하게 결혼식 올렸습니다.
      + 고마움 오래오래 간직하겠습니다.
      + 앞으로도 많은 조언과 사랑 부탁드립니다. ^^
      + 가정에 행복과 건강이 함께 하시길 기원하며 감사의 인사를 드립니다. +

      AM 10:30

      +
      +
      +
      +
      +
    • +
    • +
      +
      +

      결혼 답례 문자

      +
      +
      + 안녕하세요.
      + 저희 결혼식 때 바쁘신 중에도 잊지않고 찾아주셔서 감사합니다.
      + 따뜻한 격려와 축하속에서 행복하게 결혼식 올렸습니다.
      + 고마움 오래오래 간직하겠습니다.
      + 앞으로도 많은 조언과 사랑 부탁드립니다. ^^
      + 가정에 행복과 건강이 함께 하시길 기원하며 감사의 인사를 드립니다. +

      PM 2:20

      +
      +
      +
      +
      +
    • +
    • +
      +
      +

      결혼 답례 문자

      +
      +
      + 감사의 말씀을 드립니다.
      + 저희 아들 혼례시 공사간 바쁘심에도 불구하고 많은 축하와 후의를 베풀어 주신 여러분께 진심으로 감사드립니다.
      + 당일 황망 중이라 제대로 챙기지 못하여 결례된 점은 없었는지, 식사는 소홀한 점이 없었는지 걱정이 앞섭니다.
      + 찾아 뵙고 감사의 인사를 드림이 도리이오나 우선 서면으로 대신함을 해량하여 주시기 바랍니다. + 앞으로 귀댁의 대소사에 연락하여 주시면 빠짐없이 참석하도록 하겠습니다.
      + 그리고 내내 뜻하신 일들이 잘 성취되시고 가정에 행복과 건강이 함께 하시길 기원하며 감사의 인사를 드립니다.
      + 혼주 ㅇㅇㅇ, ㅇㅇㅇ 올림 +

      PM 7:33

      +
      +
      +
      +
      +
    • +
    • +
      +
      +

      결혼 답례 문자

      +
      +
      + 항상 귀댁에 평안과 만복을 기원합니다.
      + 아뢰올 말씀은 지난번 결혼식 때에 바쁘심에도 불구하시고 참석해 주시어 무사히 혼례를 마치게 하여 주신데 대하여 진심으로 감사를 드립니다.
      + 찾아 뵙고 인사드리는 것이 도리이나 우선 문자로 대신하옴을 송구스럽게 생각하오며 내내 건강하시고 하시는 사업이 일익 번창하시기를 기원합니다. + 감사합니다. +

      PM 9:50

      +
      +
      +
      +
      +
    • +
    +
    + +
    + +
    +

    [그림문자]

    + +
    + +
    + +
    + + + +
    + + + + \ No newline at end of file diff --git a/src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_9.html b/src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_9.html new file mode 100644 index 00000000..cebf09f0 --- /dev/null +++ b/src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_9.html @@ -0,0 +1,109 @@ + + + + + + + + 웹문자 사이트 - 문자온 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    +
    + +

    +
    +
    +
    +
    +
    +

    keyword

    +

    웹문자 사이트

    +
    +
    + +
    +
    +

    웹문자 사이트란?

    +

    + 갤럭시나 아이폰 등 핸드폰(휴대폰)으로 문자를 발송하는 것이 아닌 대량으로 단체에게 문자를 보내기 편하게 서비스를 제공하는 문자 발송 사이트를 말합니다. +

    + +
    +
    +
    +
    +

    웹문자 사이트를 쓰는 이유

    +

    + 홍보, 경조사, 선거 등등 많은 분들이 갤럭시나 아이폰 등 가지고 있는 스마트폰을 사용하지 않고 왜 웹문자 사이트를 이용하여 문자메시지를 보내는 걸까요? 우리가 사용하는 이동통신사는 단체문자 동보 전송 가능 수량이라는게 있어서 1회 최대 수량은 100건(통신사마다 상이함)에 불과합니다. 또한 무료문자 제한 기준이라는게 있어서 해당 기준을 넘어갈 경우 단문 메시지 기준으로 건당 약 50원이 부과됩니다. 따라서, 대량으로 단체문자를 보내실 경우에는 문자발송 전용 사이트를 이용하시는 것이 결과적으로 저렴하고 편리한 것입니다.

    +

    +

    - 휴대폰 무료문자 발송 제한사항은 아래 링크를 통해 확인하실 수 있습니다.

    +

    휴대폰 무료문자 발송 제한사항 바로가기

    +
    +
    +
    +
    +

    웹문자 사이트 이용 시 장점

    +

    1. 홍보/광고 문자 발송 시 정보통신망법에 따른 광고성 문자 전송규정에 따른 문구를 자동으로 삽입할 수 있다.

    +

    2. 홍보/광고 문자 발송 시 080무료수신거부 번호를 무료로 제공받을 수 있고 수신자의 수신거부 발생 시 자동적으로 수신거부 처리를 대행해준다.

    +

    3. 주소록 관리를 통해 편리하게 수신자 목록을 관리할 수 있으며 주소록 입력을 대행하는 서비스를 제공한다.

    +

    4. 간단한 절차를 통해 제한 없이 문자를 동시 발송할 수 있다.

    +

    5. 문자메시지 동시 발송 시 이름, 금액, 일자 등 수신자마다 다른 내용을 발송하는 특정문자 치환 기능을 무료로 이용할 수 있다.

    +
    +
    + +
    +
    + 웹문자 +
    +
    +
    + + + + \ No newline at end of file diff --git a/src/main/webapp/publish/publish_adv/css/style.css b/src/main/webapp/publish/publish_adv/css/style.css index 4b0603da..ed055f29 100644 --- a/src/main/webapp/publish/publish_adv/css/style.css +++ b/src/main/webapp/publish/publish_adv/css/style.css @@ -289,6 +289,15 @@ a{text-decoration: none;color: #222222;} /*템플릿1_6부고문자추가_공통_끝*/ +/*템플릿1_9웹문자 사이트*/ +.send_limit_btn{margin: 10px 0 0 0;} +.send_limit_btn a{margin: 0 0 0 11px; font-size: 18px; font-weight: 500; text-decoration: underline; color: #3c33ab;} + +/*템플릿1_11문자 사이트*/ +.con_add .text{font-weight: 400; font-size: 20px;} +.con_add .small_text{text-indent: -9px; margin: 6px 0 0 10px; font-size: 16px; line-height: 1.3; color: #5b5b5b;} +.con_add .inner img{margin: 15px auto 60px auto; display: block;} + /*미디어쿼리 시작*/ /*미디어쿼리_1340px*/ @media screen and (max-width:1340px) { @@ -860,6 +869,8 @@ a{text-decoration: none;color: #222222;} .multi-text-wrap #galaxy .con .step-03{margin-left: 24%;} .multi-text-wrap #galaxy .con .step-05{margin-left: 24%;} .multi-text-wrap #galaxy .con .text-04 p{width: 112%; margin-left: -12%;} + /*템플릿1_10홍보문자추가*/ + .content_ten .long .obituary .wrap{height: 415px;} } /*미디어쿼리_710px*/ @@ -869,6 +880,8 @@ a{text-decoration: none;color: #222222;} /*템플릿1_6부고문자추가*/ .template_v1_content .long .obituary .wrap{height: 390px;} + /*템플릿1_10홍보문자추가*/ + .content_ten .long .obituary .wrap{height: 415px;} } /*미디어쿼리_690px*/ @@ -890,6 +903,10 @@ a{text-decoration: none;color: #222222;} .multi-text-wrap #galaxy .con .step-03{margin-left: 22%;} .multi-text-wrap #galaxy .con .step-05{margin-left: 22%;} .multi-text-wrap #galaxy .con .text-04 p{width: 101%; margin-left: -1%;} + + /*템플릿1_11문자 사이트*/ + .content_eleven .visual .inner h2{font-size: 40px;} + .con_add .text{font-size: 18px;} } /*미디어쿼리_640px*/ @@ -915,6 +932,8 @@ a{text-decoration: none;color: #222222;} .template_v1_content .visual .inner .obituary_te{font-size: 17px; line-height: 1.4;} .template_v1_content .long .obituary .wrap{height: 420px;} .template_v1_content .obituary{margin: 20px 0 0 0;} + /*템플릿1_10홍보문자추가*/ + .content_ten .long .obituary .wrap{height: 450px;} } /*미디어쿼리_600px*/ @@ -1257,6 +1276,12 @@ a{text-decoration: none;color: #222222;} /*메인화면 이동 버튼*/ .multi-text-wrap .bt-button a{background-color: #002c9a; border-radius: 10px; font-size: 18px; color: #fff; padding: 15px 50px;} + + /*템플릿1_9웹문자 사이트*/ + .send_limit_btn a{margin: 0;} + + /*템플릿1_11문자 사이트*/ + .content_eleven .visual .inner h2{font-size: 30px;} } /*미디워쿼리_320px*/ @@ -1302,6 +1327,9 @@ a{text-decoration: none;color: #222222;} /*템플릿1_6부고문자추가*/ .template_v1_content .long .obituary .wrap{height: 430px;} + /*템플릿1_10홍보문자추가*/ + .content_ten .long .obituary .wrap{height: 500px;} + .content_ten .obituary .title .text{font-size: 19px;} } /*미디어쿼리_280px*/ diff --git a/src/main/webapp/publish/publish_adv/img/template_v1_manuscript_10_section01_img01.png b/src/main/webapp/publish/publish_adv/img/template_v1_manuscript_10_section01_img01.png new file mode 100644 index 00000000..5dcf0fb3 Binary files /dev/null and b/src/main/webapp/publish/publish_adv/img/template_v1_manuscript_10_section01_img01.png differ diff --git a/src/main/webapp/publish/publish_adv/img/template_v1_manuscript_10_section02_img01.png b/src/main/webapp/publish/publish_adv/img/template_v1_manuscript_10_section02_img01.png new file mode 100644 index 00000000..f88121aa Binary files /dev/null and b/src/main/webapp/publish/publish_adv/img/template_v1_manuscript_10_section02_img01.png differ diff --git a/src/main/webapp/publish/publish_adv/img/template_v1_manuscript_10_section03_img01.png b/src/main/webapp/publish/publish_adv/img/template_v1_manuscript_10_section03_img01.png new file mode 100644 index 00000000..03cc7aa5 Binary files /dev/null and b/src/main/webapp/publish/publish_adv/img/template_v1_manuscript_10_section03_img01.png differ diff --git a/src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section01_img01.png b/src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section01_img01.png new file mode 100644 index 00000000..48320567 Binary files /dev/null and b/src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section01_img01.png differ diff --git a/src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img01.png b/src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img01.png new file mode 100644 index 00000000..af4346ee Binary files /dev/null and b/src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img01.png differ diff --git a/src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img02.png b/src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img02.png new file mode 100644 index 00000000..7ba387b8 Binary files /dev/null and b/src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img02.png differ diff --git a/src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img03.png b/src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img03.png new file mode 100644 index 00000000..9a4de75d Binary files /dev/null and b/src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img03.png differ diff --git a/src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img04.png b/src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img04.png new file mode 100644 index 00000000..4acd9570 Binary files /dev/null and b/src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img04.png differ diff --git a/src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img05.png b/src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img05.png new file mode 100644 index 00000000..0806efe8 Binary files /dev/null and b/src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img05.png differ diff --git a/src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img06.png b/src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img06.png new file mode 100644 index 00000000..66045e8b Binary files /dev/null and b/src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img06.png differ diff --git a/src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img07.png b/src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img07.png new file mode 100644 index 00000000..86208911 Binary files /dev/null and b/src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img07.png differ diff --git a/src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img08.png b/src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img08.png new file mode 100644 index 00000000..69877c61 Binary files /dev/null and b/src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img08.png differ diff --git a/src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img09.png b/src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img09.png new file mode 100644 index 00000000..2942bb5b Binary files /dev/null and b/src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img09.png differ diff --git a/src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img10.png b/src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img10.png new file mode 100644 index 00000000..a7f782ff Binary files /dev/null and b/src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img10.png differ diff --git a/src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img11.png b/src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img11.png new file mode 100644 index 00000000..9dd5ffc9 Binary files /dev/null and b/src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img11.png differ diff --git a/src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_logo.png b/src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_logo.png new file mode 100644 index 00000000..cc19fad9 Binary files /dev/null and b/src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_logo.png differ diff --git a/src/main/webapp/publish/publish_adv/img/template_v1_manuscript_8_section02_img.png b/src/main/webapp/publish/publish_adv/img/template_v1_manuscript_8_section02_img.png new file mode 100644 index 00000000..8788f88d Binary files /dev/null and b/src/main/webapp/publish/publish_adv/img/template_v1_manuscript_8_section02_img.png differ diff --git a/src/main/webapp/publish/publish_adv/img/template_v1_manuscript_8_section03_img.png b/src/main/webapp/publish/publish_adv/img/template_v1_manuscript_8_section03_img.png new file mode 100644 index 00000000..ee43b4d5 Binary files /dev/null and b/src/main/webapp/publish/publish_adv/img/template_v1_manuscript_8_section03_img.png differ diff --git a/src/main/webapp/publish/publish_adv/img/template_v1_manuscript_9_section01_img01.png b/src/main/webapp/publish/publish_adv/img/template_v1_manuscript_9_section01_img01.png new file mode 100644 index 00000000..dbae83e5 Binary files /dev/null and b/src/main/webapp/publish/publish_adv/img/template_v1_manuscript_9_section01_img01.png differ diff --git a/src/main/webapp/publish/sub_election_2023.html b/src/main/webapp/publish/sub_election_2023.html new file mode 100644 index 00000000..83ab5f87 --- /dev/null +++ b/src/main/webapp/publish/sub_election_2023.html @@ -0,0 +1,3171 @@ + + + + + + + 문자온_선거전송 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + +
    + +
    + + + +
    + +
    + + + +
    + +
    + + + +
    + +
    + + + +
    + +
    + + +
    +
    +

    QUICK
    MENU

    +

    QUICK

    + + +
    +
    + + + + +
    + + +
    +
    + +
    + +
      +
    • +
    • +
    + + +
    +
    +

    20건 문자(수동문자) 전송

    +
    + + + + + +
    +
    +
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    일반 문자보내기 분류 번호 내용 등을 입력하는 표
    발신번호 + + + +
    제목 +
      +
    • + + + + +
    • +
    • + + +
    • +
    +
    내용 +
    +
    + +
      + + +
      +

      (선거운동정보)

      +
      +
      +
      후보자전화번호
      불법수집정보 신고번호 118번
      무료거부 0808800858
      +
      +

      + 79 / + 90byte +

      + 단문 +
      +
      +
      +
      +
      + +
      + + +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ε + + + + + + + + + + + ψ +
      +
      + + + + + + + + + + + + + + + + + + + + + + +
      +
      + + + +
      + + +
      +
      +
      +

      * 현재 [단문] 120,000건 발송 가능합니다.

      +
      받는사람 +
      +
      + + + + * 중복번호는 한번만 발송됩니다. +
      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      번호 + + + 번호 + + +
      + + + +
      + + + +
      + + + +
      + + + +
      + + + +
      + + + +
      + + + +
      + + + +
      + + + +
      + + + +
      + + +
      +
      + + +
      + +
      +

      휴대폰 번호 입력 시 해당 휴대폰 번호에 대한 형식이 어긋나거나 휴대폰 번호에 오류가 있는지 등을 검사하는 기능

      + (예시) 010-1234-0001(O) / 010-123-0001(X) +
      +
      +
      +
      전체 받는사람
      +
      +

      10,000,000

      +
      +
      전송완료
      +
      +

      20

      +
      +
      잔여 받는사람
      +
      +

      99,999,980

      +
      +
      +
      +
      +
      +
        +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      +
      + +
      + +
      +

      마우스를 누르고 있으면 받는사람을 연속적으로 20명까지 선택할 수 있습니다.

      +
      +
      +
      +
      +
      +
      +
      +
      +
      +

      발송금액 :

      + +
      +

      0

      +
      +

      * 이벤트회원의 발송금액은 이벤트단가를 적용하여 계산된 금액이므로 실제 발송금액과 다를 수 있습니다.

      +
      +
      + + + + + + + +
      +
      +
      + +
      +
      +
        +
      • + 나의 단가  :   +
      • +
      • + 단문 + 18원 + /   +
      • +
      • + 장문 + 50원 + /   +
      • +
      • + 그림 + 90원 + (2장 : 110원 / 3장 : 130원) +
      • +
      +
      +
      +
      추천인 ID + + + + +
      + + + +
      +
      +
      + +
      +
      +
      +
      +

      미리보기

      + +
      + 포토 +
        +
      • 1 +
      • 2 +
      • 3 +
      +
      + 글자크기 + + +
      +
      + +
      +
      +
      + +
      +
      + +
      +
      + +
      +
      +
      +

      (광고)

      +

      내용을 입력해주세요.

      +

      +

      무료 거부 080-0000-0000

      +
      +
      + +
      +
      +

      ※ 단말기 설정에 따라 다르게 보일 수 있습니다

      +

      +
      +
      +
      +
      +
        +
      • +
      • +
      +
      +
      + + +
      +
      + + +
      +
      +
      +
      + +
      +
      + + +
      +
      +

      대량문자

      +
      +
      +

      - 각각 다른 사람에게 다른 내용의 메시지를 한번에 보낼 수 있습니다. (최대 1만 건)

      +

      - 광고성 메시지는 반드시 유의사항 확인 후 발송해 주시기 바랍니다. [광고문자 관련규정 안내]

      +

      - 엑셀영역은 복사, 붙여넣기가 가능합니다.

      + +
      +
      + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      일반 문자보내기 분류 번호 내용 등을 입력하는 표
      문자분류 + + + + +
      발신번호 + + + +
      제목 + + + + + +
      내용 +
      +
      +
      +

      (광고)

      +
      + + +
      +
      +

      무료 거부 080-0000-0000

      +
      +
      +

      15 / 90byte

      + 단문 +
      +
      +
      +
      +
      + +
      + + +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ε + + + + + + + + + + + ψ +
      +
      + + + + + + + + + + + + + + + + + + + + + + +
      +
      +
      + +
      +
      +
      + 특정문구 일괄변환이란? +

      주소록, 엑셀에 입력된 내용을 이용해 수신자마다 다른 내용의 메시지를 발송하는 기능

      +
      + +
      + #{1} + #{2} + #{3} + #{4} +
      +
      +
      +
      + + +
      + + +
      +
      +
      +

      * 현재 [단문] 120,000건 발송 가능합니다.

      +
      내용 +
      +
      +
        +
      • +
        + thumb1 +
        + + +
      • +
      • +
        + thumb1 +
        + + +
      • +
      • +
        + thumb1 +
        + + +
      • +
      +
      +

      (광고)

      +
      + + +
      +
      +

      무료 거부 080-0000-0000

      +
      +
      +

      15 / 2000byte

      + 그림 +
      +
      +
      +
      +
      + +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
      +
      +
      + +
      +
      +
      + 특정문구 일괄변환이란? +

      주소록, 엑셀에 입력된 내용을 이용해 수신자마다 다른 내용의
      메시지를 발송하는 기능

      +
      + +
      + #{1} + #{2} + #{3} + #{4} +
      +
      +
      +
      + + +
      + + +
      +
      +
      +

      * 현재 [단문] 120,000건 발송 가능합니다.

      +
      +
      + +
      +
      +
      +
      +

      미리보기

      + +
      + 포토 +
        +
      • 1 +
      • 2 +
      • 3 +
      +
      + 글자크기 + + +
      +
      + +
      +
      +
      + +
      +
      + +
      +
      + +
      +
      +
      +

      (광고)

      +

      내용을 입력해주세요.

      +

      +

      무료 거부 080-0000-0000

      +
      +
      + +
      +
      +

      ※ 단말기 설정에 따라 다르게 보일 수 있습니다

      +

      +
      + +
      + +
      +
      +
      +
      + +
      +
      + + +
      +
      +
      +

      파일 붙여넣기마우스로 엑셀 파일을 여기에 끌어다 놓으세요

      +
      +
      +

      120건 / 중복 9

      + +
      +
      + +
      +
      +
      +
      + + + +
      +
      + +
      +
      +
      +
      +
      +
      +
      + + + + + + + + + + + + + + + +
      일반 문자보내기 분류 번호 내용 등을 입력하는 표
      +
      +
      +

      결제금액 :

      +

      200,000(부가세 포함)

      +
      +
      +
      + + + +
      +
      + + + +
      +
      +
      +
      추천인 ID + + + + +
      + + + +
      +
      +
      +
      +
      +
      + + + + +
      +
      +
      + 날짜 : +
      + +
      + +
      + + + +
      +
      +
      + + + + + + +
      +
      +
      +
      + + +
      +
      +
      +
      + +
      + +
        +
      • +
      • +
      • +
      • +
      + +
      + + +
      + +
      +
      +
      +
      + 전체 + 기업 + 개인 +
      전체
      +
      + + +
      + +
      +
      + +
      +
        +
      • +
        +

        화이트 데이 화이트 데이 화이트 데이

        +
        +
        +
        즐거운 화이트데이입니다.

        + 달달한 하루보내시라고, 화이트 데이 사탕보냅니다.

        + 맛있게 드시고, 새콤달콤 행복한 하루보내세요~

        + *""*
        + *◆○*
        + *♡◎★*
        + ########
        + \_____/
        +
        +
        +

        0 / 90byte

        +
      • +
      • +
        +

        화이트 데이

        +
        +
        +
        즐거운 화이트데이입니다.

        + 달달한 하루보내시라고, 화이트 데이 사탕보냅니다.

        + 맛있게 드시고, 새콤달콤 행복한 하루보내세요~

        + *""*
        + *◆○*
        + *♡◎★*
        + ########
        + \_____/
        +
        +
        +

        0 / 90byte

        +
      • +
      • +
        +

        화이트 데이

        +
        +
        +
        즐거운 화이트데이입니다.

        + 달달한 하루보내시라고, 화이트 데이 사탕보냅니다.

        + 맛있게 드시고, 새콤달콤 행복한 하루보내세요~

        + *""*
        + *◆○*
        + *♡◎★*
        + ########
        + \_____/
        +
        +
        +

        0 / 90byte

        +
      • +
      • +
        +

        화이트 데이

        +
        +
        +
        즐거운 화이트데이입니다.

        + 달달한 하루보내시라고, 화이트 데이 사탕보냅니다.

        + 맛있게 드시고, 새콤달콤 행복한 하루보내세요~

        + *""*
        + *◆○*
        + *♡◎★*
        + ########
        + \_____/
        +
        +
        +

        0 / 90byte

        +
      • +
      • +
        +

        화이트 데이

        +
        +
        +
        즐거운 화이트데이입니다.

        + 달달한 하루보내시라고, 화이트 데이 사탕보냅니다.

        + 맛있게 드시고, 새콤달콤 행복한 하루보내세요~

        + *""*
        + *◆○*
        + *♡◎★*
        + ########
        + \_____/
        +
        +
        +

        0 / 90byte

        +
      • +
      • +
        +

        화이트 데이

        +
        +
        +
        즐거운 화이트데이입니다.

        + 달달한 하루보내시라고, 화이트 데이 사탕보냅니다.

        + 맛있게 드시고, 새콤달콤 행복한 하루보내세요~

        + *""*
        + *◆○*
        + *♡◎★*
        + ########
        + \_____/
        +
        +
        +

        0 / 90byte

        +
      • +
      • +
        +

        화이트 데이

        +
        +
        +
        즐거운 화이트데이입니다.

        + 달달한 하루보내시라고, 화이트 데이 사탕보냅니다.

        + 맛있게 드시고, 새콤달콤 행복한 하루보내세요~

        + *""*
        + *◆○*
        + *♡◎★*
        + ########
        + \_____/
        +
        +
        +

        0 / 90byte

        +
      • +
      • +
        +

        화이트 데이

        +
        +
        +
        즐거운 화이트데이입니다.

        + 달달한 하루보내시라고, 화이트 데이 사탕보냅니다.

        + 맛있게 드시고, 새콤달콤 행복한 하루보내세요~

        + *""*
        + *◆○*
        + *♡◎★*
        + ########
        + \_____/
        +
        +
        +

        0 / 90byte

        +
      • +
      • +
        +

        화이트 데이

        +
        +
        +
        즐거운 화이트데이입니다.

        + 달달한 하루보내시라고, 화이트 데이 사탕보냅니다.

        + 맛있게 드시고, 새콤달콤 행복한 하루보내세요~

        + *""*
        + *◆○*
        + *♡◎★*
        + ########
        + \_____/
        +
        +
        +

        0 / 90byte

        +
      • +
      • +
        +

        화이트 데이

        +
        +
        +
        즐거운 화이트데이입니다.

        + 달달한 하루보내시라고, 화이트 데이 사탕보냅니다.

        + 맛있게 드시고, 새콤달콤 행복한 하루보내세요~

        + *""*
        + *◆○*
        + *♡◎★*
        + ########
        + \_____/
        +
        +
        +

        0 / 90byte

        +
      • +
      + +
        +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      +
      + + +
      +
      +
      +
      + 전체 + 기업 + 개인 +
      전체
      +
      + + +
      + +
      +
      + +
      +
        +
      • +
        +
        +

        추석 입니다 추석 입니다 추석 입니다 추석 입니다

        +
        +
        + +
        +
      • +
      • +
        +
        +

        추석

        +
        +
        + +
        +
      • +
      • +
        +
        +

        추석

        +
        +
        + +
        +
      • +
      • +
        +
        +

        추석

        +
        +
        + +
        +
      • +
      • +
        +
        +

        추석

        +
        +
        + +
        +
      • +
      • +
        +
        +

        추석

        +
        +
        + +
        +
      • +
      • +
        +
        +

        추석

        +
        +
        + +
        +
      • +
      • +
        +
        +

        추석

        +
        +
        + +
        +
      • +
      • +
        +
        +

        추석

        +
        +
        + +
        +
      • +
      • +
        +
        +

        추석

        +
        +
        + +
        +
      • +
      + +
        +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      +
      + + +
      + + 지도 +
      + + +
      +
      +
      + · 기간 +
      + +
      + + +
      + ~ + +
      + +
      +
      + +
      +
      + + + +
      +
      +
      + + +

      ·11건의 보관된 문자가 있습니다. 메시지를 클릭하시면, 발송창에 입력됩니다.(내용 수정 및 저장은 발송창에서만 가능)

      +
      +
        +
      • +
        + + +

        화이트 데이 화이트 데이 화이트 데이

        +
        +
        +
        + +
        +
        즐거운 화이트데이입니다.

        + 달달한 하루보내시라고, 화이트 데이 사탕보냅니다.

        + 맛있게 드시고, 새콤달콤 행복한 하루보내세요~

        + *""*
        + *◆○*
        + *♡◎★*
        + ########
        + \_____/
        +
        +
        +

        0 / 90byte

        +
        +

        2021-01-01

        +
        +
      • +
      • +
        + + +

        화이트 데이

        +
        +
        +
        즐거운 화이트데이입니다.
        + 달달한 하루보내시라고, 화이트 데이 사탕보냅니다.
        + 맛있게 드시고, 새콤달콤 행복한 하루보내세요~ +
        +
        +

        0 / 90byte

        +
        +

        2021-01-01

        +
        +
      • +
      • +
        + + +

        화이트 데이

        +
        +
        +
        + +
        +
        + +
        +
        즐거운 화이트데이입니다.

        + 달달한 하루보내시라고, 화이트 데이 사탕보냅니다.

        + 맛있게 드시고, 새콤달콤 행복한 하루보내세요~

        + *""*
        + *◆○*
        + *♡◎★*
        + ########
        + \_____/
        +
        +
        +

        0 / 90byte

        +
        +

        2021-01-01

        +
        +
      • +
      • +
        + + +

        화이트 데이

        +
        +
        +
        + +
        +
        +

        0 / 90byte

        +
        +

        2021-01-01

        +
        +
      • +
      • +
        + + +

        화이트 데이

        +
        +
        +
        즐거운 화이트데이입니다.

        + 달달한 하루보내시라고, 화이트 데이 사탕보냅니다.

        + 맛있게 드시고, 새콤달콤 행복한 하루보내세요~

        + *""*
        + *◆○*
        + *♡◎★*
        + ########
        + \_____/
        +
        +
        +

        0 / 90byte

        +
        +

        2021-01-01

        +
        +
      • +
      • +
        + + +

        화이트 데이

        +
        +
        +
        즐거운 화이트데이입니다.

        + 달달한 하루보내시라고, 화이트 데이 사탕보냅니다.

        + 맛있게 드시고, 새콤달콤 행복한 하루보내세요~

        + *""*
        + *◆○*
        + *♡◎★*
        + ########
        + \_____/
        +
        +
        +

        0 / 90byte

        +
        +

        2021-01-01

        +
        +
      • +
      • +
        + + +

        화이트 데이

        +
        +
        +
        즐거운 화이트데이입니다.

        + 달달한 하루보내시라고, 화이트 데이 사탕보냅니다.

        + 맛있게 드시고, 새콤달콤 행복한 하루보내세요~

        + *""*
        + *◆○*
        + *♡◎★*
        + ########
        + \_____/
        +
        +
        +

        0 / 90byte

        +
        +

        2021-01-01

        +
        +
      • +
      • +
        + + +

        화이트 데이

        +
        +
        +
        즐거운 화이트데이입니다.

        + 달달한 하루보내시라고, 화이트 데이 사탕보냅니다.

        + 맛있게 드시고, 새콤달콤 행복한 하루보내세요~

        + *""*
        + *◆○*
        + *♡◎★*
        + ########
        + \_____/
        +
        +
        +

        0 / 90byte

        +
        +

        2021-01-01

        +
        +
      • +
      • +
        + + +

        화이트 데이

        +
        +
        +
        즐거운 화이트데이입니다.

        + 달달한 하루보내시라고, 화이트 데이 사탕보냅니다.

        + 맛있게 드시고, 새콤달콤 행복한 하루보내세요~

        + *""*
        + *◆○*
        + *♡◎★*
        + ########
        + \_____/
        +
        +
        +

        0 / 90byte

        +
        +

        2021-01-01

        +
        +
      • +
      • +
        + + +

        화이트 데이

        +
        +
        +
        즐거운 화이트데이입니다.

        + 달달한 하루보내시라고, 화이트 데이 사탕보냅니다.

        + 맛있게 드시고, 새콤달콤 행복한 하루보내세요~

        hayeon1014! + *""*
        + *◆○*
        + *♡◎★*
        + ########
        + \_____/
        +
        +
        +

        0 / 90byte

        +
        +

        2021-01-01

        +
        +
      • +
      + +
        +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      +
      + + +
      +
      + + +
      +
    + + +
    + + +
    + +
    0.3s Long-Click
    +

    버튼을 꾹~ 눌러보세요!

    + + + \ No newline at end of file diff --git a/src/main/webapp/publish/textingmsg_2022.html b/src/main/webapp/publish/textingmsg_2022.html index 77bf9b2c..48956378 100644 --- a/src/main/webapp/publish/textingmsg_2022.html +++ b/src/main/webapp/publish/textingmsg_2022.html @@ -709,7 +709,9 @@

    WEB

    + +

    테스트등록