Merge branch 'master' of http://dudgusw@vcs.iten.co.kr:9999/hylee/mjon_git
@b0f34774ec8538649232f306a371a25878dc016d
--- src/main/java/itn/let/cop/bbs/web/EgovBBSManageController.java
+++ src/main/java/itn/let/cop/bbs/web/EgovBBSManageController.java
... | ... | @@ -1628,6 +1628,16 @@ |
| 1628 | 1628 |
return "redirect:/web/user/login/login.do"; |
| 1629 | 1629 |
} |
| 1630 | 1630 |
|
| 1631 |
+ /** |
|
| 1632 |
+ * 회원 정지된 상태이면 1:1 등록 화면으로 이동되지 않도록 처리 |
|
| 1633 |
+ * */ |
|
| 1634 |
+ boolean mberSttus = userManageService.selectUserStatusInfo(userId); |
|
| 1635 |
+ |
|
| 1636 |
+ if(!mberSttus) {
|
|
| 1637 |
+ return "redirect:/web/uat/uia/actionLogout.do"; |
|
| 1638 |
+ } |
|
| 1639 |
+ |
|
| 1640 |
+ |
|
| 1631 | 1641 |
MberManageVO mberManageVO = new MberManageVO(); |
| 1632 | 1642 |
mberManageVO.setMberId(user.getId()); |
| 1633 | 1643 |
|
--- src/main/java/itn/let/fax/admin/service/FaxStatVO.java
+++ src/main/java/itn/let/fax/admin/service/FaxStatVO.java
... | ... | @@ -25,6 +25,9 @@ |
| 25 | 25 |
private int statEndDate; //통계 종료일 |
| 26 | 26 |
private int statStandardDate; //통계 where 기준 |
| 27 | 27 |
|
| 28 |
+ private int succPageCnt; //팩스 성공 페이지 수 |
|
| 29 |
+ private int failPageCnt; //팩스 실패 페이지 수 |
|
| 30 |
+ |
|
| 28 | 31 |
public String getReqDate() {
|
| 29 | 32 |
return reqDate; |
| 30 | 33 |
} |
... | ... | @@ -115,5 +118,17 @@ |
| 115 | 118 |
public void setStatStandardDate(int statStandardDate) {
|
| 116 | 119 |
this.statStandardDate = statStandardDate; |
| 117 | 120 |
} |
| 121 |
+ public int getSuccPageCnt() {
|
|
| 122 |
+ return succPageCnt; |
|
| 123 |
+ } |
|
| 124 |
+ public void setSuccPageCnt(int succPageCnt) {
|
|
| 125 |
+ this.succPageCnt = succPageCnt; |
|
| 126 |
+ } |
|
| 127 |
+ public int getFailPageCnt() {
|
|
| 128 |
+ return failPageCnt; |
|
| 129 |
+ } |
|
| 130 |
+ public void setFailPageCnt(int failPageCnt) {
|
|
| 131 |
+ this.failPageCnt = failPageCnt; |
|
| 132 |
+ } |
|
| 118 | 133 |
|
| 119 | 134 |
} |
--- src/main/java/itn/let/fax/admin/service/impl/FaxAdmServiceImpl.java
+++ src/main/java/itn/let/fax/admin/service/impl/FaxAdmServiceImpl.java
... | ... | @@ -26,7 +26,6 @@ |
| 26 | 26 |
import itn.let.fax.admin.service.FaxStatVO; |
| 27 | 27 |
import itn.let.fax.user.service.FaxGroupDataVO; |
| 28 | 28 |
import itn.let.fax.user.service.impl.FaxDAO; |
| 29 |
-import itn.let.mjo.msg.service.MjonMsgVO; |
|
| 30 | 29 |
import itn.let.mjo.msgdata.service.impl.MjonMsgDataDAO; |
| 31 | 30 |
import itn.let.mjo.pay.service.impl.MjonPayDAO; |
| 32 | 31 |
import itn.let.module.base.PriceAndPoint; |
... | ... | @@ -128,7 +127,8 @@ |
| 128 | 127 |
|
| 129 | 128 |
faxStatVO.setFirstIndex(paginationInfo.getFirstRecordIndex()); |
| 130 | 129 |
faxStatVO.setLastIndex(paginationInfo.getLastRecordIndex()); |
| 131 |
- faxStatVO.setRecordCountPerPage(paginationInfo.getRecordCountPerPage()); |
|
| 130 |
+ //faxStatVO.setRecordCountPerPage(paginationInfo.getRecordCountPerPage()); |
|
| 131 |
+ faxStatVO.setRecordCountPerPage(1000); |
|
| 132 | 132 |
|
| 133 | 133 |
// 최초 접근 시 오늘 날짜의 통계를 보여준다 |
| 134 | 134 |
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd");
|
... | ... | @@ -212,12 +212,16 @@ |
| 212 | 212 |
double succFaxCost = 0; |
| 213 | 213 |
double failFaxCost = 0; |
| 214 | 214 |
double succFaxRate = 0; |
| 215 |
+ int succPageCnt = 0; |
|
| 216 |
+ int failPageCnt = 0; |
|
| 215 | 217 |
|
| 216 | 218 |
for(FaxStatVO tmpVO : list) {
|
| 217 | 219 |
succFaxCnt += tmpVO.getSuccFaxCnt(); |
| 218 | 220 |
failFaxCnt += tmpVO.getFailFaxCnt(); |
| 219 | 221 |
succFaxCost += Double.parseDouble(tmpVO.getSuccFaxCost()); |
| 220 | 222 |
failFaxCost += Double.parseDouble(tmpVO.getFailFaxCost()); |
| 223 |
+ succPageCnt += tmpVO.getSuccPageCnt(); |
|
| 224 |
+ failPageCnt += tmpVO.getFailPageCnt(); |
|
| 221 | 225 |
} |
| 222 | 226 |
|
| 223 | 227 |
if(succFaxCnt + succFaxCnt != 0) {
|
... | ... | @@ -236,6 +240,8 @@ |
| 236 | 240 |
faxStatVO.setSuccFaxCost(dcf.format(succFaxCost)); |
| 237 | 241 |
faxStatVO.setFailFaxCost(dcf.format(failFaxCost)); |
| 238 | 242 |
faxStatVO.setSuccFaxRate(Double.toString(succFaxRate)); |
| 243 |
+ faxStatVO.setSuccPageCnt(succPageCnt); |
|
| 244 |
+ faxStatVO.setFailPageCnt(failPageCnt); |
|
| 239 | 245 |
|
| 240 | 246 |
List<FaxStatVO> totalSumList = new ArrayList<FaxStatVO>(); |
| 241 | 247 |
totalSumList.add(faxStatVO); |
--- src/main/java/itn/let/fax/admin/web/FaxAdmController.java
+++ src/main/java/itn/let/fax/admin/web/FaxAdmController.java
... | ... | @@ -324,6 +324,7 @@ |
| 324 | 324 |
return "/uss/ion/fax/faxAdmSendStatistics"; |
| 325 | 325 |
} |
| 326 | 326 |
|
| 327 |
+ |
|
| 327 | 328 |
// 팩스 금일 발송통계 갱신 |
| 328 | 329 |
@RequestMapping(value = "/uss/ion/msg/insertFaxCountStatTodayAjax.do") |
| 329 | 330 |
public ResponseEntity<StatusResponse> insertFaxCountStatTodayAjax(FaxStatVO faxStatVO) throws Exception {
|
--- src/main/java/itn/let/fax/user/web/FaxRestController.java
+++ src/main/java/itn/let/fax/user/web/FaxRestController.java
... | ... | @@ -6,6 +6,7 @@ |
| 6 | 6 |
|
| 7 | 7 |
import javax.annotation.Resource; |
| 8 | 8 |
import javax.imageio.ImageIO; |
| 9 |
+import javax.servlet.http.HttpServletRequest; |
|
| 9 | 10 |
|
| 10 | 11 |
import org.apache.commons.lang3.StringUtils; |
| 11 | 12 |
import org.apache.pdfbox.pdmodel.PDDocument; |
... | ... | @@ -29,6 +30,7 @@ |
| 29 | 30 |
import itn.let.fax.user.service.FaxService; |
| 30 | 31 |
import itn.let.fax.user.service.FaxTranVO; |
| 31 | 32 |
import itn.let.mail.service.StatusResponse; |
| 33 |
+import itn.let.uss.umt.service.EgovUserManageService; |
|
| 32 | 34 |
|
| 33 | 35 |
/** |
| 34 | 36 |
* |
... | ... | @@ -49,6 +51,10 @@ |
| 49 | 51 |
|
| 50 | 52 |
@Resource(name = "faxService") |
| 51 | 53 |
private FaxService faxService; |
| 54 |
+ |
|
| 55 |
+ /** userManageService */ |
|
| 56 |
+ @Resource(name = "userManageService") |
|
| 57 |
+ private EgovUserManageService userManageService; |
|
| 52 | 58 |
|
| 53 | 59 |
private static final Logger logger = LoggerFactory.getLogger(FaxRestController.class); |
| 54 | 60 |
|
... | ... | @@ -124,7 +130,7 @@ |
| 124 | 130 |
* @throws Exception |
| 125 | 131 |
*/ |
| 126 | 132 |
@RequestMapping(value= {"/web/mjon/fax/sendData.do"})
|
| 127 |
- public ResponseEntity<StatusResponse> sendData(FaxTranVO faxTranVO) throws Exception{
|
|
| 133 |
+ public ResponseEntity<StatusResponse> sendData(FaxTranVO faxTranVO, HttpServletRequest request) throws Exception{
|
|
| 128 | 134 |
//로그인 권한정보 불러오기 |
| 129 | 135 |
LoginVO loginVO = EgovUserDetailsHelper.isAuthenticated()? (LoginVO)EgovUserDetailsHelper.getAuthenticatedUser():null; |
| 130 | 136 |
String userId = loginVO == null ? "" : EgovStringUtil.isNullToString(loginVO.getId()); |
... | ... | @@ -132,6 +138,16 @@ |
| 132 | 138 |
// 로그인 안되어있음 return |
| 133 | 139 |
if(StringUtils.isEmpty(userId)) return ResponseEntity.ok().body(new StatusResponse(HttpStatus.BAD_REQUEST, "로그인 후 이용해 주세요", LocalDateTime.now())); |
| 134 | 140 |
|
| 141 |
+ /** |
|
| 142 |
+ * 회원 정지된 상태이면 팩스 발송이되지 않도록 처리 |
|
| 143 |
+ * */ |
|
| 144 |
+ boolean mberSttus = userManageService.selectUserStatusInfo(userId); |
|
| 145 |
+ |
|
| 146 |
+ if(!mberSttus) {
|
|
| 147 |
+ request.getSession().invalidate(); |
|
| 148 |
+ return ResponseEntity.ok().body(new StatusResponse(HttpStatus.BAD_REQUEST, "현재 고객님께서는 문자온 서비스 이용이 정지된 상태로 팩스를 발송하실 수 없습니다. 이용정지 해제를 원하시면 고객센터로 연락주시기 바랍니다.", LocalDateTime.now())); |
|
| 149 |
+ } |
|
| 150 |
+ |
|
| 135 | 151 |
try {
|
| 136 | 152 |
return ResponseEntity.ok().body(faxService.sendData(faxTranVO, userId)); |
| 137 | 153 |
// return ResponseEntity.ok().body(new StatusResponse(HttpStatus.BAD_REQUEST, "임시 성공.", LocalDateTime.now())); |
--- src/main/java/itn/let/kakao/user/kakaoAt/web/KakaoAlimTalkController.java
+++ src/main/java/itn/let/kakao/user/kakaoAt/web/KakaoAlimTalkController.java
... | ... | @@ -23,6 +23,7 @@ |
| 23 | 23 |
import itn.let.kakao.kakaoComm.kakaoApi.KakaoApiProfileCategory; |
| 24 | 24 |
import itn.let.kakao.kakaoComm.kakaoApi.service.KakaoApiService; |
| 25 | 25 |
import itn.let.kakao.user.kakaoAt.service.KakaoAlimTalkService; |
| 26 |
+import itn.let.uss.umt.service.EgovUserManageService; |
|
| 26 | 27 |
|
| 27 | 28 |
@Controller |
| 28 | 29 |
public class KakaoAlimTalkController {
|
... | ... | @@ -35,6 +36,10 @@ |
| 35 | 36 |
|
| 36 | 37 |
@Resource(name = "kakaoAlimTalkService") |
| 37 | 38 |
private KakaoAlimTalkService kakaoAlimTalkService; |
| 39 |
+ |
|
| 40 |
+ /** userManageService */ |
|
| 41 |
+ @Resource(name = "userManageService") |
|
| 42 |
+ private EgovUserManageService userManageService; |
|
| 38 | 43 |
|
| 39 | 44 |
/** EgovMessageSource */ |
| 40 | 45 |
@Resource(name="egovMessageSource") |
... | ... | @@ -58,6 +63,16 @@ |
| 58 | 63 |
} |
| 59 | 64 |
model.addAttribute("loginVO", loginVO);
|
| 60 | 65 |
|
| 66 |
+ /** |
|
| 67 |
+ * 회원 정지된 상태이면 알림톡 설정화면으로 이동되지 않도록 처리 |
|
| 68 |
+ * */ |
|
| 69 |
+ boolean mberSttus = userManageService.selectUserStatusInfo(userId); |
|
| 70 |
+ |
|
| 71 |
+ if(!mberSttus) {
|
|
| 72 |
+ return "redirect:/web/uat/uia/actionLogout.do"; |
|
| 73 |
+ } |
|
| 74 |
+ |
|
| 75 |
+ |
|
| 61 | 76 |
KakaoVO kakaoVO = new KakaoVO(); |
| 62 | 77 |
kakaoVO.setUserId(userId); |
| 63 | 78 |
kakaoVO.setCategoryDepth("1");
|
--- src/main/java/itn/let/kakao/user/kakaoAt/web/KakaoAlimTalkSendController.java
+++ src/main/java/itn/let/kakao/user/kakaoAt/web/KakaoAlimTalkSendController.java
... | ... | @@ -15,6 +15,7 @@ |
| 15 | 15 |
import java.util.stream.Collectors; |
| 16 | 16 |
|
| 17 | 17 |
import javax.annotation.Resource; |
| 18 |
+import javax.servlet.http.HttpServletRequest; |
|
| 18 | 19 |
import javax.servlet.http.HttpServletResponse; |
| 19 | 20 |
|
| 20 | 21 |
import org.apache.poi.ss.usermodel.Cell; |
... | ... | @@ -50,7 +51,6 @@ |
| 50 | 51 |
import itn.let.kakao.kakaoComm.kakaoApi.service.KakaoApiService; |
| 51 | 52 |
import itn.let.kakao.user.kakaoAt.service.KakaoAlimTalkService; |
| 52 | 53 |
import itn.let.mjo.mjocommon.MjonCommon; |
| 53 |
-import itn.let.mjo.msg.service.MjonMsgVO; |
|
| 54 | 54 |
import itn.let.mjo.msgdata.service.MjonMsgDataService; |
| 55 | 55 |
import itn.let.mjo.msgdata.service.MjonMsgDataVO; |
| 56 | 56 |
import itn.let.mjo.msgdata.service.MjonMsgReturnVO; |
... | ... | @@ -473,6 +473,7 @@ |
| 473 | 473 |
// @ResponseBody |
| 474 | 474 |
public ModelAndView kakaoAlimTalkMsgSendAjax( |
| 475 | 475 |
// @RequestBody KakaoVO kakaoVO |
| 476 |
+ HttpServletRequest request, |
|
| 476 | 477 |
@ModelAttribute("kakaoVO") KakaoVO kakaoVO
|
| 477 | 478 |
) throws Exception {
|
| 478 | 479 |
ModelAndView modelAndView = new ModelAndView(); |
... | ... | @@ -492,6 +493,24 @@ |
| 492 | 493 |
modelAndView.addObject("result", "loginFail");
|
| 493 | 494 |
return modelAndView; |
| 494 | 495 |
}else {
|
| 496 |
+ |
|
| 497 |
+ /** |
|
| 498 |
+ * 회원 정지된 상태이면 알림톡 발송이 안되도록 처리함 |
|
| 499 |
+ * 현재 로그인 세션도 만료 처리함 |
|
| 500 |
+ * */ |
|
| 501 |
+ boolean mberSttus = userManageService.selectUserStatusInfo(userId); |
|
| 502 |
+ |
|
| 503 |
+ if(!mberSttus) {
|
|
| 504 |
+ |
|
| 505 |
+ modelAndView.addObject("message", "현재 고객님께서는 문자온 서비스 이용이 정지된 상태로 알림톡을 발송하실 수 없습니다. 이용정지 해제를 원하시면 고객센터로 연락주시기 바랍니다.");
|
|
| 506 |
+ modelAndView.addObject("result", "authFail");
|
|
| 507 |
+ |
|
| 508 |
+ request.getSession().invalidate(); |
|
| 509 |
+ |
|
| 510 |
+ return modelAndView; |
|
| 511 |
+ |
|
| 512 |
+ } |
|
| 513 |
+ |
|
| 495 | 514 |
/** 카카오톡 전송 기본 설정 -------------------------------------------*/ |
| 496 | 515 |
kakaoVO.setSendType("AT");
|
| 497 | 516 |
kakaoVO.setMsgType("8");
|
--- src/main/java/itn/let/kakao/user/kakaoAt/web/KakaoAlimTalkTemplateController.java
+++ src/main/java/itn/let/kakao/user/kakaoAt/web/KakaoAlimTalkTemplateController.java
... | ... | @@ -39,6 +39,7 @@ |
| 39 | 39 |
import itn.let.mjo.symbol.service.MjonSymbolService; |
| 40 | 40 |
import itn.let.mjo.symbol.service.MjonSymbolVO; |
| 41 | 41 |
import itn.let.uss.ion.cnt.service.CntManageVO; |
| 42 |
+import itn.let.uss.umt.service.EgovUserManageService; |
|
| 42 | 43 |
|
| 43 | 44 |
@Controller |
| 44 | 45 |
public class KakaoAlimTalkTemplateController {
|
... | ... | @@ -51,6 +52,10 @@ |
| 51 | 52 |
|
| 52 | 53 |
@Resource(name = "kakaoAlimTalkService") |
| 53 | 54 |
private KakaoAlimTalkService kakaoAlimTalkService; |
| 55 |
+ |
|
| 56 |
+ /** userManageService */ |
|
| 57 |
+ @Resource(name = "userManageService") |
|
| 58 |
+ private EgovUserManageService userManageService; |
|
| 54 | 59 |
|
| 55 | 60 |
/** EgovMessageSource */ |
| 56 | 61 |
@Resource(name="egovMessageSource") |
... | ... | @@ -101,6 +106,15 @@ |
| 101 | 106 |
} |
| 102 | 107 |
model.addAttribute("loginVO", loginVO);
|
| 103 | 108 |
|
| 109 |
+ /** |
|
| 110 |
+ * 회원 정지된 상태이면 알림톡 템플릿 등록 화면으로 이동되지 않도록 처리 |
|
| 111 |
+ * */ |
|
| 112 |
+ boolean mberSttus = userManageService.selectUserStatusInfo(userId); |
|
| 113 |
+ |
|
| 114 |
+ if(!mberSttus) {
|
|
| 115 |
+ return "redirect:/web/uat/uia/actionLogout.do"; |
|
| 116 |
+ } |
|
| 117 |
+ |
|
| 104 | 118 |
KakaoVO kakaoVO = new KakaoVO(); |
| 105 | 119 |
kakaoVO.setUserId(userId); |
| 106 | 120 |
kakaoVO.setCategoryDepth("1");
|
--- src/main/java/itn/let/kakao/user/stepInfo/web/KakaoStepInfoController.java
+++ src/main/java/itn/let/kakao/user/stepInfo/web/KakaoStepInfoController.java
... | ... | @@ -26,6 +26,7 @@ |
| 26 | 26 |
import itn.let.cop.bbs.service.BoardVO; |
| 27 | 27 |
import itn.let.cop.bbs.service.EgovBBSAttributeManageService; |
| 28 | 28 |
import itn.let.cop.bbs.service.EgovBBSManageService; |
| 29 |
+import itn.let.uss.umt.service.EgovUserManageService; |
|
| 29 | 30 |
|
| 30 | 31 |
@Controller |
| 31 | 32 |
public class KakaoStepInfoController {
|
... | ... | @@ -42,6 +43,10 @@ |
| 42 | 43 |
|
| 43 | 44 |
@Resource(name = "EgovFileMngService") |
| 44 | 45 |
private EgovFileMngService fileService; |
| 46 |
+ |
|
| 47 |
+ /** userManageService */ |
|
| 48 |
+ @Resource(name = "userManageService") |
|
| 49 |
+ private EgovUserManageService userManageService; |
|
| 45 | 50 |
|
| 46 | 51 |
|
| 47 | 52 |
/** |
... | ... | @@ -64,6 +69,15 @@ |
| 64 | 69 |
} |
| 65 | 70 |
model.addAttribute("loginVO", loginVO);
|
| 66 | 71 |
|
| 72 |
+ /** |
|
| 73 |
+ * 회원 정지된 상태이면 알림톡 사용안내 화면으로 이동되지 않도록 처리 |
|
| 74 |
+ * */ |
|
| 75 |
+ boolean mberSttus = userManageService.selectUserStatusInfo(userId); |
|
| 76 |
+ |
|
| 77 |
+ if(!mberSttus) {
|
|
| 78 |
+ return "redirect:/web/uat/uia/actionLogout.do"; |
|
| 79 |
+ } |
|
| 80 |
+ |
|
| 67 | 81 |
BoardMasterVO bmVO = new BoardMasterVO(); |
| 68 | 82 |
PaginationInfo paginationInfo = new PaginationInfo(); |
| 69 | 83 |
Map<String, Object> map = new HashMap<String, Object>(); |
--- src/main/java/itn/let/mjo/msgcampain/service/MjonCandidateService.java
+++ src/main/java/itn/let/mjo/msgcampain/service/MjonCandidateService.java
... | ... | @@ -13,4 +13,7 @@ |
| 13 | 13 |
|
| 14 | 14 |
// 선거문자 후보자 삭제 처리 |
| 15 | 15 |
public int deleteCandidateDataInfo(MjonCandidateVO mjonCandidateVO) throws Exception; |
| 16 |
+ |
|
| 17 |
+ // 선거문자 후보자 등록/수정시 회원정보 테이블 세금계산서 정보 수정해주기 |
|
| 18 |
+ public int updateTaxBillMemberInfo(MjonCandidateVO mjonCandidateVO) throws Exception; |
|
| 16 | 19 |
} |
--- src/main/java/itn/let/mjo/msgcampain/service/MjonCandidateVO.java
+++ src/main/java/itn/let/mjo/msgcampain/service/MjonCandidateVO.java
... | ... | @@ -21,7 +21,8 @@ |
| 21 | 21 |
private String lastUpdusrId; |
| 22 | 22 |
|
| 23 | 23 |
private String dataType; |
| 24 |
- |
|
| 24 |
+ private String emailFullStr; |
|
| 25 |
+ private String regidentNoFullStr; |
|
| 25 | 26 |
|
| 26 | 27 |
public int getCandidateId() {
|
| 27 | 28 |
return candidateId; |
... | ... | @@ -120,10 +121,18 @@ |
| 120 | 121 |
public void setDataType(String dataType) {
|
| 121 | 122 |
this.dataType = dataType; |
| 122 | 123 |
} |
| 123 |
- |
|
| 124 |
- |
|
| 125 |
- |
|
| 126 |
- |
|
| 127 |
- |
|
| 124 |
+ public String getEmailFullStr() {
|
|
| 125 |
+ return emailFullStr; |
|
| 126 |
+ } |
|
| 127 |
+ public void setEmailFullStr(String emailFullStr) {
|
|
| 128 |
+ this.emailFullStr = emailFullStr; |
|
| 129 |
+ } |
|
| 130 |
+ public String getRegidentNoFullStr() {
|
|
| 131 |
+ return regidentNoFullStr; |
|
| 132 |
+ } |
|
| 133 |
+ public void setRegidentNoFullStr(String regidentNoFullStr) {
|
|
| 134 |
+ this.regidentNoFullStr = regidentNoFullStr; |
|
| 135 |
+ } |
|
| 136 |
+ |
|
| 128 | 137 |
|
| 129 | 138 |
} |
--- src/main/java/itn/let/mjo/msgcampain/service/impl/MjonCandidateDAO.java
+++ src/main/java/itn/let/mjo/msgcampain/service/impl/MjonCandidateDAO.java
... | ... | @@ -27,4 +27,10 @@ |
| 27 | 27 |
|
| 28 | 28 |
return update("mjonCandidateDAO.deleteCandidateDataInfo", mjonCandidateVO);
|
| 29 | 29 |
} |
| 30 |
+ |
|
| 31 |
+ // 선거문자 후보자 등록/수정시 회원정보 테이블 세금계산서 정보 수정해주기 |
|
| 32 |
+ public int updateTaxBillMemberInfo(MjonCandidateVO mjonCandidateVO) throws Exception{
|
|
| 33 |
+ |
|
| 34 |
+ return update("mjonCandidateDAO.updateTaxBillMemberInfo", mjonCandidateVO);
|
|
| 35 |
+ } |
|
| 30 | 36 |
} |
--- src/main/java/itn/let/mjo/msgcampain/service/impl/MjonCandidateServiceImpl.java
+++ src/main/java/itn/let/mjo/msgcampain/service/impl/MjonCandidateServiceImpl.java
... | ... | @@ -33,4 +33,9 @@ |
| 33 | 33 |
|
| 34 | 34 |
return mjonCandidateDAO.deleteCandidateDataInfo(mjonCandidateVO); |
| 35 | 35 |
} |
| 36 |
+ |
|
| 37 |
+ // 선거문자 후보자 등록/수정시 회원정보 테이블 세금계산서 정보 수정해주기 |
|
| 38 |
+ public int updateTaxBillMemberInfo(MjonCandidateVO mjonCandidateVO) throws Exception{
|
|
| 39 |
+ return mjonCandidateDAO.updateTaxBillMemberInfo(mjonCandidateVO); |
|
| 40 |
+ } |
|
| 36 | 41 |
} |
--- src/main/java/itn/let/mjo/msgcampain/web/MjonMsgCampainDataController.java
+++ src/main/java/itn/let/mjo/msgcampain/web/MjonMsgCampainDataController.java
... | ... | @@ -570,6 +570,7 @@ |
| 570 | 570 |
model.addAttribute("resultPhoList", resultPhoList);
|
| 571 | 571 |
paginationInfo.setTotalRecordCount( resultPhoList.size()> 0 ? ((Long)((EgovMap)resultPhoList.get(0)).get("totCnt")).intValue() : 0);
|
| 572 | 572 |
model.addAttribute("paginationInfo", paginationInfo);
|
| 573 |
+ model.addAttribute("mberManageVO", mberManageVO);
|
|
| 573 | 574 |
|
| 574 | 575 |
return "web/msgcampain/MsgDataSMLView"; |
| 575 | 576 |
} |
... | ... | @@ -598,65 +599,97 @@ |
| 598 | 599 |
LoginVO loginVO = EgovUserDetailsHelper.isAuthenticated()? (LoginVO)EgovUserDetailsHelper.getAuthenticatedUser():null; |
| 599 | 600 |
String userId = loginVO == null ? "" : EgovStringUtil.isNullToString(loginVO.getId()); |
| 600 | 601 |
|
| 601 |
- if(userId.equals("")) {
|
|
| 602 |
+ try {
|
|
| 602 | 603 |
|
| 603 |
- modelAndView.addObject("result", "loginFail");
|
|
| 604 |
- modelAndView.addObject("message", "로그인이 필요합니다.");
|
|
| 605 |
- return modelAndView; |
|
| 604 |
+ if(userId.equals("")) {
|
|
| 605 |
+ |
|
| 606 |
+ modelAndView.addObject("result", "loginFail");
|
|
| 607 |
+ modelAndView.addObject("message", "로그인이 필요합니다.");
|
|
| 608 |
+ return modelAndView; |
|
| 609 |
+ |
|
| 610 |
+ }else {
|
|
| 611 |
+ |
|
| 612 |
+ mjonCandidateVO.setMberId(userId); |
|
| 613 |
+ |
|
| 614 |
+ } |
|
| 606 | 615 |
|
| 607 |
- }else {
|
|
| 616 |
+ MjonVOParamXssValues XssParam = new MjonVOParamXssValues(); |
|
| 617 |
+ |
|
| 618 |
+ int XssCnt = XssParam.buildUri(mjonCandidateVO); |
|
| 619 |
+ |
|
| 620 |
+ if(XssCnt > 0) {
|
|
| 621 |
+ |
|
| 622 |
+ modelAndView.addObject("result", "fail");
|
|
| 623 |
+ modelAndView.addObject("message", "후보자 등록 정보에 잘못된 문자열이 있습니다.");
|
|
| 624 |
+ return modelAndView; |
|
| 625 |
+ |
|
| 626 |
+ } |
|
| 627 |
+ |
|
| 628 |
+ int resultCnt = 0; |
|
| 629 |
+ String dataType = mjonCandidateVO.getDataType(); |
|
| 608 | 630 |
|
| 609 |
- mjonCandidateVO.setMberId(userId); |
|
| 631 |
+ //주민번호 앞, 뒷 자리 암호화 처리하기 |
|
| 632 |
+ String regidentNo1 = egovCryptoUtil.encrypt(mjonCandidateVO.getRegidentNo1()); |
|
| 633 |
+ String regidentNo2 = egovCryptoUtil.encrypt(mjonCandidateVO.getRegidentNo2()); |
|
| 610 | 634 |
|
| 611 |
- } |
|
| 612 |
- |
|
| 613 |
- MjonVOParamXssValues XssParam = new MjonVOParamXssValues(); |
|
| 614 |
- |
|
| 615 |
- int XssCnt = XssParam.buildUri(mjonCandidateVO); |
|
| 616 |
- |
|
| 617 |
- if(XssCnt > 0) {
|
|
| 635 |
+ mjonCandidateVO.setRegidentNo1(regidentNo1); |
|
| 636 |
+ mjonCandidateVO.setRegidentNo2(regidentNo2); |
|
| 618 | 637 |
|
| 619 |
- modelAndView.addObject("result", "fail");
|
|
| 620 |
- modelAndView.addObject("message", "후보자 등록 정보에 잘못된 문자열이 있습니다.");
|
|
| 621 |
- return modelAndView; |
|
| 638 |
+ if(dataType.equals("Upt")) {
|
|
| 639 |
+ |
|
| 640 |
+ resultCnt = mjonCandidateService.updateCandidateDataInfo(mjonCandidateVO); |
|
| 641 |
+ |
|
| 642 |
+ }else {
|
|
| 643 |
+ |
|
| 644 |
+ resultCnt = mjonCandidateService.insertCandidateDataInfo(mjonCandidateVO); |
|
| 645 |
+ |
|
| 646 |
+ } |
|
| 622 | 647 |
|
| 623 |
- } |
|
| 624 |
- |
|
| 625 |
- int resultCnt = 0; |
|
| 626 |
- String dataType = mjonCandidateVO.getDataType(); |
|
| 627 |
- |
|
| 628 |
- //주민번호 앞, 뒷 자리 암호화 처리하기 |
|
| 629 |
- String regidentNo1 = egovCryptoUtil.encrypt(mjonCandidateVO.getRegidentNo1()); |
|
| 630 |
- String regidentNo2 = egovCryptoUtil.encrypt(mjonCandidateVO.getRegidentNo2()); |
|
| 631 |
- |
|
| 632 |
- mjonCandidateVO.setRegidentNo1(regidentNo1); |
|
| 633 |
- mjonCandidateVO.setRegidentNo2(regidentNo2); |
|
| 634 |
- |
|
| 635 |
- if(dataType.equals("Upt")) {
|
|
| 648 |
+ /* |
|
| 649 |
+ * 20231122 우영두 수정 |
|
| 650 |
+ * 후보자 등록/수정시 후보자 정보에 대한 세금계산서 정보가 등록되어야 함. |
|
| 651 |
+ * 선거문자를 이용하는 개인 회원은 세금계산서를 후보자에 대한 것을 신청하기 때문에 회원정보의 세금계산서 정보를 업데이트 하도록 함. |
|
| 652 |
+ * |
|
| 653 |
+ * */ |
|
| 654 |
+ if(resultCnt > 0) {
|
|
| 655 |
+ |
|
| 656 |
+ //후보자 담당자 이메일 주소 합쳐주기 |
|
| 657 |
+ mjonCandidateVO.setEmailFullStr(mjonCandidateVO.getEmail() + "@" + mjonCandidateVO.getEmailDomain()); |
|
| 658 |
+ |
|
| 659 |
+ // 주민번호 복호화 하기 |
|
| 660 |
+ regidentNo1 = egovCryptoUtil.decrypt(mjonCandidateVO.getRegidentNo1()); |
|
| 661 |
+ regidentNo2 = egovCryptoUtil.decrypt(mjonCandidateVO.getRegidentNo2()); |
|
| 662 |
+ |
|
| 663 |
+ mjonCandidateVO.setRegidentNoFullStr(regidentNo1+regidentNo2); |
|
| 664 |
+ |
|
| 665 |
+ mjonCandidateService.updateTaxBillMemberInfo(mjonCandidateVO); |
|
| 666 |
+ |
|
| 667 |
+ } |
|
| 668 |
+ |
|
| 669 |
+ if(resultCnt > 0 && dataType.equals("Upt")) {
|
|
| 670 |
+ |
|
| 671 |
+ modelAndView.addObject("result", "success");
|
|
| 672 |
+ modelAndView.addObject("message", "후보자 정보의 수정이 완료되었습니다.");
|
|
| 673 |
+ |
|
| 674 |
+ }else if(resultCnt > 0 && dataType.equals("Reg")) {
|
|
| 675 |
+ |
|
| 676 |
+ modelAndView.addObject("result", "success");
|
|
| 677 |
+ modelAndView.addObject("message", "후보자 등록이 완료되었습니다.");
|
|
| 678 |
+ |
|
| 679 |
+ }else {
|
|
| 680 |
+ |
|
| 681 |
+ modelAndView.addObject("result", "fail");
|
|
| 682 |
+ modelAndView.addObject("message", "후보자 등록에 오류가 발생하였습니다.");
|
|
| 683 |
+ |
|
| 684 |
+ } |
|
| 636 | 685 |
|
| 637 |
- resultCnt = mjonCandidateService.updateCandidateDataInfo(mjonCandidateVO); |
|
| 638 |
- |
|
| 639 |
- }else {
|
|
| 640 |
- |
|
| 641 |
- resultCnt = mjonCandidateService.insertCandidateDataInfo(mjonCandidateVO); |
|
| 642 |
- |
|
| 643 |
- } |
|
| 644 |
- |
|
| 645 |
- |
|
| 646 |
- if(resultCnt > 0 && dataType.equals("Upt")) {
|
|
| 647 |
- |
|
| 648 |
- modelAndView.addObject("result", "success");
|
|
| 649 |
- modelAndView.addObject("message", "후보자 정보의 수정이 완료되었습니다.");
|
|
| 650 |
- |
|
| 651 |
- }else if(resultCnt > 0 && dataType.equals("Reg")) {
|
|
| 652 |
- |
|
| 653 |
- modelAndView.addObject("result", "success");
|
|
| 654 |
- modelAndView.addObject("message", "후보자 등록이 완료되었습니다.");
|
|
| 655 |
- |
|
| 656 |
- }else {
|
|
| 686 |
+ } catch (Exception e) {
|
|
| 687 |
+ System.out.println("insertCandidateDataInfoAjax Controller Error!!! " + e);
|
|
| 657 | 688 |
|
| 658 | 689 |
modelAndView.addObject("result", "fail");
|
| 659 | 690 |
modelAndView.addObject("message", "후보자 등록에 오류가 발생하였습니다.");
|
| 691 |
+ |
|
| 692 |
+ return modelAndView; |
|
| 660 | 693 |
|
| 661 | 694 |
} |
| 662 | 695 |
|
... | ... | @@ -686,40 +719,47 @@ |
| 686 | 719 |
LoginVO loginVO = EgovUserDetailsHelper.isAuthenticated()? (LoginVO)EgovUserDetailsHelper.getAuthenticatedUser():null; |
| 687 | 720 |
String userId = loginVO == null ? "" : EgovStringUtil.isNullToString(loginVO.getId()); |
| 688 | 721 |
|
| 689 |
- if(userId.equals("")) {
|
|
| 722 |
+ try {
|
|
| 723 |
+ |
|
| 724 |
+ if(userId.equals("")) {
|
|
| 725 |
+ |
|
| 726 |
+ modelAndView.addObject("result", "loginFail");
|
|
| 727 |
+ modelAndView.addObject("message", "로그인이 필요합니다.");
|
|
| 728 |
+ return modelAndView; |
|
| 729 |
+ |
|
| 730 |
+ }else {
|
|
| 731 |
+ |
|
| 732 |
+ mjonCandidateVO.setMberId(userId); |
|
| 733 |
+ |
|
| 734 |
+ } |
|
| 690 | 735 |
|
| 691 |
- modelAndView.addObject("result", "loginFail");
|
|
| 692 |
- modelAndView.addObject("message", "로그인이 필요합니다.");
|
|
| 693 |
- return modelAndView; |
|
| 736 |
+ MjonVOParamXssValues XssParam = new MjonVOParamXssValues(); |
|
| 737 |
+ |
|
| 738 |
+ int XssCnt = XssParam.buildUri(mjonCandidateVO); |
|
| 739 |
+ |
|
| 740 |
+ int resultCnt = 0; |
|
| 694 | 741 |
|
| 695 |
- }else {
|
|
| 742 |
+ resultCnt = mjonCandidateService.deleteCandidateDataInfo(mjonCandidateVO); |
|
| 743 |
+ |
|
| 744 |
+ if(resultCnt > 0 ) {
|
|
| 745 |
+ |
|
| 746 |
+ modelAndView.addObject("result", "success");
|
|
| 747 |
+ modelAndView.addObject("message", "후보자 정보의 삭제 완료되었습니다.");
|
|
| 748 |
+ |
|
| 749 |
+ |
|
| 750 |
+ }else {
|
|
| 751 |
+ |
|
| 752 |
+ modelAndView.addObject("result", "fail");
|
|
| 753 |
+ modelAndView.addObject("message", "후보자 삭제에 오류가 발생하였습니다.");
|
|
| 754 |
+ |
|
| 755 |
+ } |
|
| 696 | 756 |
|
| 697 |
- mjonCandidateVO.setMberId(userId); |
|
| 698 |
- |
|
| 699 |
- } |
|
| 700 |
- |
|
| 701 |
- MjonVOParamXssValues XssParam = new MjonVOParamXssValues(); |
|
| 702 |
- |
|
| 703 |
- int XssCnt = XssParam.buildUri(mjonCandidateVO); |
|
| 704 |
- |
|
| 705 |
- |
|
| 706 |
- int resultCnt = 0; |
|
| 707 |
- |
|
| 708 |
- |
|
| 709 |
- resultCnt = mjonCandidateService.deleteCandidateDataInfo(mjonCandidateVO); |
|
| 710 |
- |
|
| 711 |
- |
|
| 712 |
- |
|
| 713 |
- if(resultCnt > 0 ) {
|
|
| 714 |
- |
|
| 715 |
- modelAndView.addObject("result", "success");
|
|
| 716 |
- modelAndView.addObject("message", "후보자 정보의 삭제 완료되었습니다.");
|
|
| 717 |
- |
|
| 718 |
- |
|
| 719 |
- }else {
|
|
| 757 |
+ } catch (Exception e) {
|
|
| 758 |
+ System.out.println("deleteCandidateDataInfoAjax Controller Error!!! " + e);
|
|
| 720 | 759 |
|
| 721 | 760 |
modelAndView.addObject("result", "fail");
|
| 722 | 761 |
modelAndView.addObject("message", "후보자 삭제에 오류가 발생하였습니다.");
|
| 762 |
+ return modelAndView; |
|
| 723 | 763 |
|
| 724 | 764 |
} |
| 725 | 765 |
|
--- src/main/java/itn/let/mjo/pay/web/MjonPayController.java
+++ src/main/java/itn/let/mjo/pay/web/MjonPayController.java
... | ... | @@ -3425,10 +3425,77 @@ |
| 3425 | 3425 |
LoginVO loginVO = EgovUserDetailsHelper.isAuthenticated()? (LoginVO)EgovUserDetailsHelper.getAuthenticatedUser():null; |
| 3426 | 3426 |
String userId = loginVO == null ? "" : EgovStringUtil.isNullToString(loginVO.getUniqId()); |
| 3427 | 3427 |
|
| 3428 |
- mberManageVO.setUniqId(userId); |
|
| 3429 |
- mberManageService.updateTaxbill(mberManageVO); |
|
| 3430 |
- |
|
| 3431 |
- redirectAttributes.addFlashAttribute("message", egovMessageSource.getMessage("success.common.update"));
|
|
| 3428 |
+ if(userId.equals("")) {
|
|
| 3429 |
+ |
|
| 3430 |
+ redirectAttributes.addFlashAttribute("message", egovMessageSource.getMessage("fail.common.login"));
|
|
| 3431 |
+ return "redirect:/web/member/pay/BillPub.do"; |
|
| 3432 |
+ |
|
| 3433 |
+ } |
|
| 3434 |
+ |
|
| 3435 |
+ try {
|
|
| 3436 |
+ |
|
| 3437 |
+ //세금계산서 정보 수정해주기 |
|
| 3438 |
+ mberManageVO.setUniqId(userId); |
|
| 3439 |
+ mberManageService.updateTaxbill(mberManageVO); |
|
| 3440 |
+ |
|
| 3441 |
+ /* |
|
| 3442 |
+ * 20231122 우영두 기능 추가 |
|
| 3443 |
+ * 개인회원인 경우 |
|
| 3444 |
+ * 세금계산서 타입이 개인인 경우 |
|
| 3445 |
+ * 후보자 정보가 있는지 확인하여 후보자 정보가 있다면 세금계산서 정보와 일치하도록 변경된 정보를 후보자 정보도 수정해준다. |
|
| 3446 |
+ * */ |
|
| 3447 |
+ String mberId = loginVO.getId(); |
|
| 3448 |
+ String taxCNm = mberManageVO.getTaxCNm(); |
|
| 3449 |
+ |
|
| 3450 |
+ MberManageVO tmpMberManageVO = mjonMsgDataService.selectMberManageInfo(mberId); |
|
| 3451 |
+ String dept = tmpMberManageVO.getDept(); |
|
| 3452 |
+ |
|
| 3453 |
+ if(dept.equals("p") && taxCNm != null && taxCNm.length() > 0) {
|
|
| 3454 |
+ |
|
| 3455 |
+ MjonCandidateVO mjonCandidateVO = mjonCandidateService.selectCandidateDataInfo(mberId); |
|
| 3456 |
+ String candidateNm = mjonCandidateVO.getCandidateNm(); |
|
| 3457 |
+ if(candidateNm != null && candidateNm.length() > 0) {
|
|
| 3458 |
+ |
|
| 3459 |
+ MjonCandidateVO updtCandidateVO = new MjonCandidateVO(); |
|
| 3460 |
+ |
|
| 3461 |
+ //이메일 정보 아이디/도메인 정보 분리 |
|
| 3462 |
+ String email = mberManageVO.getTaxMngEmail().split("@")[0];
|
|
| 3463 |
+ String emailDomain = mberManageVO.getTaxMngEmail().split("@")[1];
|
|
| 3464 |
+ |
|
| 3465 |
+ /* |
|
| 3466 |
+ * 주민번호 앞, 뒷 자리 암호화 처리하기 |
|
| 3467 |
+ * 세금계산서에서 주민번호는 별도로 암/복호화 처리를 안하고 저장함 |
|
| 3468 |
+ * 기본 가비아 암호화 솔루션 처리로 안한것 같음, 후보자 정보 쪽에서는 전자정부 프레임워크의 암/복호화 적용하여 저장함. |
|
| 3469 |
+ * |
|
| 3470 |
+ * */ |
|
| 3471 |
+ String regidentNo1 = egovCryptoUtil.encrypt(mberManageVO.getTaxCIhidNum().substring(0, 6)); |
|
| 3472 |
+ String regidentNo2 = egovCryptoUtil.encrypt(mberManageVO.getTaxCIhidNum().substring(6, 13)); |
|
| 3473 |
+ |
|
| 3474 |
+ updtCandidateVO.setMberId(mberId); |
|
| 3475 |
+ updtCandidateVO.setCandidateNm(taxCNm); |
|
| 3476 |
+ updtCandidateVO.setRegidentNo1(regidentNo1); |
|
| 3477 |
+ updtCandidateVO.setRegidentNo2(regidentNo2); |
|
| 3478 |
+ updtCandidateVO.setCandidateAddr(mberManageVO.getTaxCAddr()); |
|
| 3479 |
+ updtCandidateVO.setManagerNm(mberManageVO.getTaxMngNm()); |
|
| 3480 |
+ updtCandidateVO.setPhoneNo(mberManageVO.getTaxMngPhoneNum()); |
|
| 3481 |
+ updtCandidateVO.setEmail(email); |
|
| 3482 |
+ updtCandidateVO.setEmailDomain(emailDomain); |
|
| 3483 |
+ updtCandidateVO.setLastUpdusrId(mberId); |
|
| 3484 |
+ |
|
| 3485 |
+ int resultCnt = mjonCandidateService.updateCandidateDataInfo(updtCandidateVO); |
|
| 3486 |
+ |
|
| 3487 |
+ } |
|
| 3488 |
+ |
|
| 3489 |
+ } |
|
| 3490 |
+ |
|
| 3491 |
+ redirectAttributes.addFlashAttribute("message", egovMessageSource.getMessage("success.common.update"));
|
|
| 3492 |
+ |
|
| 3493 |
+ } catch (Exception e) {
|
|
| 3494 |
+ System.out.println("updateTaxbill Controller Error!!! " + e);
|
|
| 3495 |
+ |
|
| 3496 |
+ redirectAttributes.addFlashAttribute("message", "세금계산서 정보 수정 중 오류가 발생하였습니다.");
|
|
| 3497 |
+ return "redirect:/web/member/pay/BillPub.do"; |
|
| 3498 |
+ } |
|
| 3432 | 3499 |
|
| 3433 | 3500 |
return "redirect:/web/member/pay/BillPub.do"; |
| 3434 | 3501 |
} |
--- src/main/java/itn/let/mjo/reservmsg/service/impl/MjonReservMsgDAO.java
+++ src/main/java/itn/let/mjo/reservmsg/service/impl/MjonReservMsgDAO.java
... | ... | @@ -356,4 +356,17 @@ |
| 356 | 356 |
|
| 357 | 357 |
return update("MjonReservMsgDAO.updateReserveTimeBizMsgSeqListByMsgSeq", mjonResvMsgVO);
|
| 358 | 358 |
} |
| 359 |
+ |
|
| 360 |
+ /** |
|
| 361 |
+ * @Method Name : selectMjonMsgGroupDataByGroupId |
|
| 362 |
+ * @작성일 : 2023. 11. 23. |
|
| 363 |
+ * @작성자 : 우영두 |
|
| 364 |
+ * @Method 설명 : 문자발송 그룹 데이터 테이블 데이터 조회 , 예약취소시 문자발송 정보 조회를 위해 사용 |
|
| 365 |
+ * 예약취소시 전송사별 발송테이블의 데이터 삭제는 완료되었으나, mj_msg_data 테이블의 Deadlock 상황으로 오류 발생시 처리를 위해서 사용 |
|
| 366 |
+ */ |
|
| 367 |
+ public MjonResvMsgVO selectMjonMsgGroupDataChkByGroupId(MjonResvMsgVO mjonResvMsgVO) {
|
|
| 368 |
+ |
|
| 369 |
+ return (MjonResvMsgVO) select("MjonReservMsgDAO.selectMjonMsgGroupDataChkByGroupId", mjonResvMsgVO);
|
|
| 370 |
+ } |
|
| 371 |
+ |
|
| 359 | 372 |
} |
--- src/main/java/itn/let/mjo/reservmsg/service/impl/MjonReservMsgServiceImpl.java
+++ src/main/java/itn/let/mjo/reservmsg/service/impl/MjonReservMsgServiceImpl.java
... | ... | @@ -85,6 +85,9 @@ |
| 85 | 85 |
int result = 0; |
| 86 | 86 |
|
| 87 | 87 |
try {
|
| 88 |
+ System.out.println("================= 예약 취소 처리 시작============================");
|
|
| 89 |
+ System.out.println("================= 메세지 그룹 아이디============================" + mjonResvMsgVO.getMsgGroupId());
|
|
| 90 |
+ |
|
| 88 | 91 |
|
| 89 | 92 |
String agentCode = mjonResvMsgVO.getAgentCode(); //전송사 코드번호 |
| 90 | 93 |
String msgType = mjonResvMsgVO.getMsgType(); //문자 종류 - 4:단문, 6:장문 |
... | ... | @@ -102,72 +105,58 @@ |
| 102 | 105 |
|
| 103 | 106 |
mjonResvMsgVO.setUserDataList(userDataList); |
| 104 | 107 |
|
| 105 |
- int ihResult = 0; |
|
| 106 |
- int imoResult = 0; |
|
| 108 |
+ //int ihResult = 0; |
|
| 109 |
+ //int imoResult = 0; |
|
| 107 | 110 |
int bizResult = 0; |
| 108 | 111 |
int jjResult = 0; |
| 109 | 112 |
int ivtResult = 0; |
| 110 |
- int FHSmsResult = 0; |
|
| 111 |
- int FHMmsResult = 0; |
|
| 113 |
+ //int FHSmsResult = 0; |
|
| 114 |
+ //int FHMmsResult = 0; |
|
| 112 | 115 |
int jjB01Result = 0; |
| 113 | 116 |
int jjB02Result = 0; |
| 114 | 117 |
|
| 115 | 118 |
//아이하트 예약취소 삭제 |
| 116 |
- ihResult = mjonReservMsgDAO.deleteIHeartMsgSeqListByMsgSeq(mjonResvMsgVO); |
|
| 119 |
+ //ihResult = mjonReservMsgDAO.deleteIHeartMsgSeqListByMsgSeq(mjonResvMsgVO); |
|
| 117 | 120 |
|
| 118 | 121 |
//현대퓨처넷 단문예약취소 삭제 |
| 119 |
- FHSmsResult = mjonReservMsgDAO.deleteHFNSmsMsgSeqListByMsgSeq(mjonResvMsgVO); |
|
| 122 |
+ //FHSmsResult = mjonReservMsgDAO.deleteHFNSmsMsgSeqListByMsgSeq(mjonResvMsgVO); |
|
| 120 | 123 |
|
| 121 | 124 |
//현대퓨처넷 장문/그림 문예약취소 삭제 |
| 122 |
- FHMmsResult = mjonReservMsgDAO.deleteHFNMmsMsgSeqListByMsgSeq(mjonResvMsgVO); |
|
| 125 |
+ //FHMmsResult = mjonReservMsgDAO.deleteHFNMmsMsgSeqListByMsgSeq(mjonResvMsgVO); |
|
| 123 | 126 |
|
| 124 | 127 |
//아이엠오 예약취소 삭제 |
| 125 |
- imoResult = mjonReservMsgDAO.deleteIMOMsgSeqListByMsgSeq(mjonResvMsgVO); |
|
| 128 |
+ //imoResult = mjonReservMsgDAO.deleteIMOMsgSeqListByMsgSeq(mjonResvMsgVO); |
|
| 126 | 129 |
|
| 127 | 130 |
//비트뿌리오 예약취소 삭제 |
| 128 | 131 |
bizResult = mjonReservMsgDAO.deleteBizMsgSeqListByMsgSeq(mjonResvMsgVO); |
| 132 |
+ System.out.println("============================== 다우기술 예약 취소 건수 ::: "+bizResult);
|
|
| 129 | 133 |
|
| 130 | 134 |
//제이제이 예약취소 삭제 |
| 131 | 135 |
jjResult = mjonReservMsgDAO.deleteJJMsgSeqListByMsgSeq(mjonResvMsgVO); |
| 136 |
+ System.out.println("============================== 제이제이 예약 취소 건수 ::: "+jjResult);
|
|
| 132 | 137 |
|
| 133 | 138 |
//인비토 예약취소 삭제 |
| 134 | 139 |
ivtResult = mjonReservMsgDAO.deleteIVTMsgSeqListByMsgSeq(mjonResvMsgVO); |
| 140 |
+ System.out.println("============================== 인비토 예약 취소 건수 ::: "+ivtResult);
|
|
| 135 | 141 |
|
| 136 | 142 |
//제이제이 B01 예약취소 삭제 |
| 137 | 143 |
jjB01Result = mjonReservMsgDAO.deleteJJB01MsgSeqListByMsgSeq(mjonResvMsgVO); |
| 144 |
+ System.out.println("============================== 제이제이 B01 예약 취소 건수 ::: "+jjB01Result);
|
|
| 138 | 145 |
|
| 139 | 146 |
//제이제이 B02 예약취소 삭제 |
| 140 | 147 |
jjB02Result = mjonReservMsgDAO.deleteJJB02MsgSeqListByMsgSeq(mjonResvMsgVO); |
| 148 |
+ System.out.println("============================== 제이제이 B02 예약 취소 건수 ::: "+jjB02Result);
|
|
| 141 | 149 |
|
| 142 | 150 |
//삭제 결과 합산 |
| 143 |
- result = ihResult + FHSmsResult + FHMmsResult + imoResult + bizResult +jjResult + ivtResult + jjB01Result + jjB02Result; |
|
| 151 |
+ //result = ihResult + FHSmsResult + FHMmsResult + imoResult + bizResult +jjResult + ivtResult + jjB01Result + jjB02Result; |
|
| 152 |
+ result = bizResult +jjResult + ivtResult + jjB01Result + jjB02Result; |
|
| 153 |
+ System.out.println("============================== 총 예약 취소 건수 ::: "+result);
|
|
| 144 | 154 |
|
| 145 |
- //각 전송사별 문자 발송 테이블에서 데이터 삭제 처리 |
|
| 146 |
- /*if(agentCode.equals("01")) { //아이하트 메세지 삭제
|
|
| 147 |
- |
|
| 148 |
- result = mjonReservMsgDAO.deleteIHeartMsgSeqListByMsgSeq(mjonResvMsgVO); |
|
| 149 |
- |
|
| 150 |
- }else if(agentCode.equals("02")) { //현대퓨쳐넷 메세지 삭제
|
|
| 151 |
- |
|
| 152 |
- if(msgType.equals("4")) { //단문 삭제
|
|
| 153 |
- |
|
| 154 |
- result = mjonReservMsgDAO.deleteHFNSmsMsgSeqListByMsgSeq(mjonResvMsgVO); |
|
| 155 |
- |
|
| 156 |
- }else { //장문, 그림 삭제
|
|
| 157 |
- |
|
| 158 |
- result = mjonReservMsgDAO.deleteHFNMmsMsgSeqListByMsgSeq(mjonResvMsgVO); |
|
| 159 |
- |
|
| 160 |
- } |
|
| 161 |
- |
|
| 162 |
- }else { //아이엠오 메세지 삭제
|
|
| 163 |
- |
|
| 164 |
- result = mjonReservMsgDAO.deleteIMOMsgSeqListByMsgSeq(mjonResvMsgVO); |
|
| 165 |
- |
|
| 166 |
- }*/ |
|
| 167 | 155 |
|
| 168 | 156 |
//예약 취소 환불 처리 |
| 169 | 157 |
if(result > 0) {
|
| 170 | 158 |
|
| 159 |
+ System.out.println("========================예약취소 상태값 변경 및 환불 처리============================");
|
|
| 171 | 160 |
//mj_msg_data 테이블 예약 취소 값 수정 |
| 172 | 161 |
mjonReservMsgDAO.updateResvMsgCancelDataFlag(mjonResvMsgVO); |
| 173 | 162 |
|
... | ... | @@ -252,6 +241,102 @@ |
| 252 | 241 |
|
| 253 | 242 |
} |
| 254 | 243 |
|
| 244 |
+ }else if(result == 0){
|
|
| 245 |
+ |
|
| 246 |
+ //문자 발송 그룹 테이블의 데이터에 예약 취소가 되었는지 조회 |
|
| 247 |
+ MjonResvMsgVO tmpMjonResvMsgVO = mjonReservMsgDAO.selectMjonMsgGroupDataChkByGroupId(mjonResvMsgVO); |
|
| 248 |
+ String reserveCYn = tmpMjonResvMsgVO.getReserveCYn(); |
|
| 249 |
+ |
|
| 250 |
+ if(reserveCYn.equals("N")) {
|
|
| 251 |
+ |
|
| 252 |
+ result = Integer.parseInt(tmpMjonResvMsgVO.getMsgGroupCnt()); |
|
| 253 |
+ |
|
| 254 |
+ System.out.println("========================예약취소 상태값 변경 및 환불 처리============================");
|
|
| 255 |
+ //mj_msg_data 테이블 예약 취소 값 수정 |
|
| 256 |
+ mjonReservMsgDAO.updateResvMsgCancelDataFlag(mjonResvMsgVO); |
|
| 257 |
+ |
|
| 258 |
+ //mj_msg_group_data 테이블 예약 취소 값 수정 |
|
| 259 |
+ mjonReservMsgDAO.updateResvMsgCancelGroupFlag(mjonResvMsgVO); |
|
| 260 |
+ |
|
| 261 |
+ MjonMsgVO mjonMsgVO = mjonReservMsgDAO.selectMjonMsgGroupData(mjonResvMsgVO); |
|
| 262 |
+ |
|
| 263 |
+ //문자 발송 캐시 차감 해주기 |
|
| 264 |
+ MjonPayVO mjonPayVO = new MjonPayVO(); |
|
| 265 |
+ |
|
| 266 |
+ mjonPayVO.setCashId(idgenMjonCashId.getNextStringId()); |
|
| 267 |
+ mjonPayVO.setUserId(mjonMsgVO.getUserId()); |
|
| 268 |
+ mjonPayVO.setCash(Float.parseFloat(mjonMsgVO.getTotPrice())); |
|
| 269 |
+ mjonPayVO.setFrstRegisterId(mjonMsgVO.getUserId()); |
|
| 270 |
+ mjonPayVO.setMemo("예약문자 취소 " + result + "건 환불");
|
|
| 271 |
+ mjonPayVO.setMsgGroupId(mjonMsgVO.getMsgGroupId()); |
|
| 272 |
+ |
|
| 273 |
+ mjonPayDAO.insertCash(mjonPayVO); //캐시 환불 |
|
| 274 |
+ mjonPayDAO.updateMemberCash(mjonPayVO); //회원정보 업데이트 |
|
| 275 |
+ |
|
| 276 |
+ String eventYn = mjonMsgVO.getEventYn(); |
|
| 277 |
+ |
|
| 278 |
+ if(eventYn.equals("Y")) {//이벤트 단가로 발송한 문자인 경우에만 이벤트 환불 처리해줌
|
|
| 279 |
+ |
|
| 280 |
+ //이벤트 회원의 경우 이벤트 캐시도 환불 처리해줌. |
|
| 281 |
+ MjonEventVO mjonEventVO = new MjonEventVO(); |
|
| 282 |
+ mjonEventVO.setMberId(mjonMsgVO.getUserId()); |
|
| 283 |
+ MjonEventVO eventMberInfo = mjonEventDAO.selectEventMsgMberDefaultInfo(mjonEventVO); |
|
| 284 |
+ |
|
| 285 |
+ float eventRemainCash = 0; |
|
| 286 |
+ boolean compareEndDate = false; |
|
| 287 |
+ |
|
| 288 |
+ if(eventMberInfo != null) {
|
|
| 289 |
+ |
|
| 290 |
+ String eventEndDate = eventMberInfo.getEventEndDate(); //이벤트 종료 일자 |
|
| 291 |
+ String eventStatus = eventMberInfo.getEventStatus(); //이벤트 진행 상태 |
|
| 292 |
+ |
|
| 293 |
+ |
|
| 294 |
+ /** |
|
| 295 |
+ * MJUtil.getCompareDate() |
|
| 296 |
+ * 현재 날짜와 파라미터 전달 날짜를 비교 |
|
| 297 |
+ * 전달날짜를 지난경우 False를 리턴함. |
|
| 298 |
+ * 현재날짜 이전 혹은 같은 날짜면 True를 리턴함. |
|
| 299 |
+ * |
|
| 300 |
+ * */ |
|
| 301 |
+ |
|
| 302 |
+ if(eventStatus.equals("Y") || eventStatus.equals("E")) {//현재 이벤트를 진행 중이거나, 종료 된경우 환불 처리해줌
|
|
| 303 |
+ |
|
| 304 |
+ if(eventEndDate != null) {//이벤트 종료일이 지나지 않은 회원만 환불 처리해줌.
|
|
| 305 |
+ compareEndDate = MJUtil.getCompareDate(eventEndDate); |
|
| 306 |
+ eventRemainCash = (float) eventMberInfo.getEventRemainCash(); |
|
| 307 |
+ |
|
| 308 |
+ |
|
| 309 |
+ if(compareEndDate) {//현재 시간이 이벤트 종료일이 지나지 않았다면
|
|
| 310 |
+ |
|
| 311 |
+ float totEventRemainCash = eventRemainCash + Float.parseFloat(mjonMsgVO.getTotPrice()); //남은 이벤트 캐시 금액에 환불해줄 캐시 금액을 더해준다. |
|
| 312 |
+ |
|
| 313 |
+ //이벤트 상태값을 종료로 변경한다. |
|
| 314 |
+ mjonEventVO.setEventInfoId(eventMberInfo.getEventInfoId()); |
|
| 315 |
+ |
|
| 316 |
+ if(eventStatus.equals("E")) {//이벤트가 종료 된 상태에서 예약 취소를 진행하는 경우 이벤트 종료에서 진행으로 변경 후 캐시 환불 처리
|
|
| 317 |
+ |
|
| 318 |
+ mjonEventVO.setEventStatus("Y");
|
|
| 319 |
+ mjonEventVO.setEventMemo("예약문자 취소로 인한 환물 및 종료되었던 이벤트 진행으로 변경");
|
|
| 320 |
+ |
|
| 321 |
+ }else {//진행중인 경우 기존 상태값 그대로 적용해준다.
|
|
| 322 |
+ |
|
| 323 |
+ mjonEventVO.setEventStatus(eventStatus); |
|
| 324 |
+ |
|
| 325 |
+ } |
|
| 326 |
+ |
|
| 327 |
+ mjonEventVO.setEventRemainCash(totEventRemainCash); |
|
| 328 |
+ mjonEventDAO.updateEventEndStatus(mjonEventVO); |
|
| 329 |
+ |
|
| 330 |
+ } |
|
| 331 |
+ } |
|
| 332 |
+ |
|
| 333 |
+ } |
|
| 334 |
+ |
|
| 335 |
+ } |
|
| 336 |
+ |
|
| 337 |
+ } |
|
| 338 |
+ } |
|
| 339 |
+ |
|
| 255 | 340 |
|
| 256 | 341 |
} |
| 257 | 342 |
|
--- src/main/java/itn/let/mjo/reservmsg/web/MjonReservMsgController.java
+++ src/main/java/itn/let/mjo/reservmsg/web/MjonReservMsgController.java
... | ... | @@ -513,7 +513,7 @@ |
| 513 | 513 |
|
| 514 | 514 |
}else {
|
| 515 | 515 |
|
| 516 |
- modelAndView.addObject("message", "예약 발송 처리가 실패 되었습니다.");
|
|
| 516 |
+ modelAndView.addObject("message", "예약 발송 취소 처리가 실패 되었습니다. 잠시 후 다시 시도해 주세요.");
|
|
| 517 | 517 |
modelAndView.addObject("result", "fail");
|
| 518 | 518 |
|
| 519 | 519 |
} |
--- src/main/java/itn/let/uat/uia/service/impl/EgovMberManageServiceImpl.java
+++ src/main/java/itn/let/uat/uia/service/impl/EgovMberManageServiceImpl.java
... | ... | @@ -584,4 +584,23 @@ |
| 584 | 584 |
mberManageDAO.insertCertInfoLog(certVO); |
| 585 | 585 |
|
| 586 | 586 |
} |
| 587 |
+ |
|
| 588 |
+ @Override |
|
| 589 |
+ //기업회원 기업정보 변경신청 취소 처리 |
|
| 590 |
+ public int updateCmpUserInfoCancel(MberManageVO mberManageVO) throws Exception{
|
|
| 591 |
+ |
|
| 592 |
+ int resultCnt = 0; |
|
| 593 |
+ |
|
| 594 |
+ try {
|
|
| 595 |
+ |
|
| 596 |
+ resultCnt = mberManageDAO.updateCmpUserInfoCancel(mberManageVO); |
|
| 597 |
+ |
|
| 598 |
+ } catch (Exception e) {
|
|
| 599 |
+ System.out.println("updateCmpUserInfoCancel Service Imple Error!!!" + e);
|
|
| 600 |
+ } |
|
| 601 |
+ |
|
| 602 |
+ return resultCnt; |
|
| 603 |
+ } |
|
| 604 |
+ |
|
| 605 |
+ |
|
| 587 | 606 |
}(No newline at end of file) |
--- src/main/java/itn/let/uat/uia/service/impl/MberManageDAO.java
+++ src/main/java/itn/let/uat/uia/service/impl/MberManageDAO.java
... | ... | @@ -313,4 +313,20 @@ |
| 313 | 313 |
return (List<String>) list("mberManageDAO.selectMemberLoginIpList", mberId);
|
| 314 | 314 |
} |
| 315 | 315 |
|
| 316 |
+ //기업회원 기업정보 변경신청 취소 처리 |
|
| 317 |
+ public int updateCmpUserInfoCancel(MberManageVO mberManageVO) throws Exception{
|
|
| 318 |
+ |
|
| 319 |
+ int resultCnt = 0; |
|
| 320 |
+ |
|
| 321 |
+ try {
|
|
| 322 |
+ |
|
| 323 |
+ resultCnt = update("mberManageDAO.updateCmpUserInfoCancel", mberManageVO);
|
|
| 324 |
+ |
|
| 325 |
+ } catch (Exception e) {
|
|
| 326 |
+ System.out.println("updateCmpUserInfoCancel DAO Error!!!" + e);
|
|
| 327 |
+ } |
|
| 328 |
+ |
|
| 329 |
+ return resultCnt; |
|
| 330 |
+ } |
|
| 331 |
+ |
|
| 316 | 332 |
}(No newline at end of file) |
--- src/main/java/itn/let/uat/uia/web/EgovMypageController.java
+++ src/main/java/itn/let/uat/uia/web/EgovMypageController.java
... | ... | @@ -988,6 +988,50 @@ |
| 988 | 988 |
} |
| 989 | 989 |
return modelAndView; |
| 990 | 990 |
} |
| 991 |
+ |
|
| 992 |
+ |
|
| 993 |
+ /** |
|
| 994 |
+ * 마이페이지 기업정보 변경 취소 처리 |
|
| 995 |
+ */ |
|
| 996 |
+ @RequestMapping(value="/web/user/updateCmpUserInfoCancelAjax.do") |
|
| 997 |
+ public ModelAndView updateCmpUserInfoCancelAjax(@ModelAttribute MberManageVO mberManageVO |
|
| 998 |
+ , HttpServletRequest request |
|
| 999 |
+ , HttpServletResponse response) throws Exception {
|
|
| 1000 |
+ ModelAndView modelAndView = new ModelAndView(); |
|
| 1001 |
+ modelAndView.setViewName("jsonView");
|
|
| 1002 |
+ |
|
| 1003 |
+ LoginVO loginVO = EgovUserDetailsHelper.isAuthenticated()? (LoginVO)EgovUserDetailsHelper.getAuthenticatedUser():null; |
|
| 1004 |
+ |
|
| 1005 |
+ if(loginVO == null) {
|
|
| 1006 |
+ |
|
| 1007 |
+ modelAndView.addObject("result", "loginFail");
|
|
| 1008 |
+ |
|
| 1009 |
+ return modelAndView; |
|
| 1010 |
+ } |
|
| 1011 |
+ |
|
| 1012 |
+ try {
|
|
| 1013 |
+ |
|
| 1014 |
+ //취소 회원 아이디 셋팅 |
|
| 1015 |
+ mberManageVO.setLastUpdusrId(loginVO.getId()); |
|
| 1016 |
+ |
|
| 1017 |
+ //기업회원 변경 취소 Update 처리 hstType = 05, hstSttus = 04로 변경 |
|
| 1018 |
+ mberManageService.updateCmpUserInfoCancel(mberManageVO); |
|
| 1019 |
+ |
|
| 1020 |
+ modelAndView.addObject("result", "success");
|
|
| 1021 |
+ |
|
| 1022 |
+ } catch (Exception e) {
|
|
| 1023 |
+ |
|
| 1024 |
+ System.out.println("updateCmpUserInfoCancelAjax Controller Error!!!! " + e);
|
|
| 1025 |
+ |
|
| 1026 |
+ modelAndView.addObject("message", "기업회원 정보변경 취소요청 처리 중 오류가 발생하였습니다.");
|
|
| 1027 |
+ modelAndView.addObject("result", "fail");
|
|
| 1028 |
+ return modelAndView; |
|
| 1029 |
+ } |
|
| 1030 |
+ |
|
| 1031 |
+ return modelAndView; |
|
| 1032 |
+ } |
|
| 1033 |
+ |
|
| 1034 |
+ |
|
| 991 | 1035 |
/* *//** |
| 992 | 1036 |
* 마이페이지 기업정보 변경 |
| 993 | 1037 |
*//* |
--- src/main/java/itn/let/uss/umt/service/EgovMberManageService.java
+++ src/main/java/itn/let/uss/umt/service/EgovMberManageService.java
... | ... | @@ -238,4 +238,7 @@ |
| 238 | 238 |
|
| 239 | 239 |
// 이용정지회원 금일, 금년 잔액 합계 |
| 240 | 240 |
public MberManageVO selectMberStopCashSum(MberManageVO mberManageVO) throws Exception; |
| 241 |
+ |
|
| 242 |
+ //기업회원 기업정보 변경신청 취소 처리 |
|
| 243 |
+ public int updateCmpUserInfoCancel(MberManageVO mberManageVO) throws Exception; |
|
| 241 | 244 |
}(No newline at end of file) |
--- src/main/resources/egovframework/spring/com/context-scheduling-sym-log-lgm.xml
+++ src/main/resources/egovframework/spring/com/context-scheduling-sym-log-lgm.xml
... | ... | @@ -92,35 +92,34 @@ |
| 92 | 92 |
|
| 93 | 93 |
|
| 94 | 94 |
<!-- 3-1 --> |
| 95 |
- <!-- 문자전송순위통계집계 --> |
|
| 96 |
- <bean id="SttstMsgRankBean" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean"> |
|
| 95 |
+ <!-- 문자전송순위통계집계 20231124 사용하지 않는 통계자료로 판단되어 사용 중단 처리 --> |
|
| 96 |
+ <!-- <bean id="SttstMsgRankBean" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean"> |
|
| 97 | 97 |
<property name="targetObject" ref="sttstMsgScheduling" /> |
| 98 | 98 |
<property name="targetMethod" value="mjSttstMsgRankSmmmary" /> |
| 99 | 99 |
<property name="concurrent" value="false" /> |
| 100 |
- </bean> |
|
| 100 |
+ </bean> --> |
|
| 101 | 101 |
|
| 102 |
- <bean id="SttstMsgRankBeanTrigger" class="org.springframework.scheduling.quartz.CronTriggerFactoryBean"> |
|
| 102 |
+ <!-- <bean id="SttstMsgRankBeanTrigger" class="org.springframework.scheduling.quartz.CronTriggerFactoryBean"> |
|
| 103 | 103 |
<property name="jobDetail" ref="SttstMsgRankBean" /> |
| 104 |
- <!-- 매시간 43분 47초 마다 일별 문자 발송 데이터 집계 --> |
|
| 104 |
+ 매시간 43분 47초 마다 일별 문자 발송 데이터 집계 |
|
| 105 | 105 |
<property name="cronExpression" value="47 53 0-3,5-23 * * ?" /> |
| 106 |
-<!-- <property name="cronExpression" value="8 * * * * ?" /> --> |
|
| 107 |
- </bean> |
|
| 106 |
+ |
|
| 107 |
+ </bean> --> |
|
| 108 | 108 |
|
| 109 | 109 |
|
| 110 | 110 |
<!-- 3-2 --> |
| 111 |
- <!-- 문자전송순위통계집계(하루한번) --> |
|
| 112 |
- <bean id="SttstMsgRankDayBean" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean"> |
|
| 111 |
+ <!-- 문자전송순위통계집계(하루한번) 20231124 사용하지 않는 통계자료로 판단되어 사용 중단 처리 --> |
|
| 112 |
+ <!-- <bean id="SttstMsgRankDayBean" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean"> |
|
| 113 | 113 |
<property name="targetObject" ref="sttstMsgScheduling" /> |
| 114 | 114 |
<property name="targetMethod" value="mjSttstMsgRankDaySmmmary" /> |
| 115 | 115 |
<property name="concurrent" value="false" /> |
| 116 |
- </bean> |
|
| 116 |
+ </bean> --> |
|
| 117 | 117 |
|
| 118 |
- <bean id="SttstMsgRankDayBeanTrigger" class="org.springframework.scheduling.quartz.CronTriggerFactoryBean"> |
|
| 118 |
+ <!-- <bean id="SttstMsgRankDayBeanTrigger" class="org.springframework.scheduling.quartz.CronTriggerFactoryBean"> |
|
| 119 | 119 |
<property name="jobDetail" ref="SttstMsgRankDayBean" /> |
| 120 |
- <!-- 매시간 43분 47초 마다 일별 문자 발송 데이터 집계 --> |
|
| 120 |
+ 매시간 43분 47초 마다 일별 문자 발송 데이터 집계 |
|
| 121 | 121 |
<property name="cronExpression" value="47 30 4 * * ?" /> |
| 122 |
-<!-- <property name="cronExpression" value="8 * * * * ?" /> --> |
|
| 123 |
- </bean> |
|
| 122 |
+ </bean> --> |
|
| 124 | 123 |
|
| 125 | 124 |
|
| 126 | 125 |
<!-- 14 --> |
... | ... | @@ -151,8 +150,8 @@ |
| 151 | 150 |
<ref bean="sysLogTrigger" /><!-- 시스템 로그 요약 --> |
| 152 | 151 |
<ref bean="SttstMsgBeanTrigger" /><!-- 문자발송일별통계집계 --> |
| 153 | 152 |
<ref bean="SttstMsgDayBeanTrigger" /><!-- 문자발송일별통계집계(매일한번) --> |
| 154 |
- <ref bean="SttstMsgRankBeanTrigger" /><!-- 문자전송순위통계집계 --> |
|
| 155 |
- <ref bean="SttstMsgRankDayBeanTrigger" /><!-- 문자전송순위통계집계(매일한번) --> |
|
| 153 |
+ <!-- <ref bean="SttstMsgRankBeanTrigger" /> --><!-- 문자전송순위통계집계 --> |
|
| 154 |
+ <!-- <ref bean="SttstMsgRankDayBeanTrigger" /> --><!-- 문자전송순위통계집계(매일한번) --> |
|
| 156 | 155 |
|
| 157 | 156 |
<!-- mj_msg_data 백업 --> |
| 158 | 157 |
<ref bean="MjMsgDataBackupBeanTrigger" /> |
--- src/main/resources/egovframework/sqlmap/let/fax/Fax_SQL_Mysql.xml
+++ src/main/resources/egovframework/sqlmap/let/fax/Fax_SQL_Mysql.xml
... | ... | @@ -525,6 +525,8 @@ |
| 525 | 525 |
SUCC_FAX_USER_COST, |
| 526 | 526 |
FAIL_FAX_COST, |
| 527 | 527 |
SUCC_FAX_RATE, |
| 528 |
+ SUCC_PAGE_CNT, |
|
| 529 |
+ FAIL_PAGE_CNT, |
|
| 528 | 530 |
REG_DATE |
| 529 | 531 |
) |
| 530 | 532 |
SELECT b.reqDate, |
... | ... | @@ -535,6 +537,8 @@ |
| 535 | 537 |
b.succFaxUserCost, |
| 536 | 538 |
b.failFaxCost, |
| 537 | 539 |
b.succFaxRate, |
| 540 |
+ b.succPageCnt, |
|
| 541 |
+ b.failPageCnt, |
|
| 538 | 542 |
b.regDate |
| 539 | 543 |
FROM ( SELECT a.reqDate AS reqDate, |
| 540 | 544 |
'06' AS AGENT_CODE, |
... | ... | @@ -544,7 +548,9 @@ |
| 544 | 548 |
SUM( IF(a.Result = 'SENT', 1, 0) *a.faxUserCost) AS succFaxUserCost, |
| 545 | 549 |
SUM(IF(a.Result = 'FAIL', 1, 0) *a.faxCost) AS failFaxCost, |
| 546 | 550 |
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, |
| 547 |
- NOW() AS regDate |
|
| 551 |
+ NOW() AS regDate, |
|
| 552 |
+ SUM(IF(a.Result = 'SENT', 1, 0) *a.resPage) AS succPageCnt, |
|
| 553 |
+ SUM(IF(a.Result = 'FAIL', 1, 0) *a.resPage) AS failPageCnt |
|
| 548 | 554 |
FROM (SELECT a.*, |
| 549 | 555 |
b.EACH_PRICE AS faxUserCost |
| 550 | 556 |
FROM mj_fax_summary_view a |
... | ... | @@ -575,6 +581,8 @@ |
| 575 | 581 |
SUCC_FAX_USER_COST = b.succFaxUserCost, |
| 576 | 582 |
FAIL_FAX_COST = b.failFaxCost, |
| 577 | 583 |
SUCC_FAX_RATE = b.succFaxRate, |
| 584 |
+ SUCC_PAGE_CNT = b.succPageCnt, |
|
| 585 |
+ FAIL_PAGE_CNT = b.failPageCnt, |
|
| 578 | 586 |
REG_DATE = now() |
| 579 | 587 |
</update> |
| 580 | 588 |
|
... | ... | @@ -584,7 +592,9 @@ |
| 584 | 592 |
a.FAIL_FAX_CNT AS failFaxCnt, |
| 585 | 593 |
a.SUCC_FAX_COST AS succFaxCost, |
| 586 | 594 |
a.FAIL_FAX_COST AS failFaxCost, |
| 587 |
- a.SUCC_FAX_RATE AS succFaxRate |
|
| 595 |
+ a.SUCC_FAX_RATE AS succFaxRate, |
|
| 596 |
+ a.SUCC_PAGE_CNT AS succPageCnt, |
|
| 597 |
+ a.FAIL_PAGE_CNT AS failPageCnt |
|
| 588 | 598 |
FROM mj_fax_stat a |
| 589 | 599 |
WHERE |
| 590 | 600 |
1=1 |
--- src/main/resources/egovframework/sqlmap/let/msg/MjonMsgCampainData_SQL_mysql.xml
+++ src/main/resources/egovframework/sqlmap/let/msg/MjonMsgCampainData_SQL_mysql.xml
... | ... | @@ -37,7 +37,6 @@ |
| 37 | 37 |
REGIDENT_NO2, |
| 38 | 38 |
CANDIDATE_ADDR, |
| 39 | 39 |
MANAGER_NM, |
| 40 |
- OFFICE, |
|
| 41 | 40 |
PHONE_NO, |
| 42 | 41 |
EMAIL, |
| 43 | 42 |
EMAIL_DOMAIN, |
... | ... | @@ -54,7 +53,6 @@ |
| 54 | 53 |
#regidentNo2#, |
| 55 | 54 |
#candidateAddr#, |
| 56 | 55 |
#managerNm#, |
| 57 |
- #office#, |
|
| 58 | 56 |
#phoneNo#, |
| 59 | 57 |
#email#, |
| 60 | 58 |
#emailDomain#, |
... | ... | @@ -75,7 +73,6 @@ |
| 75 | 73 |
REGIDENT_NO2 = #regidentNo2#, |
| 76 | 74 |
CANDIDATE_ADDR = #candidateAddr#, |
| 77 | 75 |
MANAGER_NM = #managerNm#, |
| 78 |
- OFFICE = #office#, |
|
| 79 | 76 |
PHONE_NO = #phoneNo#, |
| 80 | 77 |
EMAIL = #email#, |
| 81 | 78 |
EMAIL_DOMAIN = #emailDomain#, |
... | ... | @@ -90,6 +87,19 @@ |
| 90 | 87 |
WHERE MBER_ID = #mberId# |
| 91 | 88 |
</delete> |
| 92 | 89 |
|
| 90 |
+ <update id="mjonCandidateDAO.updateTaxBillMemberInfo" parameterClass="mjonCandidateVO"> |
|
| 91 |
+ |
|
| 92 |
+ UPDATE LETTNGNRLMBER SET |
|
| 93 |
+ TAX_MNG_EMAIL = #emailFullStr#, |
|
| 94 |
+ TAX_MNG_NM = #managerNm#, |
|
| 95 |
+ TAX_MNG_PHONENUM = #phoneNo#, |
|
| 96 |
+ TAX_C_NM = #candidateNm#, |
|
| 97 |
+ TAX_C_IHIDNUM = #regidentNoFullStr#, |
|
| 98 |
+ TAX_C_ADDR = #candidateAddr# |
|
| 99 |
+ WHERE MBER_ID = #mberId# |
|
| 100 |
+ |
|
| 101 |
+ </update> |
|
| 102 |
+ |
|
| 93 | 103 |
</sqlMap> |
| 94 | 104 |
|
| 95 | 105 |
|
--- src/main/resources/egovframework/sqlmap/let/msg/MjonMsgResv_SQL_mysql.xml
+++ src/main/resources/egovframework/sqlmap/let/msg/MjonMsgResv_SQL_mysql.xml
... | ... | @@ -938,6 +938,27 @@ |
| 938 | 938 |
|
| 939 | 939 |
</update> |
| 940 | 940 |
|
| 941 |
+ <select id="MjonReservMsgDAO.selectMjonMsgGroupDataChkByGroupId" parameterClass="mjonMsgResvVO" resultClass="mjonMsgResvVO"> |
|
| 942 |
+ |
|
| 943 |
+ SELECT MSG_GROUP_ID AS msgGroupId, |
|
| 944 |
+ USER_ID AS userId, |
|
| 945 |
+ MSG_GROUP_CNT AS msgGroupCnt, |
|
| 946 |
+ EACH_PRICE AS eachPrice, |
|
| 947 |
+ TOT_PRICE AS totPrice, |
|
| 948 |
+ RESERVE_YN AS reserveYn, |
|
| 949 |
+ RESERVE_C_YN AS reserveCYn, |
|
| 950 |
+ BEF_CASH AS befCash, |
|
| 951 |
+ BEF_POINT AS befPoint, |
|
| 952 |
+ CANCELDATE AS canceldate, |
|
| 953 |
+ EVENT_YN AS eventYn |
|
| 954 |
+ FROM MJ_MSG_GROUP_DATA A |
|
| 955 |
+ WHERE A.USER_ID = #userId# |
|
| 956 |
+ AND A.RESERVE_YN = 'Y' |
|
| 957 |
+ AND A.DEL_FLAG = 'N' |
|
| 958 |
+ AND A.MSG_GROUP_ID = #msgGroupId# |
|
| 959 |
+ |
|
| 960 |
+ </select> |
|
| 961 |
+ |
|
| 941 | 962 |
</sqlMap> |
| 942 | 963 |
|
| 943 | 964 |
|
--- src/main/resources/egovframework/sqlmap/let/uss/umt/EgovMberManage_SQL_Mysql.xml
+++ src/main/resources/egovframework/sqlmap/let/uss/umt/EgovMberManage_SQL_Mysql.xml
... | ... | @@ -1964,4 +1964,15 @@ |
| 1964 | 1964 |
WHERE LOGIN_ID = #mberId# |
| 1965 | 1965 |
AND LOGIN_YN = 'Y' |
| 1966 | 1966 |
</select> |
| 1967 |
+ |
|
| 1968 |
+ <update id="mberManageDAO.updateCmpUserInfoCancel" parameterClass="mberVO"> |
|
| 1969 |
+ |
|
| 1970 |
+ UPDATE LETTNGNRLMBER_CMPHST SET |
|
| 1971 |
+ HST_TYPE = '05' |
|
| 1972 |
+ ,HST_STTUS = '04' |
|
| 1973 |
+ ,LAST_UPDUSR_ID = #lastUpdusrId# |
|
| 1974 |
+ ,LAST_UPDT_PNTTM = NOW() |
|
| 1975 |
+ WHERE CMPHST_ID = #cmpHstId# |
|
| 1976 |
+ |
|
| 1977 |
+ </update> |
|
| 1967 | 1978 |
</sqlMap> |
--- src/main/webapp/WEB-INF/jsp/cmm/uss/umt/EgovGnrlUserSelectUpdt.jsp
+++ src/main/webapp/WEB-INF/jsp/cmm/uss/umt/EgovGnrlUserSelectUpdt.jsp
... | ... | @@ -3295,7 +3295,7 @@ |
| 3295 | 3295 |
|
| 3296 | 3296 |
<%-- B선 회원 선결제 버튼 처리 --%> |
| 3297 | 3297 |
<c:if test="${mberManageVO.blineCode ne 'N'}">
|
| 3298 |
- <button type="button" onclick="fnUserPrePayDataListPopup('${mberManageVO.mberId}'); return false">선결제</button>
|
|
| 3298 |
+ <button type="button" class="thinfill" onclick="fnUserPrePayDataListPopup('${mberManageVO.mberId}'); return false">선결제</button>
|
|
| 3299 | 3299 |
</c:if> |
| 3300 | 3300 |
</th> |
| 3301 | 3301 |
<td> |
... | ... | @@ -3683,7 +3683,7 @@ |
| 3683 | 3683 |
|
| 3684 | 3684 |
<%-- B선 회원 선결제 버튼 처리 --%> |
| 3685 | 3685 |
<c:if test="${mberManageVO.blineCode ne 'N'}">
|
| 3686 |
- <button type="button" onclick="fnUserPrePayDataListPopup('${mberManageVO.mberId}'); return false">선결제</button>
|
|
| 3686 |
+ <button type="button" class="thinfill" onclick="fnUserPrePayDataListPopup('${mberManageVO.mberId}'); return false">선결제</button>
|
|
| 3687 | 3687 |
</c:if> |
| 3688 | 3688 |
</th> |
| 3689 | 3689 |
<td> |
--- src/main/webapp/WEB-INF/jsp/uss/ion/fax/faxAdmSendStatistics.jsp
+++ src/main/webapp/WEB-INF/jsp/uss/ion/fax/faxAdmSendStatistics.jsp
... | ... | @@ -43,33 +43,33 @@ |
| 43 | 43 |
fnCalChange("<c:out value='${searchVO.searchDateType}' />");
|
| 44 | 44 |
}); |
| 45 | 45 |
|
| 46 |
-// function fnCalChange(type) {
|
|
| 47 |
-// if(type == 'day') {
|
|
| 48 |
-// $(".calendar_box").show();
|
|
| 49 |
-// $(".line").show();
|
|
| 50 |
-// $("#searchYear").hide();
|
|
| 51 |
-// $("#searchMonth").hide();
|
|
| 52 |
-// $("#searchQuarter").hide();
|
|
| 53 |
-// } else if(type == 'month') {
|
|
| 54 |
-// $(".calendar_box").hide();
|
|
| 55 |
-// $(".line").hide();
|
|
| 56 |
-// $("#searchYear").show();
|
|
| 57 |
-// $("#searchMonth").show();
|
|
| 58 |
-// $("#searchQuarter").hide();
|
|
| 59 |
-// } else if(type == 'quarter') {
|
|
| 60 |
-// $(".calendar_box").hide();
|
|
| 61 |
-// $(".line").hide();
|
|
| 62 |
-// $("#searchYear").show();
|
|
| 63 |
-// $("#searchMonth").hide();
|
|
| 64 |
-// $("#searchQuarter").show();
|
|
| 65 |
-// } else if(type == 'year') {
|
|
| 66 |
-// $(".calendar_box").hide();
|
|
| 67 |
-// $(".line").hide();
|
|
| 68 |
-// $("#searchYear").show();
|
|
| 69 |
-// $("#searchMonth").hide();
|
|
| 70 |
-// $("#searchQuarter").hide();
|
|
| 71 |
-// } |
|
| 72 |
-// } |
|
| 46 |
+ function fnCalChange(type) {
|
|
| 47 |
+ if(type == 'day') {
|
|
| 48 |
+ $(".calendar_box").show();
|
|
| 49 |
+ $(".line").show();
|
|
| 50 |
+ $("#searchYear").hide();
|
|
| 51 |
+ $("#searchMonth").hide();
|
|
| 52 |
+ $("#searchQuarter").hide();
|
|
| 53 |
+ } else if(type == 'month') {
|
|
| 54 |
+ $(".calendar_box").hide();
|
|
| 55 |
+ $(".line").hide();
|
|
| 56 |
+ $("#searchYear").show();
|
|
| 57 |
+ $("#searchMonth").show();
|
|
| 58 |
+ $("#searchQuarter").hide();
|
|
| 59 |
+ } else if(type == 'quarter') {
|
|
| 60 |
+ $(".calendar_box").hide();
|
|
| 61 |
+ $(".line").hide();
|
|
| 62 |
+ $("#searchYear").show();
|
|
| 63 |
+ $("#searchMonth").hide();
|
|
| 64 |
+ $("#searchQuarter").show();
|
|
| 65 |
+ } else if(type == 'year') {
|
|
| 66 |
+ $(".calendar_box").hide();
|
|
| 67 |
+ $(".line").hide();
|
|
| 68 |
+ $("#searchYear").show();
|
|
| 69 |
+ $("#searchMonth").hide();
|
|
| 70 |
+ $("#searchQuarter").hide();
|
|
| 71 |
+ } |
|
| 72 |
+ } |
|
| 73 | 73 |
|
| 74 | 74 |
function fn_list_search() {
|
| 75 | 75 |
var form = document.listForm; |
... | ... | @@ -202,7 +202,6 @@ |
| 202 | 202 |
</div> |
| 203 | 203 |
<div class="listTop" style="font-weight: normal; vertical-align:bottom;"> |
| 204 | 204 |
(부가세 별도) |
| 205 |
- (30분 단위 업데이트) |
|
| 206 | 205 |
|
| 207 | 206 |
<input type="button" style="cursor: pointer; height: 30px;" onclick="setTodayUpdate();" value="Today Update"> |
| 208 | 207 |
</div> |
... | ... | @@ -210,7 +209,7 @@ |
| 210 | 209 |
<table class="tbType1"> |
| 211 | 210 |
<colgroup> |
| 212 | 211 |
<col style="width:4%;"> |
| 213 |
- <col style="width:3%;"> |
|
| 212 |
+ <col style="width:5%;"> |
|
| 214 | 213 |
<col style="width:auto;"> |
| 215 | 214 |
</colgroup> |
| 216 | 215 |
<thead> |
... | ... | @@ -228,9 +227,9 @@ |
| 228 | 227 |
<c:forEach items="${statList}" var="list">
|
| 229 | 228 |
<tr> |
| 230 | 229 |
<td rowspan="2" style="border-right:2px solid #e6e6e6;"><ec:code codeId="ITN019" code="${list.agentCode}" /></td>
|
| 231 |
- <td style="border-right:2px solid #e6e6e6;">건</td> |
|
| 232 |
- <td><c:out value="${list.succFaxCnt}"/></td>
|
|
| 233 |
- <td><c:out value="${list.failFaxCnt}"/></td>
|
|
| 230 |
+ <td style="border-right:2px solid #e6e6e6;">건(매)</td> |
|
| 231 |
+ <td><c:out value="${list.succFaxCnt}"/>(<c:out value="${list.succPageCnt}"/>)</td>
|
|
| 232 |
+ <td><c:out value="${list.failFaxCnt}"/>(<c:out value="${list.failPageCnt}"/>)</td>
|
|
| 234 | 233 |
<td><c:out value="${list.succFaxRate}"/>%</td>
|
| 235 | 234 |
</tr> |
| 236 | 235 |
<tr> |
--- src/main/webapp/WEB-INF/jsp/web/kakao/msgdata/at/KakaoAlimtalkMsgDataView.jsp
+++ src/main/webapp/WEB-INF/jsp/web/kakao/msgdata/at/KakaoAlimtalkMsgDataView.jsp
... | ... | @@ -686,6 +686,11 @@ |
| 686 | 686 |
alert(returnData.message); |
| 687 | 687 |
return false; |
| 688 | 688 |
|
| 689 |
+ }else if('authFail' == returnData.result){
|
|
| 690 |
+ |
|
| 691 |
+ alert(returnData.message); |
|
| 692 |
+ location.reload(); |
|
| 693 |
+ |
|
| 689 | 694 |
} else if(status == 'success'){
|
| 690 | 695 |
|
| 691 | 696 |
var kakaoSendCnt = returnData.resultSts; |
--- src/main/webapp/WEB-INF/jsp/web/msgcampain/MsgDataSMLView.jsp
+++ src/main/webapp/WEB-INF/jsp/web/msgcampain/MsgDataSMLView.jsp
... | ... | @@ -2839,6 +2839,13 @@ |
| 2839 | 2839 |
|
| 2840 | 2840 |
} |
| 2841 | 2841 |
|
| 2842 |
+function fn_mberDeptChk(){
|
|
| 2843 |
+ |
|
| 2844 |
+ alert("선거문자는 개인 회원만 이용 가능합니다.");
|
|
| 2845 |
+ return false; |
|
| 2846 |
+ |
|
| 2847 |
+} |
|
| 2848 |
+ |
|
| 2842 | 2849 |
|
| 2843 | 2850 |
function goToCustom(){
|
| 2844 | 2851 |
var form = document.goToCustomForm; |
... | ... | @@ -3254,11 +3261,9 @@ |
| 3254 | 3261 |
<input type="hidden" id="dataType" name="dataType" value="Reg"/> |
| 3255 | 3262 |
|
| 3256 | 3263 |
<div class="layer_in"> |
| 3257 |
- <p class="adr_pop_title">선거문자는 반드시 <span class="c_002c9a">후보자 등록</span>을 하셔야만 이용 가능합니다.</p> |
|
| 3264 |
+ <p class="adr_pop_title">선거문자는 반드시 <span class="c_002c9a">후보자 등록</span>을 하셔야만 이용 가능합니다. <br/>입력하신 내용은 세금계산서 발행을 위한 정보로만 사용됩니다.</p> |
|
| 3258 | 3265 |
<div class="candidate_table"> |
| 3259 | 3266 |
<p>후보자</p> |
| 3260 |
- |
|
| 3261 |
- |
|
| 3262 | 3267 |
<table> |
| 3263 | 3268 |
<caption>후보자 등록을 위한 성명, 주민등록번호, 주소를 입력하는 표</caption> |
| 3264 | 3269 |
<colgroup> |
... | ... | @@ -3309,13 +3314,13 @@ |
| 3309 | 3314 |
<input type="text" id="managerNm" name="managerNm" value="<c:out value='${mjonCandidateVO.managerNm}'/>" placeholder="담당자 성명 입력" onfocus="this.placeholder=''" onblur="this.placeholder='담당자 성명 입력'" class="inputLight">
|
| 3310 | 3315 |
</td> |
| 3311 | 3316 |
</tr> |
| 3312 |
- <tr> |
|
| 3317 |
+ <%-- <tr> |
|
| 3313 | 3318 |
<th scope="row">직위</th> |
| 3314 | 3319 |
<td> |
| 3315 | 3320 |
<label for="office" class="label"></label> |
| 3316 | 3321 |
<input type="text" id="office" name="office" value="<c:out value='${mjonCandidateVO.office}'/>" placeholder="직위 입력" onfocus="this.placeholder=''" onblur="this.placeholder='직위 입력'" class="inputLight">
|
| 3317 | 3322 |
</td> |
| 3318 |
- </tr> |
|
| 3323 |
+ </tr> --%> |
|
| 3319 | 3324 |
<tr> |
| 3320 | 3325 |
<th scope="row">휴대폰</th> |
| 3321 | 3326 |
<td> |
... | ... | @@ -3589,7 +3594,7 @@ |
| 3589 | 3594 |
<ul class="info_list"> |
| 3590 | 3595 |
<li>- 90byte 초과 시, 자동으로 장문으로 전환됩니다. 장문 문자는 최대 2,000byte까지만 작성할 수 있습니다.</li> |
| 3591 | 3596 |
<li>- 그림문자 1건당 최대 3장까지 이미지 첨부 가능 [권장 사이즈 : <strong>640 x 960</strong>픽셀 / 최대용량 : <strong>10MB</strong> 이내]</li> |
| 3592 |
- <li>- 광고성 메시지는 <span>반드시 아래 유의사항을 사전 확인</span> 후 발송해 주시기 바랍니다.</li> |
|
| 3597 |
+ <li>- 선거문자는 반드시 발송규정을 사전 확인 후 발송해 주시기 바랍니다.</li> |
|
| 3593 | 3598 |
</ul> |
| 3594 | 3599 |
<!-- 이용방법/혜택 --> |
| 3595 | 3600 |
<div class="cdpop_cont current" id="listTab2_1"> |
... | ... | @@ -3827,6 +3832,9 @@ |
| 3827 | 3832 |
<c:choose> |
| 3828 | 3833 |
<c:when test="${empty LoginVO}">
|
| 3829 | 3834 |
<button type="button" class="btnType" onclick="javascript:fn_candidateLoginChk(); return false;"><i class="election_btn1"></i>후보자 등록</button> |
| 3835 |
+ </c:when> |
|
| 3836 |
+ <c:when test="${not empty mberManageVO && mberManageVO.dept eq 'c'}">
|
|
| 3837 |
+ <button type="button" class="btnType" onclick="javascript:fn_mberDeptChk(); return false;"><i class="election_btn1"></i>후보자 등록</button> |
|
| 3830 | 3838 |
</c:when> |
| 3831 | 3839 |
<c:otherwise> |
| 3832 | 3840 |
<button type="button" class="btnType" data-tooltip="candidate_popup01"><i class="election_btn1"></i>후보자 등록</button> |
... | ... | @@ -4284,6 +4292,10 @@ |
| 4284 | 4292 |
<input type="text" class="dividType1" id="divideCnt" name="divideCnt" value="20" onkeypress='return checkNumber(event)' maxlength="4"/> |
| 4285 | 4293 |
<label for="divideCnt">건씩</label> |
| 4286 | 4294 |
<select class="selType1" id="divideTime" name="divideTime"> |
| 4295 |
+ <option value="1">01분</option> |
|
| 4296 |
+ <option value="2">02분</option> |
|
| 4297 |
+ <option value="3">03분</option> |
|
| 4298 |
+ <option value="4">04분</option> |
|
| 4287 | 4299 |
<option value="5">05분</option> |
| 4288 | 4300 |
<option value="10">10분</option> |
| 4289 | 4301 |
<option value="15">15분</option> |
--- src/main/webapp/WEB-INF/jsp/web/msgcampain/excel/MsgExcelDataSMLView.jsp
+++ src/main/webapp/WEB-INF/jsp/web/msgcampain/excel/MsgExcelDataSMLView.jsp
... | ... | @@ -3777,6 +3777,10 @@ |
| 3777 | 3777 |
<input type="text" class="dividType1" id="divideCnt" name="divideCnt" value="20" onkeypress='return checkNumber(event)' maxlength="4"/> |
| 3778 | 3778 |
<label for="divideCnt">건씩</label> |
| 3779 | 3779 |
<select class="selType1" id="divideTime" name="divideTime"> |
| 3780 |
+ <option value="1">01분</option> |
|
| 3781 |
+ <option value="2">02분</option> |
|
| 3782 |
+ <option value="3">03분</option> |
|
| 3783 |
+ <option value="4">04분</option> |
|
| 3780 | 3784 |
<option value="5">05분</option> |
| 3781 | 3785 |
<option value="10">10분</option> |
| 3782 | 3786 |
<option value="15">15분</option> |
--- src/main/webapp/WEB-INF/jsp/web/msgdata/MsgDataSMLView.jsp
+++ src/main/webapp/WEB-INF/jsp/web/msgdata/MsgDataSMLView.jsp
... | ... | @@ -4082,8 +4082,12 @@ |
| 4082 | 4082 |
<input type="checkbox" id="divideChk" name="divideChk"> |
| 4083 | 4083 |
<label for="divideChk">분할전송</label> |
| 4084 | 4084 |
<input type="text" class="dividType1" id="divideCnt" name="divideCnt" value="20" onkeypress='return checkNumber(event)' maxlength="4"/> |
| 4085 |
- <label for="divideCnt">건씩</label> <!-- 2023 10 13 수정 --> |
|
| 4085 |
+ <label for="divideCnt">건씩</label> <!-- 2023 11 17 수정 --> |
|
| 4086 | 4086 |
<select class="selType1" id="divideTime" name="divideTime"> |
| 4087 |
+ <option value="1">01분</option> |
|
| 4088 |
+ <option value="2">02분</option> |
|
| 4089 |
+ <option value="3">03분</option> |
|
| 4090 |
+ <option value="4">04분</option> |
|
| 4087 | 4091 |
<option value="5">05분</option> |
| 4088 | 4092 |
<option value="10">10분</option> |
| 4089 | 4093 |
<option value="15">15분</option> |
--- src/main/webapp/WEB-INF/jsp/web/msgdata/excel/MsgExcelDataSMLView.jsp
+++ src/main/webapp/WEB-INF/jsp/web/msgdata/excel/MsgExcelDataSMLView.jsp
... | ... | @@ -3535,6 +3535,10 @@ |
| 3535 | 3535 |
<input type="text" class="dividType1" id="divideCnt" name="divideCnt" value="20" onkeypress='return checkNumber(event)' maxlength="4"/> |
| 3536 | 3536 |
<label for="divideCnt">건씩</label> |
| 3537 | 3537 |
<select class="selType1" id="divideTime" name="divideTime"> |
| 3538 |
+ <option value="1">01분</option> |
|
| 3539 |
+ <option value="2">02분</option> |
|
| 3540 |
+ <option value="3">03분</option> |
|
| 3541 |
+ <option value="4">04분</option> |
|
| 3538 | 3542 |
<option value="5">05분</option> |
| 3539 | 3543 |
<option value="10">10분</option> |
| 3540 | 3544 |
<option value="15">15분</option> |
--- src/main/webapp/WEB-INF/jsp/web/reservedmsg/ReservedMsgView.jsp
+++ src/main/webapp/WEB-INF/jsp/web/reservedmsg/ReservedMsgView.jsp
... | ... | @@ -622,8 +622,7 @@ |
| 622 | 622 |
</c:if> |
| 623 | 623 |
</div> |
| 624 | 624 |
</div> |
| 625 |
- |
|
| 626 |
- |
|
| 625 |
+ </div> |
|
| 627 | 626 |
<div class="excel_middle"> |
| 628 | 627 |
<div class="select_btnWrap clearfix"> |
| 629 | 628 |
<div class="btn_left"> |
--- src/main/webapp/WEB-INF/jsp/web/user/kisaReport.jsp
+++ src/main/webapp/WEB-INF/jsp/web/user/kisaReport.jsp
... | ... | @@ -379,7 +379,7 @@ |
| 379 | 379 |
<div class="kisa_info"> |
| 380 | 380 |
고객님께서 발송하신 문자가 <strong>정보통신법 제50조에 위반되어 한국인터넷진흥원(KISA)에 신고 접수</strong>되었습니다.<br>아래 신고내역을 확인하신 후 소명자료 제출과 서명을 완료해주시기 바랍니다. |
| 381 | 381 |
<p>※ 광고문자 규정 위반 시 최대 1년 이하의 징역 또는 3,000만원 이하의 과태료 부과(해당 발신번호 사용불가)</p> |
| 382 |
- <button type="button" class="btnType btnType11" data-tooltip="popup01">광고법령보기</button> |
|
| 382 |
+ <button type="button" class="btnType btnType11" data-tooltip="kisa_popup">광고법령보기</button> |
|
| 383 | 383 |
</div> |
| 384 | 384 |
<form id="searchForm" name="searchForm" method="post"> |
| 385 | 385 |
<input type="hidden" id="pageIndex" name="pageIndex" value="1"/> |
... | ... | @@ -545,10 +545,10 @@ |
| 545 | 545 |
|
| 546 | 546 |
<!-- 광고법령보기팝업 --> |
| 547 | 547 |
<div class="tooltip-wrap"> |
| 548 |
- <div class="popup-com popup01 kisa_popup" tabindex="0" data-tooltip-con="popup01" data-focus="popup01" data-focus-prev="popup01-close"> |
|
| 548 |
+ <div class="popup-com kisa_popup" tabindex="0" data-tooltip-con="kisa_popup" data-focus="kisa_popup" data-focus-prev="kisa_popup-close"> |
|
| 549 | 549 |
<div class="popup_heading"> |
| 550 | 550 |
<p>KISA 신고 대상 관련 법안</p> |
| 551 |
- <button type="button" class="tooltip-close" data-focus="popup01-close"> |
|
| 551 |
+ <button type="button" class="tooltip-close" data-focus="kisa_popup-close"> |
|
| 552 | 552 |
<img src="/publish/images/content/layerPopup_close.png" alt="팝업 닫기"> |
| 553 | 553 |
</button> |
| 554 | 554 |
</div> |
... | ... | @@ -592,7 +592,7 @@ |
| 592 | 592 |
</dl> |
| 593 | 593 |
</div> |
| 594 | 594 |
<div class="popup_btn_wrap2"> |
| 595 |
- <button type="button" class="tooltip-close" data-focus="popup01-close" data-focus-next="popup01">닫기</button> |
|
| 595 |
+ <button type="button" class="tooltip-close" data-focus="kisa_popup-close" data-focus-next="kisa_popup">닫기</button> |
|
| 596 | 596 |
</div> |
| 597 | 597 |
</div> |
| 598 | 598 |
</div> |
--- src/main/webapp/WEB-INF/jsp/web/user/mberCompanyInfoChange.jsp
+++ src/main/webapp/WEB-INF/jsp/web/user/mberCompanyInfoChange.jsp
... | ... | @@ -395,11 +395,13 @@ |
| 395 | 395 |
|
| 396 | 396 |
var form = document.updateCmpUserInfoForm; |
| 397 | 397 |
|
| 398 |
- if($("#atFileBasicWrite").val() == ''){
|
|
| 398 |
+ if($("#atFileBasicWrite").val() == ''){
|
|
| 399 | 399 |
alert("사업자등록증을 첨부해주세요.")
|
| 400 | 400 |
return false; |
| 401 | 401 |
} |
| 402 | 402 |
|
| 403 |
+ form.bizNo.value = $("#bizNo").val().replaceAll('-','');
|
|
| 404 |
+ |
|
| 403 | 405 |
if(doubleSubmitFlag3){
|
| 404 | 406 |
alert("이미 재등록하셨습니다.");
|
| 405 | 407 |
return false; |
... | ... | @@ -435,6 +437,39 @@ |
| 435 | 437 |
} |
| 436 | 438 |
|
| 437 | 439 |
} |
| 440 |
+ |
|
| 441 |
+ |
|
| 442 |
+//기업정보 변경 재등록 취소 처리 |
|
| 443 |
+function updateCmpUserReCancel(cmpHstId){
|
|
| 444 |
+ |
|
| 445 |
+ if(!confirm("기업회원 변경을 취소하시겠습니까?")){
|
|
| 446 |
+ return false; |
|
| 447 |
+ } |
|
| 448 |
+ |
|
| 449 |
+ $.ajax({
|
|
| 450 |
+ type : 'POST' |
|
| 451 |
+ ,url : "<c:url value='/web/user/updateCmpUserInfoCancelAjax.do'/>" |
|
| 452 |
+ ,async:false |
|
| 453 |
+ ,data : {"cmpHstId":cmpHstId}
|
|
| 454 |
+ ,dataType:'json' |
|
| 455 |
+ ,success : function(returnData, status){
|
|
| 456 |
+ if(returnData.result == "success") {
|
|
| 457 |
+ alert("기업회원 정보변경 재등록 취소 요청이 처리되었습니다.");
|
|
| 458 |
+ location.href='/web/user/mberInfoIndex.do'; //마이페이지로 이동 |
|
| 459 |
+ } else{
|
|
| 460 |
+ alert(returnData.message); |
|
| 461 |
+ return; |
|
| 462 |
+ } |
|
| 463 |
+ } |
|
| 464 |
+ ,error : function(request , status, error){
|
|
| 465 |
+ alert("기업회원 정보변경 취소요청 처리 중 오류가 발생하였습니다.");
|
|
| 466 |
+ console.log("code:"+request.status+"\n"+"message:"+request.responseText+"\n"+"error:"+error);
|
|
| 467 |
+ } |
|
| 468 |
+ }); |
|
| 469 |
+ |
|
| 470 |
+} |
|
| 471 |
+ |
|
| 472 |
+ |
|
| 438 | 473 |
//파일다운로드 |
| 439 | 474 |
function fn_egov_downFile(atchFileId, fileSn){
|
| 440 | 475 |
window.open("<c:url value='/cmm/fms/FileDown.do?atchFileId="+atchFileId+"&fileSn="+fileSn+"'/>");
|
... | ... | @@ -495,8 +530,6 @@ |
| 495 | 530 |
|
| 496 | 531 |
<input type="hidden" name="taxMngEmail" id="taxMngEmail" /> |
| 497 | 532 |
|
| 498 |
- |
|
| 499 |
- |
|
| 500 | 533 |
<div id="passwordCheckPage" style="display: block;"> |
| 501 | 534 |
<!-- 비밀번호 확인 --> |
| 502 | 535 |
<div class="heading"> |
... | ... | @@ -534,7 +567,6 @@ |
| 534 | 567 |
</div> |
| 535 | 568 |
<!--// 비밀번호 확인 --> |
| 536 | 569 |
</div> |
| 537 |
- |
|
| 538 | 570 |
|
| 539 | 571 |
<div id="userInfoPage" style="display: none;"> |
| 540 | 572 |
<!-- 회원정보 변경 --> |
... | ... | @@ -696,9 +728,19 @@ |
| 696 | 728 |
</div> |
| 697 | 729 |
<p class="poe_noti">이메일 및 마케팅 수신 동의 변경은 심사 없이 바로 적용 가능합니다.</p> |
| 698 | 730 |
<div class="mem_btnWrap2 justify"> |
| 731 |
+ <%-- <c:choose> |
|
| 732 |
+ <c:when test="${cmpPhoneChangeManageVO.hstSttus eq '03'}">
|
|
| 733 |
+ <button type="button" class="mem_btn3" onclick="updateUserInfo()" >재등록</button> |
|
| 734 |
+ <button type="button" class="mem_btn3" onclick="updateUserInfoCancel()" >기업회원 변경 취소</button> |
|
| 735 |
+ </c:when> |
|
| 736 |
+ <c:otherwise> |
|
| 737 |
+ <button type="button" class="mem_btn3" onclick="updateUserInfo()" >변경</button> |
|
| 738 |
+ </c:otherwise> |
|
| 739 |
+ </c:choose> --%> |
|
| 740 |
+ |
|
| 699 | 741 |
<button type="button" class="mem_btn3" onclick="updateUserInfo()" > |
| 700 | 742 |
<c:if test="${cmpPhoneChangeManageVO.hstSttus eq '03'}">
|
| 701 |
- 재등록 |
|
| 743 |
+ |
|
| 702 | 744 |
</c:if> |
| 703 | 745 |
<c:if test="${cmpPhoneChangeManageVO.hstSttus ne '03'}">
|
| 704 | 746 |
변경 |
... | ... | @@ -780,10 +822,10 @@ |
| 780 | 822 |
</div> |
| 781 | 823 |
</c:when> |
| 782 | 824 |
<c:when test="${cmpInfoChangeManageVO.hstSttus eq '03'}"><!-- 기업정보 변경 반려상태 -->
|
| 783 |
- <input type="hidden" name="bizType" value="${cmpInfoChangeManageVO.bizType}"/>
|
|
| 825 |
+ <%-- <input type="hidden" name="bizType" value="${cmpInfoChangeManageVO.bizType}"/>
|
|
| 784 | 826 |
<input type="hidden" name="mberNm" value="${cmpInfoChangeManageVO.mberNm}"/>
|
| 785 | 827 |
<input type="hidden" name="ceoNm" value="${cmpInfoChangeManageVO.ceoNm}"/>
|
| 786 |
- <input type="hidden" name="bizNo" value="${cmpInfoChangeManageVO.bizNo}"/>
|
|
| 828 |
+ <input type="hidden" name="bizNo" value="${cmpInfoChangeManageVO.bizNo}"/> --%>
|
|
| 787 | 829 |
<input type="hidden" name="zip" value="${cmpInfoChangeManageVO.zip}"/>
|
| 788 | 830 |
<input type="hidden" name="adres" value="${cmpInfoChangeManageVO.adres}"/>
|
| 789 | 831 |
<input type="hidden" name="detailAdres" value="${cmpInfoChangeManageVO.detailAdres}"/>
|
... | ... | @@ -801,19 +843,22 @@ |
| 801 | 843 |
<div class="input_list_item"> |
| 802 | 844 |
<div class="input_left">기업유형</div> |
| 803 | 845 |
<div class="input_right"> |
| 804 |
- <ec:code codeId="ITN033" code="${cmpInfoChangeManageVO.bizType}" />
|
|
| 846 |
+ <ec:radio name="bizType" id="" codeId="ITN033" selectedValue="${cmpInfoChangeManageVO.bizType}" />
|
|
| 847 |
+ <%-- <ec:code codeId="ITN033" code="${cmpInfoChangeManageVO.bizType}" /> --%>
|
|
| 805 | 848 |
</div> |
| 806 | 849 |
</div> |
| 807 | 850 |
<div class="input_list_item"> |
| 808 | 851 |
<div class="input_left">회사명</div> |
| 809 | 852 |
<div class="input_right"> |
| 810 |
- <c:out value='${cmpInfoChangeManageVO.mberNm}'/>
|
|
| 853 |
+ <input type="text" class="list_inputType1" name="mberNm" value="${cmpInfoChangeManageVO.mberNm}"/>
|
|
| 854 |
+ <%-- <c:out value='${cmpInfoChangeManageVO.mberNm}'/> --%>
|
|
| 811 | 855 |
</div> |
| 812 | 856 |
</div> |
| 813 | 857 |
<div class="input_list_item"> |
| 814 | 858 |
<div class="input_left">대표</div> |
| 815 | 859 |
<div class="input_right"> |
| 816 |
- <c:out value='${cmpInfoChangeManageVO.ceoNm}'/>
|
|
| 860 |
+ <input type="text" class="list_inputType1" name="ceoNm" value="${cmpInfoChangeManageVO.ceoNm}"/>
|
|
| 861 |
+ <%-- <c:out value='${cmpInfoChangeManageVO.ceoNm}'/> --%>
|
|
| 817 | 862 |
</div> |
| 818 | 863 |
</div> |
| 819 | 864 |
<div class="input_list_item"> |
... | ... | @@ -827,7 +872,12 @@ |
| 827 | 872 |
<div class="input_left">사업자등록번호</div> |
| 828 | 873 |
<div class="input_right"> |
| 829 | 874 |
<label for="" class="label">사업자등록번호 입력</label> |
| 830 |
- <c:out value='${fn:substring(cmpInfoChangeManageVO.bizNo, 0, 3)}'/>-<c:out value='${fn:substring(cmpInfoChangeManageVO.bizNo, 3, 5)}'/>-<c:out value='${fn:substring(cmpInfoChangeManageVO.bizNo, 5, 10)}'/>
|
|
| 875 |
+ <%-- <input type="text" class="list_inputType1" name="bizNo" value="${cmpInfoChangeManageVO.bizNo}"/> --%>
|
|
| 876 |
+ <input type="text" class="list_inputType1" name="bizNo" id="bizNo" maxlength="12" value="${fn:substring(cmpInfoChangeManageVO.bizNo, 0, 3)}-${fn:substring(cmpInfoChangeManageVO.bizNo, 3, 5)}-${fn:substring(cmpInfoChangeManageVO.bizNo, 5, 10)}"/>
|
|
| 877 |
+ <%-- <c:out value='${fn:substring(cmpInfoChangeManageVO.bizNo, 0, 3)}'/>-<c:out value='${fn:substring(cmpInfoChangeManageVO.bizNo, 3, 5)}'/>-<c:out value='${fn:substring(cmpInfoChangeManageVO.bizNo, 5, 10)}'/> --%>
|
|
| 878 |
+ <div class="list_btn_wrap"> |
|
| 879 |
+ <button type="button" onclick="bizNoCheck(); return false;">사업자등록번호 확인</button> |
|
| 880 |
+ </div> |
|
| 831 | 881 |
</div> |
| 832 | 882 |
</div> |
| 833 | 883 |
<div class="input_list_item"> |
... | ... | @@ -872,8 +922,9 @@ |
| 872 | 922 |
</div> |
| 873 | 923 |
</c:if> |
| 874 | 924 |
|
| 875 |
- <div class="mem_btnWrap2 justify"> |
|
| 876 |
- <button type="button" class="mem_btn3" onclick="updateCmpUserRe()" >재등록</button> |
|
| 925 |
+ <div class="mem_btnWrap3 justify"> |
|
| 926 |
+ <button type="button" class="mem_btn5" onclick="updateCmpUserRe();" >재등록</button> |
|
| 927 |
+ <button type="button" class="mem_btn4" onclick="updateCmpUserReCancel('<c:out value="${cmpInfoChangeManageVO.cmpHstId}"/>');" >재등록 취소</button>
|
|
| 877 | 928 |
</div> |
| 878 | 929 |
</div> |
| 879 | 930 |
</div> |
--- src/main/webapp/WEB-INF/jsp/web/user/mberSecession.jsp
+++ src/main/webapp/WEB-INF/jsp/web/user/mberSecession.jsp
... | ... | @@ -115,7 +115,7 @@ |
| 115 | 115 |
본인 확인 후 <span class="c_002c9a fwMd">회원탈퇴 신청이 가능</span>합니다. |
| 116 | 116 |
</p> |
| 117 | 117 |
<div class="self_identfy_wrap"> |
| 118 |
- <div class="self_identfy1"> |
|
| 118 |
+ <%-- <div class="self_identfy1"> |
|
| 119 | 119 |
<div class="table_cell"> |
| 120 | 120 |
<p>등록한 휴대폰 번호로 SMS 인증</p> |
| 121 | 121 |
<span>회원정보에 등록한 휴대폰 번호로 SMS 인증</span> |
... | ... | @@ -132,7 +132,7 @@ |
| 132 | 132 |
<button type="button" class="indenfy_btn" onclick="ARSCodeCheck()">확인</button> |
| 133 | 133 |
</div> |
| 134 | 134 |
</div> |
| 135 |
- </div> |
|
| 135 |
+ </div> --%> |
|
| 136 | 136 |
<div class="self_identfy2"> |
| 137 | 137 |
<div class="table_cell"> |
| 138 | 138 |
<p>본인 명의 휴대폰 번호로 본인인증</p> |
--- src/main/webapp/publish/css/content.css
+++ src/main/webapp/publish/css/content.css
... | ... | @@ -18,6 +18,13 @@ |
| 18 | 18 |
.tRight {text-align: right !important;}
|
| 19 | 19 |
.tLeft {text-align: left !important;}
|
| 20 | 20 |
|
| 21 |
+.btn_blue.fill{background:#002c9a;color:#fff;}
|
|
| 22 |
+.btn_gray.fill{background:#6a6c72;color:#fff;}
|
|
| 23 |
+.btn_yellow.fill{background:#fbc72b;color:#222;}
|
|
| 24 |
+ |
|
| 25 |
+.btn_blue.border{border:1px solid #002c9a;color:#002c9a;}
|
|
| 26 |
+.btn_gray.border{border:1px solid #6a6c72;color:#666;}
|
|
| 27 |
+ |
|
| 21 | 28 |
.w100 {width: 100%;}
|
| 22 | 29 |
.h100 {height: 100%;}
|
| 23 | 30 |
|
... | ... | @@ -587,6 +594,33 @@ |
| 587 | 594 |
.sub .heading i.election_btn1 {background-image: url(/publish/images/content/candidate_img.png); width: 25px; height: 22px; margin: 0 3px 0px 0;}
|
| 588 | 595 |
.sub .heading i.election_btn2 {background-image: url(/publish/images/content/receipt_icon.png); width: 18px; height: 19px; margin: 0 3px 2px 0;}
|
| 589 | 596 |
.sub .heading i.election_btn3 {background-image: url(/publish/images/content/print_icon2.png); width: 20px; height: 19px; margin: 0 3px 2px 0;}
|
| 597 |
+ |
|
| 598 |
+/* 2023/12/01 선거문자 - 20건문자(수동문자)전송 추가 */ |
|
| 599 |
+.sub .election .receipt_number_table_wrap .listType{height:346px;}
|
|
| 600 |
+.sub .election .receipt_number_table_wrap .receipt_number_table tbody{height:calc(100% - 38px);}
|
|
| 601 |
+.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;}
|
|
| 602 |
+.sub .election .receipt_number_table_wrap .receipt_number_table th,.sub .election .receipt_number_table_wrap .receipt_number_table td{position:relative;}
|
|
| 603 |
+.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%);}
|
|
| 604 |
+.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;}
|
|
| 605 |
+.sub .election .receipt_number_table_wrap .receipt_number_table{width:100%;text-align:center;table-layout:fixed;}
|
|
| 606 |
+.sub .election .receipt_number_table_wrap .receipt_number_table thead tr{border-bottom:1px solid #a2a2a2;}
|
|
| 607 |
+.sub .election .receipt_number_table_wrap .receipt_number_table thead tr th{height:38px;text-align:center;background:#e8e8e8;}
|
|
| 608 |
+.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;}
|
|
| 609 |
+.sub .election .receipt_number_table_wrap .receipt_number_table tbody tr td input{width:60px;}
|
|
| 610 |
+.sub .election .receipt_number_table_wrap .receipt_number_table tbody tr td label{display:inline-block;width:calc(100% - 64px);}
|
|
| 611 |
+.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;}
|
|
| 612 |
+.sub .election .receipt_number_table_wrap .put_right .receipt_info dt{font-size:15px;font-weight:500;margin:0 0 8px 0;}
|
|
| 613 |
+.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;}
|
|
| 614 |
+.sub .election .receipt_number_table_wrap .put_right .receipt_info dd:last-child{margin:0 0 0 0;}
|
|
| 615 |
+.sub .election .receipt_number_table_wrap .put_right .receipt_info dd b{font-size:16px;font-weight:500;}
|
|
| 616 |
+.sub .election .list_bottom{display:flex;width:74%;align-items:center;justify-content:space-between;padding:0 0 10px 0;}
|
|
| 617 |
+.sub .election .list_bottom .pagination{display:inline-flex;width:auto;margin:0;justify-content:flex-start;}
|
|
| 618 |
+.sub .election .list_bottom .pagination button{height:32px;}
|
|
| 619 |
+.sub .election .list_bottom .list_bottom_right{float:none;display:inline-flex;justify-content:flex-end;}
|
|
| 620 |
+.sub .election .list_bottom .list_bottom_right button{height:32px;padding:0 13px;font-weight:400 !important;}
|
|
| 621 |
+.sub .election .list_bottom .list_bottom_right>button{margin:0 4px 0 0;}
|
|
| 622 |
+.sub .election .list_bottom .list_bottom_right .btn_yellow{display:inline-flex;align-items:center;padding:0 10px;}
|
|
| 623 |
+.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;}
|
|
| 590 | 624 |
|
| 591 | 625 |
/* send_bottom */ |
| 592 | 626 |
.send_bottom {position: relative;margin: 60px 0 0 0;}
|
... | ... | @@ -1994,6 +2028,12 @@ |
| 1994 | 2028 |
|
| 1995 | 2029 |
/*발송결과_select버튼*/ |
| 1996 | 2030 |
.select_btnWrap .btn_right .search .send_text{width: 170px;}
|
| 2031 |
+ |
|
| 2032 |
+ /* 선거문자 */ |
|
| 2033 |
+ .election .tType1 tbody tr td.putText .receipt_number_table_wrap .put_right{max-width:170px;}
|
|
| 2034 |
+ .sub .election .receipt_number_table_wrap+.list_bottom .list_bottom_right button{font-size:14px;letter-spacing:-1px;}
|
|
| 2035 |
+ .sub .election .receipt_number_table_wrap+.list_bottom .list_bottom_right .btn_gray.fill{padding:0 5px;}
|
|
| 2036 |
+ .sub .election .receipt_number_table_wrap+.list_bottom .list_bottom_right .btn_yellow.fill{padding:0 3px;}
|
|
| 1997 | 2037 |
} |
| 1998 | 2038 |
|
| 1999 | 2039 |
@media only screen and (max-width:1480px){
|
... | ... | @@ -2090,6 +2130,11 @@ |
| 2090 | 2130 |
/*발송결과_select버튼*/ |
| 2091 | 2131 |
.rev_admin_cont .select_btnWrap .btn_right .select_all_btn{width: 143px;}
|
| 2092 | 2132 |
.rev_admin_cont .select_btnWrap .btn_right .select_btn{width: 105px;}
|
| 2133 |
+ |
|
| 2134 |
+ /* 선거문자 */ |
|
| 2135 |
+ .sub .election .list_bottom{width:72.5%;}
|
|
| 2136 |
+ .sub .election .receipt_number_table_wrap+.list_bottom .list_bottom_right button{letter-spacing:-1.4px;}
|
|
| 2137 |
+ .sub .election .list_bottom .pagination button{width:30px;height:30px;}
|
|
| 2093 | 2138 |
} |
| 2094 | 2139 |
|
| 2095 | 2140 |
@media only screen and (max-width:1380px){
|
--- src/main/webapp/publish/css/mem.css
+++ src/main/webapp/publish/css/mem.css
... | ... | @@ -590,8 +590,8 @@ |
| 590 | 590 |
|
| 591 | 591 |
|
| 592 | 592 |
/* ȸ��Ż�� */ |
| 593 |
-.self_identfy_wrap {display: flex; justify-content: space-between;}
|
|
| 594 |
-.self_identfy_wrap>div {width: calc(100%/2 - 15px); height: 390px; border: 3px solid #dddddd; border-radius: 5px; display: table; text-align: center;}
|
|
| 593 |
+.self_identfy_wrap {display: flex; justify-content: center;}
|
|
| 594 |
+.self_identfy_wrap>div {width: 64%; height: 390px; border: 3px solid #dddddd; border-radius: 5px; display: table; text-align: center;}
|
|
| 595 | 595 |
.self_identfy_wrap p {font-size: 24px; font-weight: 500;}
|
| 596 | 596 |
.self_identfy_wrap span {font-size: 17px; font-weight: 300; color: #555; margin: 12px 0 22px 0; display: inline-block; line-height: 1.5;}
|
| 597 | 597 |
.self_identfy_wrap .indenfy_btn {width: 325px; height: 50px; border-radius: 5px; background-color: #002c9a; color: #fff; font-size: 18px;}
|
--- src/main/webapp/publish/guide_2022.html
+++ src/main/webapp/publish/guide_2022.html
... | ... | @@ -18,6 +18,7 @@ |
| 18 | 18 |
<!-- <p>***<span class="font1"> (컨텐츠)</span> : 반복적으로 사용 안함</p> |
| 19 | 19 |
<p>***<span class="font2"> (보드)</span> : 반복적으로 사용</p> --> |
| 20 | 20 |
<ul class="page"> |
| 21 |
+ <li><a href="/publish/sub_election_2023.html">sub_election_2023.html</a>선거문자</li> |
|
| 21 | 22 |
<li><a href="/publish/publish_text/send_text.html">send_text.html</a>문자보내기</li> |
| 22 | 23 |
<li><a href="/publish/publish_text/text_send.html">text_send.html</a>문자발송</li> |
| 23 | 24 |
<li><a href="/publish/publish_text/multi_text.html">multi_text.html</a>단체문자</li> |
+++ src/main/webapp/publish/images/content/qmIcon_black.png
| Binary file is not shown |
--- src/main/webapp/publish/js/content.js
+++ src/main/webapp/publish/js/content.js
... | ... | @@ -379,7 +379,14 @@ |
| 379 | 379 |
// LayerPopup.removeClass("active");
|
| 380 | 380 |
// } |
| 381 | 381 |
// }); |
| 382 |
- |
|
| 382 |
+ |
|
| 383 |
+ //선거문자 1명씩 선택 ? 호버 시 팝업 |
|
| 384 |
+ $(".btn_check_one .qmMark").mouseover(function(){
|
|
| 385 |
+ $(this).parents(".btnType").next(".send_hover_cont").addClass("on");
|
|
| 386 |
+ }) |
|
| 387 |
+ $(".btn_check_one .qmMark").mouseleave(function(){
|
|
| 388 |
+ $(this).parents(".btnType").next(".send_hover_cont").removeClass("on");
|
|
| 389 |
+ }) |
|
| 383 | 390 |
|
| 384 | 391 |
//문자발송 오류검사 ? 호버 시 팝업 |
| 385 | 392 |
$(".test_qm").mouseover(function(){
|
+++ src/main/webapp/publish/js/publish.js
... | ... | @@ -0,0 +1,37 @@ |
| 1 | + | |
| 2 | +// 마우스 길게 누르는 function | |
| 3 | +var onlongclick = function ($target, time, callback) {
| |
| 4 | + $($target).on("mousedown", function () {
| |
| 5 | + const timer = setTimeout(callback, time); | |
| 6 | + $($target).on("mouseup", function () {
| |
| 7 | + clearTimeout(timer); | |
| 8 | + }); | |
| 9 | + }); | |
| 10 | +} | |
| 11 | + | |
| 12 | + | |
| 13 | +var publishCommon = {
| |
| 14 | + count: 0, | |
| 15 | + longMousePressCheck: function (checkTarget, checkTime) {
| |
| 16 | + // checkTarget → 체크박스([name='']) / checkTime → 몇초 간격으로 체크 될지 | |
| 17 | + var checkLength = checkTarget.length; // 체크박스 몇개인지 | |
| 18 | + var cnt = 0; // 몇개 체크됐는지 | |
| 19 | + var checkEvent = setInterval(function () {
| |
| 20 | + if (this.count == 0) {}
| |
| 21 | + else if (cnt >= checkLength) {
| |
| 22 | + clearInterval(checkEvent); // 자동체크 끝. | |
| 23 | + } | |
| 24 | + $(checkTarget[cnt]).prop('checked', true); // 체크박스 체크.
| |
| 25 | + cnt++; | |
| 26 | + }, checkTime); | |
| 27 | + }, | |
| 28 | + clickCheck: function (checkTarget) {
| |
| 29 | + // 한번 클릭 했을 때 체크, checkTarget → 체크박스([name='']) | |
| 30 | + if (checkTarget.length < this.count) {
| |
| 31 | + // 체크 다하면 더이상 작동 x. | |
| 32 | + return false; | |
| 33 | + } | |
| 34 | + $(checkTarget[this.count]).prop('checked', true); // 체크박스 체크
| |
| 35 | + this.count++; | |
| 36 | + } | |
| 37 | +} |
--- src/main/webapp/publish/publish_adv/adv_template_v1_230918.html
+++ src/main/webapp/publish/publish_adv/adv_template_v1_230918.html
... | ... | @@ -10,7 +10,7 @@ |
| 10 | 10 |
<meta name="Keywords" content="문자전송, 문자발송, SMS, LMS, MMS, 문자보내기, 단체문자, 단체문자전송, 단체문자발송,단체문자사이트,문자사이트, 대량문자"> |
| 11 | 11 |
<meta name="description" content="요즘 시대에는 경조사, 알림, 안부인사, 홍보 등 여러 가지 상황에서 단체에게 내용을 전달해야 하는 경우가 많습니다."> |
| 12 | 12 |
<meta property="og:type" content="website"> |
| 13 |
- <meta property="og:title" content="단체문자 발송하는 방법 총정리 - 문자온"> |
|
| 13 |
+ <meta property="og:title" content="단체문자 - 문자온"> |
|
| 14 | 14 |
<meta property="og:description" content="요즘 시대에는 경조사, 알림, 안부인사, 홍보 등 여러 가지 상황에서 단체에게 내용을 전달해야 하는 경우가 많습니다."> |
| 15 | 15 |
<link rel="apple-touch-icon" sizes="57x57" href="/publish/images/favicon/apple-icon-57x57.png"> |
| 16 | 16 |
<link rel="apple-touch-icon" sizes="60x60" href="/publish/images/favicon/apple-icon-60x60.png"> |
+++ src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_10.html
... | ... | @@ -0,0 +1,491 @@ |
| 1 | +<!DOCTYPE html> | |
| 2 | +<html lang="ko"> | |
| 3 | + | |
| 4 | +<head> | |
| 5 | + <meta charset="UTF-8"> | |
| 6 | + <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| 7 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| 8 | + <title>홍보문자 예시 모음 - 문자온</title> | |
| 9 | + | |
| 10 | + <meta name="Keywords" content="문자전송, 문자발송, SMS, LMS, MMS, 문자보내기, 단체문자, 단체문자전송, 단체문자발송,단체문자사이트,문자사이트, 대량문자"> | |
| 11 | + <meta name="description" content="홍보는 널리 알린다는 의미로 일반적으로 기업, 단체 등 조직체가 커뮤니케이션 활동을 통하여 계획이나 업적 등의 정보를 전달하고 공유하는 활동을 뜻합니다. 이러한 활동은 기업의 홍보 담당자뿐만 아니라 카페, 미용실, 뷰티숍, 쇼핑몰, 부동산, 골프연습장, 학원, 학교, 세무사사무소 등에서도 유용하게 활용될 수 있는데요. 뿐만 아니라 모임이나 행사 개최 홍보도 가능합니다. 그렇다면 각각의 홍보 목적에 맞는 문자 내용을 작성하려면 어떻게 해야할까요? 고민하고 계시는 여러분들을 위해 문자온이 다양한 예시를 보여드리도록 하겠습니다."> | |
| 12 | + <meta property="og:type" content="website"> | |
| 13 | + <meta property="og:title" content="홍보문자 예시 모음 - 문자온"> | |
| 14 | + <meta property="og:description" content="홍보는 널리 알린다는 의미로 일반적으로 기업, 단체 등 조직체가 커뮤니케이션 활동을 통하여 계획이나 업적 등의 정보를 전달하고 공유하는 활동을 뜻합니다. 이러한 활동은 기업의 홍보 담당자뿐만 아니라 카페, 미용실, 뷰티숍, 쇼핑몰, 부동산, 골프연습장, 학원, 학교, 세무사사무소 등에서도 유용하게 활용될 수 있는데요. 뿐만 아니라 모임이나 행사 개최 홍보도 가능합니다. 그렇다면 각각의 홍보 목적에 맞는 문자 내용을 작성하려면 어떻게 해야할까요? 고민하고 계시는 여러분들을 위해 문자온이 다양한 예시를 보여드리도록 하겠습니다."> | |
| 15 | + <link rel="apple-touch-icon" sizes="57x57" href="/publish/images/favicon/apple-icon-57x57.png"> | |
| 16 | + <link rel="apple-touch-icon" sizes="60x60" href="/publish/images/favicon/apple-icon-60x60.png"> | |
| 17 | + <link rel="apple-touch-icon" sizes="72x72" href="/publish/images/favicon/apple-icon-72x72.png"> | |
| 18 | + <link rel="apple-touch-icon" sizes="76x76" href="/publish/images/favicon/apple-icon-76x76.png"> | |
| 19 | + <link rel="apple-touch-icon" sizes="114x114" href="/publish/images/favicon/apple-icon-114x114.png"> | |
| 20 | + <link rel="apple-touch-icon" sizes="120x120" href="/publish/images/favicon/apple-icon-120x120.png"> | |
| 21 | + <link rel="apple-touch-icon" sizes="144x144" href="/publish/images/favicon/apple-icon-144x144.png"> | |
| 22 | + <link rel="apple-touch-icon" sizes="152x152" href="/publish/images/favicon/apple-icon-152x152.png"> | |
| 23 | + <link rel="apple-touch-icon" sizes="180x180" href="/publish/images/favicon/apple-icon-180x180.png"> | |
| 24 | + <link rel="icon" type="image/png" sizes="192x192" href="/publish/images/favicon/android-icon-192x192.png"> | |
| 25 | + <link rel="icon" type="image/png" sizes="32x32" href="/publish/images/favicon/favicon-32x32.png"> | |
| 26 | + <link rel="icon" type="image/png" sizes="96x96" href="/publish/images/favicon/favicon-96x96.png"> | |
| 27 | + <link rel="icon" type="image/png" sizes="16x16" href="/publish/images/favicon/favicon-16x16.png"> | |
| 28 | + <link rel="manifest" href="/publish/images/favicon/manifest.json"> | |
| 29 | + | |
| 30 | + <link rel="stylesheet" href="/publish/publish_adv/css/reset.css"> | |
| 31 | + <link rel="stylesheet" href="/publish/publish_adv/css/style.css"> | |
| 32 | + <link rel="stylesheet" href="/publish/css/font.css"> | |
| 33 | + | |
| 34 | + <script src="/publish/js/jquery-3.5.0.js"></script> | |
| 35 | + <script> | |
| 36 | + function topBtn() {
| |
| 37 | + $("html").scrollTop("0");
| |
| 38 | + } | |
| 39 | + </script> | |
| 40 | +</head> | |
| 41 | + | |
| 42 | +<body> | |
| 43 | + <div class="template_v1_content content_ten"> | |
| 44 | + <button type="button" class="top_btn" onclick="topBtn()" style="z-index: 2;">▲<br>TOP</button> | |
| 45 | + <header> | |
| 46 | + <div class="inner"> | |
| 47 | + <a href="https://www.munjaon.co.kr"> | |
| 48 | + <h1><img src="/publish/publish_adv/img/template_v1_header_logo.png" alt=""></h1> | |
| 49 | + </a> | |
| 50 | + </div> | |
| 51 | + </header> | |
| 52 | + <div class="visual"> | |
| 53 | + <div class="inner"> | |
| 54 | + <p class="keyword">keyword</p> | |
| 55 | + <h2>홍보문자 예시 모음</h2> | |
| 56 | + <p class="sub_text obituary_te">홍보는 널리 알린다는 의미로 일반적으로 기업, 단체 등 조직체가 커뮤니케이션 활동을 통하여 계획이나 업적 등의 정보를 전달하고 공유하는 활동을 뜻합니다. 이러한 활동은 기업의 홍보 담당자뿐만 아니라 카페, 미용실, 뷰티숍, 쇼핑몰, 부동산, 골프연습장, 학원, 학교, 세무사사무소 등에서도 유용하게 활용될 수 있는데요. 뿐만 아니라 모임이나 행사 개최 홍보도 가능합니다. 그렇다면 각각의 홍보 목적에 맞는 문자 내용을 작성하려면 어떻게 해야할까요? 고민하고 계시는 여러분들을 위해 문자온이 다양한 예시를 보여드리도록 하겠습니다.</p> | |
| 57 | + </div> | |
| 58 | + </div> | |
| 59 | + <div class="index"> | |
| 60 | + <div class="inner"> | |
| 61 | + <p>목 차</p> | |
| 62 | + <nav> | |
| 63 | + <ul style="text-align: center;display: inline-block; width: auto;"> | |
| 64 | + <li><a href="#section01">모임·행사 홍보문자 예시</a></li> | |
| 65 | + <li><a href="#section02">개업 홍보문자 예시</a></li> | |
| 66 | + <li><a href="#section03">기타 홍보문자 예시</a></li> | |
| 67 | + </ul> | |
| 68 | + </nav> | |
| 69 | + </div> | |
| 70 | + </div> | |
| 71 | + <section class="section section01" id="section01"> | |
| 72 | + <div class="inner obituary_inner"> | |
| 73 | + <h3>모임·행사 홍보문자 예시</h3> | |
| 74 | + <div class="short"> | |
| 75 | + <p class="text bold" style="margin: 0 0 8px 0;">[단문]</p> | |
| 76 | + <ul class="obituary"> | |
| 77 | + <li> | |
| 78 | + <div class="wrap"> | |
| 79 | + <div class="title"> | |
| 80 | + <p class="text">모임·행사 홍보문자</p> | |
| 81 | + </div> | |
| 82 | + <div class="inner_text"> | |
| 83 | + ○월 ○일 ○○시 연합회 월례회<br> 장소: ○○○식당 전체 모임으로 많은 참석 바랍니다. <br> -총무- | |
| 84 | + <p class="date">PM 3:45</p> | |
| 85 | + </div> | |
| 86 | + </div> | |
| 87 | + | |
| 88 | + <div class="people_01"></div> | |
| 89 | + <div class="speech_bubble"></div> | |
| 90 | + </li> | |
| 91 | + <li class="move_line"> | |
| 92 | + <div class="wrap"> | |
| 93 | + <div class="title"> | |
| 94 | + <p class="text">모임·행사 홍보문자</p> | |
| 95 | + </div> | |
| 96 | + <div class="inner_text"> | |
| 97 | + ○○동기회 임원모임결과, 동기모임 일자확정 X월XX일(장소추후통보) <br> -총무- | |
| 98 | + <p class="date">PM 5:30</p> | |
| 99 | + </div> | |
| 100 | + </div> | |
| 101 | + <div class="people_02"></div> | |
| 102 | + <div class="speech_bubble"></div> | |
| 103 | + </li> | |
| 104 | + <li class="move_line"> | |
| 105 | + <div class="wrap"> | |
| 106 | + <div class="title"> | |
| 107 | + <p class="text">모임·행사 홍보문자</p> | |
| 108 | + </div> | |
| 109 | + <div class="inner_text"> | |
| 110 | + [XX초교 71회 동창회 알림] 일시:0월20일<br>장소:역삼동 행운식당 <br> -동창회장- | |
| 111 | + <p class="date">PM 8:55</p> | |
| 112 | + </div> | |
| 113 | + </div> | |
| 114 | + <div class="people_03"></div> | |
| 115 | + <div class="speech_bubble"></div> | |
| 116 | + </li> | |
| 117 | + <li class="second_line move_line"> | |
| 118 | + <div class="wrap"> | |
| 119 | + <div class="title"> | |
| 120 | + <p class="text">모임·행사 홍보문자</p> | |
| 121 | + </div> | |
| 122 | + <div class="inner_text"> | |
| 123 | + 오늘은 전체 송년회가 있는 날입니다!<br>일 마무리 잘하시고 이따 ○시에 뵙도록 하겠습니다! | |
| 124 | + <p class="date">PM 2:15</p> | |
| 125 | + </div> | |
| 126 | + </div> | |
| 127 | + <div class="people_02"></div> | |
| 128 | + <div class="speech_bubble"></div> | |
| 129 | + </li> | |
| 130 | + <li class="second_line move_line"> | |
| 131 | + <div class="wrap"> | |
| 132 | + <div class="title"> | |
| 133 | + <p class="text">모임·행사 홍보문자</p> | |
| 134 | + </div> | |
| 135 | + <div class="inner_text"> | |
| 136 | + 동문산악회 X월산 공지 - XX산(XX위치) 인원파악 후 연락 요망 <br> - XX산악회 총무 | |
| 137 | + <p class="date">PM 2:15</p> | |
| 138 | + </div> | |
| 139 | + </div> | |
| 140 | + <div class="people_03"></div> | |
| 141 | + <div class="speech_bubble"></div> | |
| 142 | + </li> | |
| 143 | + </ul> | |
| 144 | + </div> | |
| 145 | + | |
| 146 | + <div class="line"></div> | |
| 147 | + | |
| 148 | + <div class="long"> | |
| 149 | + <p class="text bold" style="margin: 0 0 8px 0;">[장문]</p> | |
| 150 | + <ul class="obituary"> | |
| 151 | + <li> | |
| 152 | + <div class="wrap"> | |
| 153 | + <div class="title"> | |
| 154 | + <p class="text">모임·행사 홍보문자</p> | |
| 155 | + </div> | |
| 156 | + <div class="inner_text"> | |
| 157 | + [동창회 정기모임]<br> | |
| 158 | + 우정이란 친구를 딛고 내가 높아지는 것이 아니라 친구가 나 자신을 딛게 하여 친구를 높이는 것이다. 그것은 둘이 함께 높아지는 일이기도 하다. | |
| 159 | + 어려웠던 한해가 지나가고 어느덧 희망찬 봄이 찾아왔습니다. 우리도 모여서 옛이야기 하며 우정을 나눕시다.<br> | |
| 160 | + 언제:<br> | |
| 161 | + 어디서:<br> | |
| 162 | + 회시:<br> | |
| 163 | + 회장 ○○○ 010-1234-5678<br> | |
| 164 | + 총무 ○○○ 010-1234-5678 | |
| 165 | + <p class="date">PM 1:10</p> | |
| 166 | + </div> | |
| 167 | + </div> | |
| 168 | + | |
| 169 | + <div class="people_01"></div> | |
| 170 | + <div class="speech_bubble"></div> | |
| 171 | + </li> | |
| 172 | + <li class="move_line"> | |
| 173 | + <div class="wrap"> | |
| 174 | + <div class="title"> | |
| 175 | + <p class="text">모임·행사 홍보문자</p> | |
| 176 | + </div> | |
| 177 | + <div class="inner_text"> | |
| 178 | + ○○산악회 등산안내<br> | |
| 179 | + 출발일시 : □년 □월 □일(아침 □시 □분)<br> | |
| 180 | + 출발장소 : ***************** 앞 ★★관광버스<br> | |
| 181 | + 산행지 :<br> | |
| 182 | + 회 비 : ○○○○○ 원<br> | |
| 183 | + 등산코스 :<br> | |
| 184 | + 산행시간 : 약 ○시간<br> | |
| 185 | + 준비물 :<br> | |
| 186 | + 회측제공 :<br> | |
| 187 | + 특 징 :<br> | |
| 188 | + <p class="date">AM 8:45</p> | |
| 189 | + </div> | |
| 190 | + </div> | |
| 191 | + <div class="people_02"></div> | |
| 192 | + <div class="speech_bubble"></div> | |
| 193 | + </li> | |
| 194 | + <li class="move_line"> | |
| 195 | + <div class="wrap"> | |
| 196 | + <div class="title"> | |
| 197 | + <p class="text">모임·행사 홍보문자</p> | |
| 198 | + </div> | |
| 199 | + <div class="inner_text"> | |
| 200 | + 안녕하세요.<br> | |
| 201 | + 20OO 문자온의 날 운영사무국입니다.<br> | |
| 202 | + 오는 OO월OO일(O) OO:OO, 서울 ●●호텔에서 20OO 문자온의 날 행사를 개최하오니 부디 참석하시어 자리를 빛내주시길 부탁드립니다.<br><br> | |
| 203 | + 감사합니다.<br> | |
| 204 | + <p class="date">PM 5:35</p> | |
| 205 | + </div> | |
| 206 | + </div> | |
| 207 | + <div class="people_01"></div> | |
| 208 | + <div class="speech_bubble"></div> | |
| 209 | + </li> | |
| 210 | + <li class="second_line move_line"> | |
| 211 | + <div class="wrap"> | |
| 212 | + <div class="title"> | |
| 213 | + <p class="text">모임·행사 홍보문자</p> | |
| 214 | + </div> | |
| 215 | + <div class="inner_text"> | |
| 216 | + 화창한 봄을 맞이하여 ○○동문회에서 춘계체육대회를 개최합니다.<br><br> | |
| 217 | + 가족의 달을 맞이하여 가족들과 함께 참석하시어, 좋은 추억 남기시길 바랍니다.<br><br> | |
| 218 | + 일시 :<br> | |
| 219 | + 장소 :<br> | |
| 220 | + 문의 :<br> | |
| 221 | + <p class="date">AM 9:43</p> | |
| 222 | + </div> | |
| 223 | + </div> | |
| 224 | + <div class="people_02"></div> | |
| 225 | + <div class="speech_bubble"></div> | |
| 226 | + </li> | |
| 227 | + <li class="second_line move_line"> | |
| 228 | + <div class="wrap"> | |
| 229 | + <div class="title"> | |
| 230 | + <p class="text">모임·행사 홍보문자</p> | |
| 231 | + </div> | |
| 232 | + <div class="inner_text"> | |
| 233 | + OO상인회 월 정기 회의를 아래와 같이 개최합니다.<br><br> | |
| 234 | + - 일시: ◆월 ◆◆일(◆요일) 오후 5시<br> | |
| 235 | + - 장소: 상인회 사무실<br><br> | |
| 236 | + 회원 여러분의 적극적인 참여와 협조를 부탁드립니다.<br> | |
| 237 | + <p class="date">PM 5:15</p> | |
| 238 | + </div> | |
| 239 | + </div> | |
| 240 | + <div class="people_03"></div> | |
| 241 | + <div class="speech_bubble"></div> | |
| 242 | + </li> | |
| 243 | + </ul> | |
| 244 | + </div> | |
| 245 | + | |
| 246 | + <div class="line"></div> | |
| 247 | + | |
| 248 | + <div class="drawing"> | |
| 249 | + <p class="text bold" style="margin: 0 0 8px 0;">[그림문자]</p> | |
| 250 | + <img src="./img/template_v1_manuscript_10_section01_img01.png" alt=""> | |
| 251 | + </div> | |
| 252 | + </div> | |
| 253 | + </section> | |
| 254 | + | |
| 255 | + <section class="section section02" id="section02"> | |
| 256 | + <div class="inner obituary_inner"> | |
| 257 | + <h3>개업 홍보문자 예시</h3> | |
| 258 | + | |
| 259 | + <div class="long"> | |
| 260 | + <p class="text bold" style="margin: 0 0 8px 0;">[장문]</p> | |
| 261 | + <ul class="obituary"> | |
| 262 | + <li> | |
| 263 | + <div class="wrap"> | |
| 264 | + <div class="title"> | |
| 265 | + <p class="text">개업 홍보문자</p> | |
| 266 | + </div> | |
| 267 | + <div class="inner_text"> | |
| 268 | + 안녕하세요. ○○○입니다.<br> | |
| 269 | + ○일 ○○을 개업해 인사 올립니다.<br> | |
| 270 | + 많은 응원과 격려 부탁드립니다.<br> | |
| 271 | + 시간 나실 때 방문해주시면 큰 힘이 될 것 같습니다.<br><br> | |
| 272 | + 감사합니다. | |
| 273 | + <p class="date">PM 1:10</p> | |
| 274 | + </div> | |
| 275 | + </div> | |
| 276 | + | |
| 277 | + <div class="people_03"></div> | |
| 278 | + <div class="speech_bubble"></div> | |
| 279 | + </li> | |
| 280 | + <li class="move_line"> | |
| 281 | + <div class="wrap"> | |
| 282 | + <div class="title"> | |
| 283 | + <p class="text">개업 홍보문자</p> | |
| 284 | + </div> | |
| 285 | + <div class="inner_text"> | |
| 286 | + ★개업인사 드립니다.★<br> | |
| 287 | + 귀댁에 평안과 행복이 함께 하시길 기원합니다.<br> | |
| 288 | + 다름이 아니오라 "○○○○"을 개업하여 운영하게 되었습니다.<br> | |
| 289 | + 많이 찾아주셔서 많은 격려와 앞날의 복을 기원해주시면 많은 도움이 될것입니다.<br> | |
| 290 | + 상호 :<br> | |
| 291 | + 주소 :<br> | |
| 292 | + 전화 :<br> | |
| 293 | + 주차 :<br> | |
| 294 | + - ○○○ 올림- | |
| 295 | + <p class="date">AM 8:45</p> | |
| 296 | + </div> | |
| 297 | + </div> | |
| 298 | + <div class="people_02"></div> | |
| 299 | + <div class="speech_bubble"></div> | |
| 300 | + </li> | |
| 301 | + <li class="move_line"> | |
| 302 | + <div class="wrap"> | |
| 303 | + <div class="title"> | |
| 304 | + <p class="text">개업 홍보문자</p> | |
| 305 | + </div> | |
| 306 | + <div class="inner_text"> | |
| 307 | + 개업인사<br> | |
| 308 | + 제가 이번에 회사를 개업하게되어 문자 드립니다.<br> | |
| 309 | + 참석하시어 격려의 말씀 부탁드립니다.<br><br> | |
| 310 | + 일시 :<br> | |
| 311 | + 장소 :<br> | |
| 312 | + 상호 :<br><br> | |
| 313 | + ○○○ 드림 | |
| 314 | + <p class="date">PM 5:55</p> | |
| 315 | + </div> | |
| 316 | + </div> | |
| 317 | + <div class="people_01"></div> | |
| 318 | + <div class="speech_bubble"></div> | |
| 319 | + </li> | |
| 320 | + <li class="second_line move_line"> | |
| 321 | + <div class="wrap"> | |
| 322 | + <div class="title"> | |
| 323 | + <p class="text">개업 홍보문자</p> | |
| 324 | + </div> | |
| 325 | + <div class="inner_text"> | |
| 326 | + 안녕하세요.<br> | |
| 327 | + ○○○○○○ 개업 인사드립니다.<br> | |
| 328 | + 현 사업자분께서 ○월 ○일까지 영업하며,<br> | |
| 329 | + ○○일 개업식을 할 예정이오니<br> | |
| 330 | + 많은 관심과 응원 부탁드립니다. 감사합니다.<br><br> | |
| 331 | + ○○○ 올림 | |
| 332 | + <p class="date">AM 9:43</p> | |
| 333 | + </div> | |
| 334 | + </div> | |
| 335 | + <div class="people_01"></div> | |
| 336 | + <div class="speech_bubble"></div> | |
| 337 | + </li> | |
| 338 | + <li class="second_line move_line"> | |
| 339 | + <div class="wrap"> | |
| 340 | + <div class="title"> | |
| 341 | + <p class="text">개업 홍보문자</p> | |
| 342 | + </div> | |
| 343 | + <div class="inner_text"> | |
| 344 | + **오픈안내문자**<br> | |
| 345 | + ○○시 ○○동에 ○○○○을 오픈하게 되어 인사드립니다.<br> | |
| 346 | + 많은 관심과 성원 부탁드립니다.<br><br> | |
| 347 | + 개업일 :<br> | |
| 348 | + 주소 :<br> | |
| 349 | + 전화 :<br><br> | |
| 350 | + 축하 화환, 화분 등은 정중히 사양합니다.<br><br> | |
| 351 | + ○○○ 배상<br> | |
| 352 | + <p class="date">PM 5:15</p> | |
| 353 | + </div> | |
| 354 | + </div> | |
| 355 | + <div class="people_03"></div> | |
| 356 | + <div class="speech_bubble"></div> | |
| 357 | + </li> | |
| 358 | + </ul> | |
| 359 | + </div> | |
| 360 | + | |
| 361 | + <div class="line"></div> | |
| 362 | + | |
| 363 | + <div class="drawing"> | |
| 364 | + <p class="text bold" style="margin: 0 0 8px 0;">[그림문자]</p> | |
| 365 | + <img src="./img/template_v1_manuscript_10_section02_img01.png" alt=""> | |
| 366 | + </div> | |
| 367 | + </div> | |
| 368 | + </section> | |
| 369 | + <section class="section section03" id="section03"> | |
| 370 | + <div class="inner obituary_inner"> | |
| 371 | + <h3>기타 홍보문자 예시</h3> | |
| 372 | + | |
| 373 | + <div class="long"> | |
| 374 | + <p class="text bold" style="margin: 0 0 8px 0;">[장문]</p> | |
| 375 | + <ul class="obituary"> | |
| 376 | + <li> | |
| 377 | + <div class="wrap"> | |
| 378 | + <div class="title"> | |
| 379 | + <p class="text">기타 홍보문자</p> | |
| 380 | + </div> | |
| 381 | + <div class="inner_text"> | |
| 382 | + 안녕하세요. ○○○입니다.<br> | |
| 383 | + 이번 ○월 ○일 ○요일, ○○○에서 개최되는 이벤트가 있습니다.<br> | |
| 384 | + 참여만 하셔도 다양한 상품을 드리며 누구나 참여하실 수 있으니 많은 관심 부탁드립니다!<br><br> | |
| 385 | + □ 장소 :<br> | |
| 386 | + □ 일정 : <br> | |
| 387 | + □ 상세 안내 URL : | |
| 388 | + <p class="date">PM 1:10</p> | |
| 389 | + </div> | |
| 390 | + </div> | |
| 391 | + | |
| 392 | + <div class="people_03"></div> | |
| 393 | + <div class="speech_bubble"></div> | |
| 394 | + </li> | |
| 395 | + <li class="move_line"> | |
| 396 | + <div class="wrap"> | |
| 397 | + <div class="title"> | |
| 398 | + <p class="text">기타 홍보문자</p> | |
| 399 | + </div> | |
| 400 | + <div class="inner_text"> | |
| 401 | + 안녕하세요, 날씨가 많이 추워졌습니다.<br> | |
| 402 | + 항상 몸 관리 잘 하시고 건승하시길 빕니다.<br><br> | |
| 403 | + 이번에 SNS 계정을 새로 개설하여 홍보 겸 안부차 연락 드립니다.<br> | |
| 404 | + SNS :<br><br> | |
| 405 | + 많은 이용 및 문의 부탁드립니다.<br> | |
| 406 | + 감사합니다. | |
| 407 | + <p class="date">AM 8:45</p> | |
| 408 | + </div> | |
| 409 | + </div> | |
| 410 | + <div class="people_02"></div> | |
| 411 | + <div class="speech_bubble"></div> | |
| 412 | + </li> | |
| 413 | + <li class="move_line"> | |
| 414 | + <div class="wrap"> | |
| 415 | + <div class="title"> | |
| 416 | + <p class="text">기타 홍보문자</p> | |
| 417 | + </div> | |
| 418 | + <div class="inner_text"> | |
| 419 | + 안녕하세요. ○○○입니다.<br> | |
| 420 | + 이전에 안내드린 ○○○○ 프로그램을 ○월 ○일부터 ○회 진행합니다.<br> | |
| 421 | + 매주 ○요일 00:00~00:00(○시간), ○월 ○○일까지 진행예정입니다.<br> | |
| 422 | + 많이 참석하실 수 있도록 홍보 부탁드립니다.<br><br> | |
| 423 | + 감사합니다.<br> | |
| 424 | + <p class="date">PM 5:55</p> | |
| 425 | + </div> | |
| 426 | + </div> | |
| 427 | + <div class="people_01"></div> | |
| 428 | + <div class="speech_bubble"></div> | |
| 429 | + </li> | |
| 430 | + <li class="second_line move_line"> | |
| 431 | + <div class="wrap"> | |
| 432 | + <div class="title"> | |
| 433 | + <p class="text">기타 홍보문자</p> | |
| 434 | + </div> | |
| 435 | + <div class="inner_text"> | |
| 436 | + 안녕하세요, 기자님.<br> | |
| 437 | + ○○○○○ 홍보 담당자 ○○○입니다.<br> | |
| 438 | + ○○○○○는 지난 □□일, 신기술을 홍보할 수 있는 세계 박람회에 참여했다고 □□일 밝혔습니다.<br> | |
| 439 | + 관련하여 참고하실 수 있도록 메일로 보도자료를 전달드렸으니 긍정적인 검토 부탁드립니다.<br> | |
| 440 | + 좋은 하루 보내시기 바랍니다.<br><br> | |
| 441 | + 감사합니다.<br> | |
| 442 | + □□□ 드림 | |
| 443 | + <p class="date">AM 9:43</p> | |
| 444 | + </div> | |
| 445 | + </div> | |
| 446 | + <div class="people_01"></div> | |
| 447 | + <div class="speech_bubble"></div> | |
| 448 | + </li> | |
| 449 | + <li class="second_line move_line"> | |
| 450 | + <div class="wrap"> | |
| 451 | + <div class="title"> | |
| 452 | + <p class="text">기타 홍보문자</p> | |
| 453 | + </div> | |
| 454 | + <div class="inner_text"> | |
| 455 | + 안녕하세요. ○○대 대학일자리플러스센터입니다.<br> | |
| 456 | + □□년 □□시 상반기 일자리박람회 개최 예정으로 안내드립니다.<br><br> | |
| 457 | + ■ 행사개요<br> | |
| 458 | + ○ 일 시 :<br> | |
| 459 | + ○ 장 소 :<br> | |
| 460 | + ○ 행사규모 :<br> | |
| 461 | + ○ 준 비 물 :<br> | |
| 462 | + ■ 행사내용<br> | |
| 463 | + 많은 참여 부탁드립니다. 감사합니다. | |
| 464 | + <p class="date">PM 5:15</p> | |
| 465 | + </div> | |
| 466 | + </div> | |
| 467 | + <div class="people_03"></div> | |
| 468 | + <div class="speech_bubble"></div> | |
| 469 | + </li> | |
| 470 | + </ul> | |
| 471 | + </div> | |
| 472 | + | |
| 473 | + <div class="line"></div> | |
| 474 | + | |
| 475 | + <div class="drawing"> | |
| 476 | + <p class="text bold" style="margin: 0 0 8px 0;">[그림문자]</p> | |
| 477 | + <img src="./img/template_v1_manuscript_10_section03_img01.png" alt=""> | |
| 478 | + </div> | |
| 479 | + </div> | |
| 480 | + </section> | |
| 481 | + | |
| 482 | + <div class="btn_wrap"> | |
| 483 | + <div class="inner"> | |
| 484 | + <a href="https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do">홍보문자 보내기</a> | |
| 485 | + </div> | |
| 486 | + </div> | |
| 487 | + </div> | |
| 488 | + | |
| 489 | +</body> | |
| 490 | + | |
| 491 | +</html>(No newline at end of file) |
+++ src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_11.html
... | ... | @@ -0,0 +1,147 @@ |
| 1 | +<!DOCTYPE html> | |
| 2 | +<html lang="ko"> | |
| 3 | + | |
| 4 | +<head> | |
| 5 | + <meta charset="UTF-8"> | |
| 6 | + <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| 7 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| 8 | + <title>단체문자사이트에서 문자 보내기 - 문자온</title> | |
| 9 | + | |
| 10 | + <meta name="Keywords" content="문자전송, 문자발송, SMS, LMS, MMS, 문자보내기, 단체문자, 단체문자전송, 단체문자발송,단체문자사이트,문자사이트, 대량문자"> | |
| 11 | + <meta name="description" content="컴퓨터 인터넷을 통해 대량으로 단체에게 문자를 보내기 편하게 서비스를 제공하는 사이트를 말합니다."> | |
| 12 | + <meta property="og:type" content="website"> | |
| 13 | + <meta property="og:title" content="단체문자사이트에서 문자 보내기 - 문자온"> | |
| 14 | + <meta property="og:description" content="컴퓨터 인터넷을 통해 대량으로 단체에게 문자를 보내기 편하게 서비스를 제공하는 사이트를 말합니다."> | |
| 15 | + <link rel="apple-touch-icon" sizes="57x57" href="/publish/images/favicon/apple-icon-57x57.png"> | |
| 16 | + <link rel="apple-touch-icon" sizes="60x60" href="/publish/images/favicon/apple-icon-60x60.png"> | |
| 17 | + <link rel="apple-touch-icon" sizes="72x72" href="/publish/images/favicon/apple-icon-72x72.png"> | |
| 18 | + <link rel="apple-touch-icon" sizes="76x76" href="/publish/images/favicon/apple-icon-76x76.png"> | |
| 19 | + <link rel="apple-touch-icon" sizes="114x114" href="/publish/images/favicon/apple-icon-114x114.png"> | |
| 20 | + <link rel="apple-touch-icon" sizes="120x120" href="/publish/images/favicon/apple-icon-120x120.png"> | |
| 21 | + <link rel="apple-touch-icon" sizes="144x144" href="/publish/images/favicon/apple-icon-144x144.png"> | |
| 22 | + <link rel="apple-touch-icon" sizes="152x152" href="/publish/images/favicon/apple-icon-152x152.png"> | |
| 23 | + <link rel="apple-touch-icon" sizes="180x180" href="/publish/images/favicon/apple-icon-180x180.png"> | |
| 24 | + <link rel="icon" type="image/png" sizes="192x192" href="/publish/images/favicon/android-icon-192x192.png"> | |
| 25 | + <link rel="icon" type="image/png" sizes="32x32" href="/publish/images/favicon/favicon-32x32.png"> | |
| 26 | + <link rel="icon" type="image/png" sizes="96x96" href="/publish/images/favicon/favicon-96x96.png"> | |
| 27 | + <link rel="icon" type="image/png" sizes="16x16" href="/publish/images/favicon/favicon-16x16.png"> | |
| 28 | + <link rel="manifest" href="/publish/images/favicon/manifest.json"> | |
| 29 | + | |
| 30 | + <link rel="stylesheet" href="/publish/publish_adv/css/reset.css"> | |
| 31 | + <link rel="stylesheet" href="/publish/publish_adv/css/style.css"> | |
| 32 | + <link rel="stylesheet" href="/publish/css/font.css"> | |
| 33 | + | |
| 34 | + <script src="/publish/js/jquery-3.5.0.js"></script> | |
| 35 | + <script> | |
| 36 | + function topBtn() {
| |
| 37 | + $("html").scrollTop("0");
| |
| 38 | + } | |
| 39 | + </script> | |
| 40 | +</head> | |
| 41 | + | |
| 42 | +<body> | |
| 43 | + <div class="template_v1_content content_eleven"> | |
| 44 | + <button type="button" class="top_btn" onclick="topBtn()">▲<br>TOP</button> | |
| 45 | + <header> | |
| 46 | + <div class="inner"> | |
| 47 | + <a href="https://www.munjaon.co.kr"> | |
| 48 | + <h1><img src="/publish/publish_adv/img/template_v1_header_logo.png" alt=""></h1> | |
| 49 | + </a> | |
| 50 | + </div> | |
| 51 | + </header> | |
| 52 | + <div class="visual"> | |
| 53 | + <div class="inner"> | |
| 54 | + <p class="keyword">keyword</p> | |
| 55 | + <h2>단체문자사이트에서 문자 보내기</h2> | |
| 56 | + </div> | |
| 57 | + </div> | |
| 58 | + <div class="index"> | |
| 59 | + <div class="inner"> | |
| 60 | + <p>목 차</p> | |
| 61 | + <nav> | |
| 62 | + <ul> | |
| 63 | + <li><a href="#section01">단체문자사이트</a></li> | |
| 64 | + <li><a href="#section02">단체문자 보내기 방법</a></li> | |
| 65 | + </ul> | |
| 66 | + </nav> | |
| 67 | + </div> | |
| 68 | + </div> | |
| 69 | + <section class="section section01" id="section01"> | |
| 70 | + <div class="inner"> | |
| 71 | + <h3>단체문자사이트</h3> | |
| 72 | + <p class="text"> | |
| 73 | + 컴퓨터 인터넷을 통해 대량으로 단체에게 문자를 보내기 편하게 서비스를 제공하는 사이트를 말합니다. | |
| 74 | + </p> | |
| 75 | + <img src="/publish/publish_adv/img/template_v1_manuscript_11_section01_img01.png" alt=""> | |
| 76 | + </div> | |
| 77 | + </section> | |
| 78 | + | |
| 79 | + <section class="section section02 con_add" id="section02"> | |
| 80 | + <div class="inner"> | |
| 81 | + <h3>단체문자 보내기 방법</h3> | |
| 82 | + <div> | |
| 83 | + <p class="text">1. 문자사이트에서 단체문자를 보내기 위해서는 먼저 본인에게 맞는 문자사이트를 찾으셔야 합니다.</p> | |
| 84 | + <p class="small_text">- 일단 “문자온”으로 검색해볼게요. 아래 로고를 클릭하셔도 됩니다.</p> | |
| 85 | + <img src="/publish/publish_adv/img/template_v1_manuscript_11_section02_img01.png" alt=""> | |
| 86 | + <a href="https://www.munjaon.co.kr"> | |
| 87 | + <img src="/publish/publish_adv/img/template_v1_manuscript_11_section02_logo.png" alt="" style="width: auto; margin-top: -25px; display: inline;"> | |
| 88 | + </a> | |
| 89 | + </div> | |
| 90 | + <div> | |
| 91 | + <p class="text">2. 회원가입을 진행해주세요. 개인회원 및 기업회원 가입이 가능하며 기업회원의 경우 사업자등록증과 재직증명서(사업자등록증 상의 대표자가 아닌 경우)가 필요합니다.</p> | |
| 92 | + <img src="/publish/publish_adv/img/template_v1_manuscript_11_section02_img02.png" alt=""> | |
| 93 | + </div> | |
| 94 | + <div> | |
| 95 | + <p class="text">3. 로그인을 진행해주세요.</p> | |
| 96 | + <img src="/publish/publish_adv/img/template_v1_manuscript_11_section02_img03.png" alt=""> | |
| 97 | + </div> | |
| 98 | + <div> | |
| 99 | + <p class="text">4. [마이페이지] > [발신번호 관리] 메뉴로 이동하시어 문자발송에 사용할 발신번호를 등록해주세요.</p> | |
| 100 | + <img src="/publish/publish_adv/img/template_v1_manuscript_11_section02_img04.png" alt="" style="margin-bottom: 25px;"> | |
| 101 | + <p class="small_text">- 발신번호의 명의를 증빙하는 방법은 휴대폰 번호의 경우 휴대폰인증 또는 통신서비스이용증명원 제출로 확인되며, 일반번호의 경우 통신서비스이용증명원으로 확인됩니다. 통신서비스이용증명원은 등록하실 발신번호를 제공하는 통신사에 발급을 요청하세요~</p> | |
| 102 | + <p class="small_text">- 명의가 본인(개인회원) 또는 본인이 대표로 있는 회사(기업회원)가 아닐 경우 필수제출 서류가 상이하며 아래 이미지를 참고하시어 제출하시면 됩니다.</p> | |
| 103 | + <img src="/publish/publish_adv/img/template_v1_manuscript_11_section02_img05.png" alt="" style="margin-top: 25px; margin-bottom: 25px;"> | |
| 104 | + <img src="/publish/publish_adv/img/template_v1_manuscript_11_section02_img06.png" alt=""> | |
| 105 | + <p class="small_text" style="margin: -35px 0 60px 0;">- 본인 명의에 경우 휴대폰인증을 통해 간편하게 등록 가능하시며, 그 외 서류제출이 필요한 경우 5분 이내로 발신번호 심사가 완료되므로 편하게 사용 가능합니다.</p> | |
| 106 | + </div> | |
| 107 | + <div> | |
| 108 | + <p class="text">5. 사용하실 만큼의 요금을 충전해주세요. 문자온은 다양한 결제방식을 제공하므로 편리하게 충전하실 수 있습니다.</p> | |
| 109 | + <p class="small_text">- 최소 5,000원 이상 충전 가능하며 결제 시 부가세 10%가 제외되어 충전됩니다.(문자 발송시에는 부가세가 차감되지 않습니다.)</p> | |
| 110 | + <p class="small_text">- [결제관리] 메뉴를 통해 세금계산서, 현금영수증 등 다양한 증빙서류를 요청하실 수 있습니다.</p> | |
| 111 | + <img src="/publish/publish_adv/img/template_v1_manuscript_11_section02_img07.png" alt=""> | |
| 112 | + </div> | |
| 113 | + <div> | |
| 114 | + <p class="text">6. [문자발송] 메뉴로 이동하시어 등록하신 발신번호를 선택하신 후 문자내용을 입력합니다.</p> | |
| 115 | + <p class="small_text">- 단문/장문/그림 문자를 발송할 수 있으며 문자종류는 입력내용에 따라 자동으로 선택됩니다.</p> | |
| 116 | + <p class="small_text">- 단문은 90byte(띄어쓰기 없는 한글 45자)까지이며 장문은 2,000byte(띄어쓰기 없는 한글 1,000자)까지입니다. 그림문자는 장문 + 이미지(3장까지)입니다.</p> | |
| 117 | + <img src="/publish/publish_adv/img/template_v1_manuscript_11_section02_img08.png" alt=""> | |
| 118 | + <p class="small_text">- 문자분류를 “광고”로 선택할 경우 080무료수신거부 번호를 별도의 절차 없이 무료로 문자내용에 자동으로 입력처리합니다.(수신자로부터 080수신거부 요청 발생 시 문자온에서 자동으로 수신거부 처리하므로 안심하고 사용 가능합니다.)</p> | |
| 119 | + <img src="/publish/publish_adv/img/template_v1_manuscript_11_section02_img09.png" alt=""> | |
| 120 | + </div> | |
| 121 | + <div> | |
| 122 | + <p class="text">7. 받는사람 입력 후 발송하기 클릭</p> | |
| 123 | + <p class="small_text">- 주소록, 엑셀, 최근 전송내역 등을 통해 받는사람을 선택할 수 있습니다.</p> | |
| 124 | + <p class="small_text">- 엑셀 파일 내용을 복사 붙여넣기 하여 입력할 수 있습니다.</p> | |
| 125 | + <img src="/publish/publish_adv/img/template_v1_manuscript_11_section02_img10.png" alt=""> | |
| 126 | + </div> | |
| 127 | + <div> | |
| 128 | + <p class="text">8. [발송결과] 메뉴로 이동하시면 문자의 발송 결과를 확인할 수 있습니다.</p> | |
| 129 | + <p class="small_text">- 발송실패된 건은 보유잔액으로 반환됩니다.</p> | |
| 130 | + <img src="/publish/publish_adv/img/template_v1_manuscript_11_section02_img11.png" alt=""> | |
| 131 | + </div> | |
| 132 | + <div> | |
| 133 | + <p class="text">9. 이외에도 무료 주소록 입력대행, 카톡 및 팩스 발송, 선거문자, 그림문자 맞춤제작, 편리한 주소록 관리 등을 제공하고 있습니다.</p> | |
| 134 | + </div> | |
| 135 | + </div> | |
| 136 | + </section> | |
| 137 | + | |
| 138 | + <div class="btn_wrap"> | |
| 139 | + <div class="inner"> | |
| 140 | + <a href="https://www.munjaon.co.kr">단체문자사이트</a> | |
| 141 | + </div> | |
| 142 | + </div> | |
| 143 | + </div> | |
| 144 | + | |
| 145 | +</body> | |
| 146 | + | |
| 147 | +</html>(No newline at end of file) |
--- src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_3.html
+++ src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_3.html
... | ... | @@ -10,7 +10,7 @@ |
| 10 | 10 |
<meta name="Keywords" content="문자전송, 문자발송, SMS, LMS, MMS, 문자보내기, 단체문자, 단체문자전송, 단체문자발송,단체문자사이트,문자사이트, 대량문자"> |
| 11 | 11 |
<meta name="description" content="요즘 시대에는 경조사, 알림, 안부인사, 홍보 등 여러 가지 상황에서 단체에게 내용을 전달해야 하는 경우가 많습니다."> |
| 12 | 12 |
<meta property="og:type" content="website"> |
| 13 |
- <meta property="og:title" content="단체문자 발송하는 방법 총정리 - 문자온"> |
|
| 13 |
+ <meta property="og:title" content="대량문자 - 문자온"> |
|
| 14 | 14 |
<meta property="og:description" content="요즘 시대에는 경조사, 알림, 안부인사, 홍보 등 여러 가지 상황에서 단체에게 내용을 전달해야 하는 경우가 많습니다."> |
| 15 | 15 |
<link rel="apple-touch-icon" sizes="57x57" href="/publish/images/favicon/apple-icon-57x57.png"> |
| 16 | 16 |
<link rel="apple-touch-icon" sizes="60x60" href="/publish/images/favicon/apple-icon-60x60.png"> |
--- src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_4.html
+++ src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_4.html
... | ... | @@ -10,7 +10,7 @@ |
| 10 | 10 |
<meta name="Keywords" content="문자전송, 문자발송, SMS, LMS, MMS, 문자보내기, 단체문자, 단체문자전송, 단체문자발송,단체문자사이트,문자사이트, 대량문자"> |
| 11 | 11 |
<meta name="description" content="요즘 시대에는 경조사, 알림, 안부인사, 홍보 등 여러 가지 상황에서 단체에게 내용을 전달해야 하는 경우가 많습니다."> |
| 12 | 12 |
<meta property="og:type" content="website"> |
| 13 |
- <meta property="og:title" content="단체문자 발송하는 방법 총정리 - 문자온"> |
|
| 13 |
+ <meta property="og:title" content="컴퓨터문자보내기 - 문자온"> |
|
| 14 | 14 |
<meta property="og:description" content="요즘 시대에는 경조사, 알림, 안부인사, 홍보 등 여러 가지 상황에서 단체에게 내용을 전달해야 하는 경우가 많습니다."> |
| 15 | 15 |
<link rel="apple-touch-icon" sizes="57x57" href="/publish/images/favicon/apple-icon-57x57.png"> |
| 16 | 16 |
<link rel="apple-touch-icon" sizes="60x60" href="/publish/images/favicon/apple-icon-60x60.png"> |
--- src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_5.html
+++ src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_5.html
... | ... | @@ -10,7 +10,7 @@ |
| 10 | 10 |
<meta name="Keywords" content="문자전송, 문자발송, SMS, LMS, MMS, 문자보내기, 단체문자, 단체문자전송, 단체문자발송,단체문자사이트,문자사이트, 대량문자"> |
| 11 | 11 |
<meta name="description" content="요즘 시대에는 경조사, 알림, 안부인사, 홍보 등 여러 가지 상황에서 단체에게 내용을 전달해야 하는 경우가 많습니다."> |
| 12 | 12 |
<meta property="og:type" content="website"> |
| 13 |
- <meta property="og:title" content="단체문자 발송하는 방법 총정리 - 문자온"> |
|
| 13 |
+ <meta property="og:title" content="인터넷문자 - 문자온"> |
|
| 14 | 14 |
<meta property="og:description" content="요즘 시대에는 경조사, 알림, 안부인사, 홍보 등 여러 가지 상황에서 단체에게 내용을 전달해야 하는 경우가 많습니다."> |
| 15 | 15 |
<link rel="apple-touch-icon" sizes="57x57" href="/publish/images/favicon/apple-icon-57x57.png"> |
| 16 | 16 |
<link rel="apple-touch-icon" sizes="60x60" href="/publish/images/favicon/apple-icon-60x60.png"> |
--- src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_6.html
+++ src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_6.html
... | ... | @@ -10,7 +10,7 @@ |
| 10 | 10 |
<meta name="Keywords" content="문자전송, 문자발송, SMS, LMS, MMS, 문자보내기, 단체문자, 단체문자전송, 단체문자발송,단체문자사이트,문자사이트, 대량문자"> |
| 11 | 11 |
<meta name="description" content="나에게는 절대로 오지 않을 일이면 좋겠지만 살다보면 여러 가지 이유로 가족 중에 누군가를 가슴아프게 떠나보내야 할 때가 옵니다. 또는 그러한 누군가의 아픔을 위로해야 할 때도 있을 것입니다. 부고를 알리고 위로하고 답례를 할 때는 경황이 없음을 서로 이해하고 전화보다는 문자메시지를 통해 내용을 전달하시는데요. 어떤 내용으로 보낼지 막막하신 분들을 위해 상황에 맞는 다양한 예시를 안내해드립니다."> |
| 12 | 12 |
<meta property="og:type" content="website"> |
| 13 |
- <meta property="og:title" content="단체문자 발송하는 방법 총정리 - 문자온"> |
|
| 13 |
+ <meta property="og:title" content="부고문자 예시 모음 - 문자온"> |
|
| 14 | 14 |
<meta property="og:description" content="나에게는 절대로 오지 않을 일이면 좋겠지만 살다보면 여러 가지 이유로 가족 중에 누군가를 가슴아프게 떠나보내야 할 때가 옵니다. 또는 그러한 누군가의 아픔을 위로해야 할 때도 있을 것입니다. 부고를 알리고 위로하고 답례를 할 때는 경황이 없음을 서로 이해하고 전화보다는 문자메시지를 통해 내용을 전달하시는데요. 어떤 내용으로 보낼지 막막하신 분들을 위해 상황에 맞는 다양한 예시를 안내해드립니다."> |
| 15 | 15 |
<link rel="apple-touch-icon" sizes="57x57" href="/publish/images/favicon/apple-icon-57x57.png"> |
| 16 | 16 |
<link rel="apple-touch-icon" sizes="60x60" href="/publish/images/favicon/apple-icon-60x60.png"> |
--- src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_7.html
+++ src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_7.html
... | ... | @@ -10,7 +10,7 @@ |
| 10 | 10 |
<meta name="Keywords" content="문자전송, 문자발송, SMS, LMS, MMS, 문자보내기, 단체문자, 단체문자전송, 단체문자발송,단체문자사이트,문자사이트, 대량문자"> |
| 11 | 11 |
<meta name="description" content="경사와 조사를 합한 뜻인 경조사는 경사스러운 일과 불행한 일을 뜻합니다. 옛날처럼 경조사 때 품앗이까지 이루어지지는 않지만 결혼, 부고, 회갑, 고희 등의 경조사 시에 축하 또는 위로의 인사를 나누어 기쁨은 두배로, 슬픔은 반으로 만드는 것이 우리의 미덕이라고 할 수 있습니다. 그렇다면 각각의 경조사 목적에 맞는 문자 내용을 작성하려면 어떻게 해야할까요? 고민하고 계시는 여러분들을 위해 문자온이 다양한 예시를 보여드리도록 하겠습니다."> |
| 12 | 12 |
<meta property="og:type" content="website"> |
| 13 |
- <meta property="og:title" content="단체문자 발송하는 방법 총정리 - 문자온"> |
|
| 13 |
+ <meta property="og:title" content="경조사 문자 인사말 예시 모음 조문 결혼 고희 등 - 문자온"> |
|
| 14 | 14 |
<meta property="og:description" content="경사와 조사를 합한 뜻인 경조사는 경사스러운 일과 불행한 일을 뜻합니다. 옛날처럼 경조사 때 품앗이까지 이루어지지는 않지만 결혼, 부고, 회갑, 고희 등의 경조사 시에 축하 또는 위로의 인사를 나누어 기쁨은 두배로, 슬픔은 반으로 만드는 것이 우리의 미덕이라고 할 수 있습니다. 그렇다면 각각의 경조사 목적에 맞는 문자 내용을 작성하려면 어떻게 해야할까요? 고민하고 계시는 여러분들을 위해 문자온이 다양한 예시를 보여드리도록 하겠습니다."> |
| 15 | 15 |
<link rel="apple-touch-icon" sizes="57x57" href="/publish/images/favicon/apple-icon-57x57.png"> |
| 16 | 16 |
<link rel="apple-touch-icon" sizes="60x60" href="/publish/images/favicon/apple-icon-60x60.png"> |
+++ src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_8.html
... | ... | @@ -0,0 +1,697 @@ |
| 1 | +<!DOCTYPE html> | |
| 2 | +<html lang="ko"> | |
| 3 | + | |
| 4 | +<head> | |
| 5 | + <meta charset="UTF-8"> | |
| 6 | + <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| 7 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| 8 | + <title>결혼 축하 메시지, 청첩창 문구, 답례 문자 - 문자온</title> | |
| 9 | + | |
| 10 | + <meta name="Keywords" content="문자전송, 문자발송, SMS, LMS, MMS, 문자보내기, 단체문자, 단체문자전송, 단체문자발송,단체문자사이트,문자사이트, 대량문자"> | |
| 11 | + <meta name="description" content="살아가는 동안 최고로 기쁘면서도 가장 성대한 축하를 받는 행사는 무엇일까요? 기쁜 일은 여러 가지 있겠지만 주인공이 되는 자리는 아무래도 “결혼”일 것입니다. 가족, 친지, 친구, 동료 등 알만한 지인들은 총출동하여 함께 축복하는 자리! 축복이 큰 자리이니 만큼 청첩장, 축하메시지, 답례인사까지 신경써야 할 문구들이 많은데요. 문자온이 아래 예시들을 제공해드리오니 마음껏 활용하시길 바랍니다."> | |
| 12 | + <meta property="og:type" content="website"> | |
| 13 | + <meta property="og:title" content="결혼 축하 메시지, 청첩창 문구, 답례 문자 - 문자온"> | |
| 14 | + <meta property="og:description" content="살아가는 동안 최고로 기쁘면서도 가장 성대한 축하를 받는 행사는 무엇일까요? 기쁜 일은 여러 가지 있겠지만 주인공이 되는 자리는 아무래도 “결혼”일 것입니다. 가족, 친지, 친구, 동료 등 알만한 지인들은 총출동하여 함께 축복하는 자리! 축복이 큰 자리이니 만큼 청첩장, 축하메시지, 답례인사까지 신경써야 할 문구들이 많은데요. 문자온이 아래 예시들을 제공해드리오니 마음껏 활용하시길 바랍니다."> | |
| 15 | + <link rel="apple-touch-icon" sizes="57x57" href="/publish/images/favicon/apple-icon-57x57.png"> | |
| 16 | + <link rel="apple-touch-icon" sizes="60x60" href="/publish/images/favicon/apple-icon-60x60.png"> | |
| 17 | + <link rel="apple-touch-icon" sizes="72x72" href="/publish/images/favicon/apple-icon-72x72.png"> | |
| 18 | + <link rel="apple-touch-icon" sizes="76x76" href="/publish/images/favicon/apple-icon-76x76.png"> | |
| 19 | + <link rel="apple-touch-icon" sizes="114x114" href="/publish/images/favicon/apple-icon-114x114.png"> | |
| 20 | + <link rel="apple-touch-icon" sizes="120x120" href="/publish/images/favicon/apple-icon-120x120.png"> | |
| 21 | + <link rel="apple-touch-icon" sizes="144x144" href="/publish/images/favicon/apple-icon-144x144.png"> | |
| 22 | + <link rel="apple-touch-icon" sizes="152x152" href="/publish/images/favicon/apple-icon-152x152.png"> | |
| 23 | + <link rel="apple-touch-icon" sizes="180x180" href="/publish/images/favicon/apple-icon-180x180.png"> | |
| 24 | + <link rel="icon" type="image/png" sizes="192x192" href="/publish/images/favicon/android-icon-192x192.png"> | |
| 25 | + <link rel="icon" type="image/png" sizes="32x32" href="/publish/images/favicon/favicon-32x32.png"> | |
| 26 | + <link rel="icon" type="image/png" sizes="96x96" href="/publish/images/favicon/favicon-96x96.png"> | |
| 27 | + <link rel="icon" type="image/png" sizes="16x16" href="/publish/images/favicon/favicon-16x16.png"> | |
| 28 | + <link rel="manifest" href="/publish/images/favicon/manifest.json"> | |
| 29 | + | |
| 30 | + <link rel="stylesheet" href="/publish/publish_adv/css/reset.css"> | |
| 31 | + <link rel="stylesheet" href="/publish/publish_adv/css/style.css"> | |
| 32 | + <link rel="stylesheet" href="/publish/css/font.css"> | |
| 33 | + | |
| 34 | + <script src="/publish/js/jquery-3.5.0.js"></script> | |
| 35 | + <script> | |
| 36 | + function topBtn() {
| |
| 37 | + $("html").scrollTop("0");
| |
| 38 | + } | |
| 39 | + </script> | |
| 40 | +</head> | |
| 41 | + | |
| 42 | +<body> | |
| 43 | + <div class="template_v1_content"> | |
| 44 | + <button type="button" class="top_btn" onclick="topBtn()" style="z-index: 2;">▲<br>TOP</button> | |
| 45 | + <header> | |
| 46 | + <div class="inner"> | |
| 47 | + <a href="https://www.munjaon.co.kr"> | |
| 48 | + <h1><img src="/publish/publish_adv/img/template_v1_header_logo.png" alt=""></h1> | |
| 49 | + </a> | |
| 50 | + </div> | |
| 51 | + </header> | |
| 52 | + <div class="visual"> | |
| 53 | + <div class="inner"> | |
| 54 | + <p class="keyword">keyword</p> | |
| 55 | + <h2>결혼 축하 메시지, 청첩창 문구, 답례 문자</h2> | |
| 56 | + <p class="sub_text obituary_te">살아가는 동안 최고로 기쁘면서도 가장 성대한 축하를 받는 행사는 무엇일까요? 기쁜 일은 여러 가지 있겠지만 주인공이 되는 자리는 아무래도 “결혼”일 것입니다. 가족, 친지, 친구, 동료 등 알만한 지인들은 총출동하여 함께 축복하는 자리! 축복이 큰 자리이니 만큼 청첩장, 축하메시지, 답례인사까지 신경써야 할 문구들이 많은데요. 문자온이 아래 예시들을 제공해드리오니 마음껏 활용하시길 바랍니다.</p> | |
| 57 | + </div> | |
| 58 | + </div> | |
| 59 | + <div class="index"> | |
| 60 | + <div class="inner"> | |
| 61 | + <p>목 차</p> | |
| 62 | + <nav> | |
| 63 | + <ul style="text-align: center;display: inline-block; width: auto;"> | |
| 64 | + <li><a href="#section01">결혼 축하 메시지 예시</a></li> | |
| 65 | + <li><a href="#section02">청첩장 문구 예시</a></li> | |
| 66 | + <li><a href="#section03">결혼 답례 문자 예시</a></li> | |
| 67 | + </ul> | |
| 68 | + </nav> | |
| 69 | + </div> | |
| 70 | + </div> | |
| 71 | + <section class="section section01" id="section01"> | |
| 72 | + <div class="inner obituary_inner"> | |
| 73 | + <h3>결혼 축하 메시지 예시</h3> | |
| 74 | + <div class="short"> | |
| 75 | + <p class="text bold" style="margin: 0 0 8px 0;">[단문]</p> | |
| 76 | + <ul class="obituary"> | |
| 77 | + <li> | |
| 78 | + <div class="wrap"> | |
| 79 | + <div class="title"> | |
| 80 | + <p class="text">결혼 축하 메시지</p> | |
| 81 | + </div> | |
| 82 | + <div class="inner_text"> | |
| 83 | + 세상에서 제일 행복한 부부가 되길 바래~ | |
| 84 | + <p class="date">PM 3:45</p> | |
| 85 | + </div> | |
| 86 | + </div> | |
| 87 | + | |
| 88 | + <div class="people_01"></div> | |
| 89 | + <div class="speech_bubble"></div> | |
| 90 | + </li> | |
| 91 | + <li class="move_line"> | |
| 92 | + <div class="wrap"> | |
| 93 | + <div class="title"> | |
| 94 | + <p class="text">결혼 축하 메시지</p> | |
| 95 | + </div> | |
| 96 | + <div class="inner_text"> | |
| 97 | + 알콩달콩 신혼살림 잘 꾸려가~ 결혼 축하해! | |
| 98 | + <p class="date">PM 5:30</p> | |
| 99 | + </div> | |
| 100 | + </div> | |
| 101 | + <div class="people_02"></div> | |
| 102 | + <div class="speech_bubble"></div> | |
| 103 | + </li> | |
| 104 | + <li class="move_line"> | |
| 105 | + <div class="wrap"> | |
| 106 | + <div class="title"> | |
| 107 | + <p class="text">결혼 축하 메시지</p> | |
| 108 | + </div> | |
| 109 | + <div class="inner_text"> | |
| 110 | + 결혼 축하드립니다. 행복이 가득하시길 바랍니다. | |
| 111 | + <p class="date">PM 8:55</p> | |
| 112 | + </div> | |
| 113 | + </div> | |
| 114 | + <div class="people_03"></div> | |
| 115 | + <div class="speech_bubble"></div> | |
| 116 | + </li> | |
| 117 | + <li class="second_line move_line"> | |
| 118 | + <div class="wrap"> | |
| 119 | + <div class="title"> | |
| 120 | + <p class="text">결혼 축하 메시지</p> | |
| 121 | + </div> | |
| 122 | + <div class="inner_text"> | |
| 123 | + 검은머리 파뿌리! 될 때까지 행복하세요~ | |
| 124 | + <p class="date">PM 2:15</p> | |
| 125 | + </div> | |
| 126 | + </div> | |
| 127 | + <div class="people_02"></div> | |
| 128 | + <div class="speech_bubble"></div> | |
| 129 | + </li> | |
| 130 | + <li class="second_line move_line"> | |
| 131 | + <div class="wrap"> | |
| 132 | + <div class="title"> | |
| 133 | + <p class="text">결혼 축하 메시지</p> | |
| 134 | + </div> | |
| 135 | + <div class="inner_text"> | |
| 136 | + 두 사람의 앞날에 늘 행복이 가득하기를 기원합니다. | |
| 137 | + <p class="date">PM 6:48</p> | |
| 138 | + </div> | |
| 139 | + </div> | |
| 140 | + <div class="people_03"></div> | |
| 141 | + <div class="speech_bubble"></div> | |
| 142 | + </li> | |
| 143 | + </ul> | |
| 144 | + </div> | |
| 145 | + | |
| 146 | + <div class="line"></div> | |
| 147 | + | |
| 148 | + <div class="long"> | |
| 149 | + <p class="text bold" style="margin: 0 0 8px 0;">[장문]</p> | |
| 150 | + <ul class="obituary" style="margin: 0 0 -200px 0;"> | |
| 151 | + <li> | |
| 152 | + <div class="wrap"> | |
| 153 | + <div class="title"> | |
| 154 | + <p class="text">결혼 축하 메시지</p> | |
| 155 | + </div> | |
| 156 | + <div class="inner_text"> | |
| 157 | + 두 사람이 사랑으로 만나 마침내 그 사랑의 결실을 맺으시게 된 것에 진심으로 축하 말씀 드립니다. | |
| 158 | + <p class="date">PM 1:10</p> | |
| 159 | + </div> | |
| 160 | + </div> | |
| 161 | + | |
| 162 | + <div class="people_01"></div> | |
| 163 | + <div class="speech_bubble"></div> | |
| 164 | + </li> | |
| 165 | + <li class="move_line"> | |
| 166 | + <div class="wrap"> | |
| 167 | + <div class="title"> | |
| 168 | + <p class="text">결혼 축하 메시지</p> | |
| 169 | + </div> | |
| 170 | + <div class="inner_text"> | |
| 171 | + 결혼을 진심으로 축하드립니다.<br> | |
| 172 | + 두 분의 뜻깊은 출발을 축복드리며~<br> | |
| 173 | + 두 분에게 평안과 행복이 항상 함께 하시기를 기원합니다. | |
| 174 | + <p class="date">AM 8:45</p> | |
| 175 | + </div> | |
| 176 | + </div> | |
| 177 | + <div class="people_02"></div> | |
| 178 | + <div class="speech_bubble"></div> | |
| 179 | + </li> | |
| 180 | + <li class="move_line"> | |
| 181 | + <div class="wrap"> | |
| 182 | + <div class="title"> | |
| 183 | + <p class="text">결혼 축하 메시지</p> | |
| 184 | + </div> | |
| 185 | + <div class="inner_text"> | |
| 186 | + 오랜 기다림 속에 둘이 진실로 한마음이 되는 것을 모두 지켜본 사람으로써 무척 감격스럽다.<br> | |
| 187 | + 항상 서로 아껴주고 이해하며 행복하기를 바래~ | |
| 188 | + <p class="date">PM 5:35</p> | |
| 189 | + </div> | |
| 190 | + </div> | |
| 191 | + <div class="people_01"></div> | |
| 192 | + <div class="speech_bubble"></div> | |
| 193 | + </li> | |
| 194 | + <li class="second_line move_line"> | |
| 195 | + <div class="wrap"> | |
| 196 | + <div class="title"> | |
| 197 | + <p class="text">결혼 축하 메시지</p> | |
| 198 | + </div> | |
| 199 | + <div class="inner_text"> | |
| 200 | + 두사람<br> | |
| 201 | + 이제 두 사람은 비를 맞지 않으리라.<br> | |
| 202 | + 서로가 서로에게 지붕이 되어 줄테니까.<br> | |
| 203 | + 이제 두 사람은 춥지 않으리라.<br> | |
| 204 | + 서로가 서로에게 따뜻함이 되어 줄테니까.<br> | |
| 205 | + 이제 두 사람은 더 이상 외롭지 않으리라.<br> | |
| 206 | + 서로가 서로에게 동행이 될테니까.<br> | |
| 207 | + 이제 두 사람은 두 개의 몸이지만<br> | |
| 208 | + 두 사람 앞에는 오직<br> | |
| 209 | + 하나의 인생만이 있으리라. <br> | |
| 210 | + 이제 그대들의 집으로 들어가라.<br> | |
| 211 | + 함께 있는 날들 속으로 들어가라.<br> | |
| 212 | + 이 대지 위에서 그대들은 <br> | |
| 213 | + 오랫동안 행복하리라. | |
| 214 | + <p class="date">AM 9:43</p> | |
| 215 | + </div> | |
| 216 | + </div> | |
| 217 | + <div class="people_02"></div> | |
| 218 | + <div class="speech_bubble"></div> | |
| 219 | + </li> | |
| 220 | + <li class="second_line move_line"> | |
| 221 | + <div class="wrap"> | |
| 222 | + <div class="title"> | |
| 223 | + <p class="text">결혼 축하 메시지</p> | |
| 224 | + </div> | |
| 225 | + <div class="inner_text"> | |
| 226 | + 결혼을 진심으로 축하드려요.<br> | |
| 227 | + 하루씩 하루씩 시간이 가면 갈수록 서로 사랑이 깊어지는 가정이 되시길 바래요. | |
| 228 | + <p class="date">PM 5:15</p> | |
| 229 | + </div> | |
| 230 | + </div> | |
| 231 | + <div class="people_03"></div> | |
| 232 | + <div class="speech_bubble"></div> | |
| 233 | + </li> | |
| 234 | + <li class="second_line move_line"> | |
| 235 | + <div class="wrap"> | |
| 236 | + <div class="title"> | |
| 237 | + <p class="text">결혼 축하 메시지</p> | |
| 238 | + </div> | |
| 239 | + <div class="inner_text"> | |
| 240 | + 너와 나의 어린시절...<br> | |
| 241 | + 함께 뛰놀던<br> | |
| 242 | + 그때가<br> | |
| 243 | + 엊그제 같은데...<br> | |
| 244 | + 어느덧 성인이 되어...<br> | |
| 245 | + 사랑의 결실을 맺는구나<br> | |
| 246 | + 결혼 진심으로 축하해! | |
| 247 | + <p class="date">PM 5:15</p> | |
| 248 | + </div> | |
| 249 | + </div> | |
| 250 | + <div class="people_03"></div> | |
| 251 | + <div class="speech_bubble"></div> | |
| 252 | + </li> | |
| 253 | + | |
| 254 | + </ul> | |
| 255 | + </div> | |
| 256 | + | |
| 257 | + </div> | |
| 258 | + </section> | |
| 259 | + | |
| 260 | + <section class="section section02" id="section02"> | |
| 261 | + <div class="inner obituary_inner"> | |
| 262 | + <h3>청첩장 문구 예시</h3> | |
| 263 | + <div class="short"> | |
| 264 | + <p class="text bold" style="margin: 0 0 8px 0;">[단문]</p> | |
| 265 | + <ul class="obituary"> | |
| 266 | + <li> | |
| 267 | + <div class="wrap"> | |
| 268 | + <div class="title"> | |
| 269 | + <p class="text">청첩장 문구</p> | |
| 270 | + </div> | |
| 271 | + <div class="inner_text"> | |
| 272 | + ♧결혼청첩장♧ <br> | |
| 273 | + ○○○♡○○○<br> | |
| 274 | + 저희 결혼을 축복해주세요^^<br> | |
| 275 | + ○월 ○일 ○시<br> | |
| 276 | + ○○○○웨딩홀 | |
| 277 | + <p class="date">PM 3:45</p> | |
| 278 | + </div> | |
| 279 | + </div> | |
| 280 | + | |
| 281 | + <div class="people_01"></div> | |
| 282 | + <div class="speech_bubble"></div> | |
| 283 | + </li> | |
| 284 | + <li class="move_line"> | |
| 285 | + <div class="wrap"> | |
| 286 | + <div class="title"> | |
| 287 | + <p class="text">청첩장 문구</p> | |
| 288 | + </div> | |
| 289 | + <div class="inner_text"> | |
| 290 | + 드디어 저희 결혼합니다<br> | |
| 291 | + 축하해주세요<br> | |
| 292 | + ○월○일○시<br> | |
| 293 | + ○○○○예식장<br> | |
| 294 | + 행복하게살겠습니다 | |
| 295 | + <p class="date">PM 5:30</p> | |
| 296 | + </div> | |
| 297 | + </div> | |
| 298 | + <div class="people_02"></div> | |
| 299 | + <div class="speech_bubble"></div> | |
| 300 | + </li> | |
| 301 | + <li class="move_line"> | |
| 302 | + <div class="wrap"> | |
| 303 | + <div class="title"> | |
| 304 | + <p class="text">청첩장 문구</p> | |
| 305 | + </div> | |
| 306 | + <div class="inner_text"> | |
| 307 | + ○○○의 혼사를 축~축하♡<br> | |
| 308 | + ○월○일(토)오후○시<br> | |
| 309 | + ○○○○○웨딩홀○층<br> | |
| 310 | + 많은축하바랍니다 | |
| 311 | + <p class="date">PM 8:55</p> | |
| 312 | + </div> | |
| 313 | + </div> | |
| 314 | + <div class="people_03"></div> | |
| 315 | + <div class="speech_bubble"></div> | |
| 316 | + </li> | |
| 317 | + <li class="second_line move_line"> | |
| 318 | + <div class="wrap"> | |
| 319 | + <div class="title"> | |
| 320 | + <p class="text">청첩장 문구</p> | |
| 321 | + </div> | |
| 322 | + <div class="inner_text"> | |
| 323 | + ..+:☆:+:☆:+..<br> | |
| 324 | + 우ㄹl결혼ㅎH요。<br> | |
| 325 | + 축하ㅎH주서l요。<br> | |
| 326 | + '+:☆:+:☆:+' | |
| 327 | + <p class="date">PM 2:15</p> | |
| 328 | + </div> | |
| 329 | + </div> | |
| 330 | + <div class="people_02"></div> | |
| 331 | + <div class="speech_bubble"></div> | |
| 332 | + </li> | |
| 333 | + <li class="second_line move_line"> | |
| 334 | + <div class="wrap"> | |
| 335 | + <div class="title"> | |
| 336 | + <p class="text">청첩장 문구</p> | |
| 337 | + </div> | |
| 338 | + <div class="inner_text"> | |
| 339 | + 나 드디어 결혼날짜잡았어! 0월0일 0시. 집근처에서참석해줄꺼지!^^꼭와서꼭축하해줘! | |
| 340 | + <p class="date">PM 6:48</p> | |
| 341 | + </div> | |
| 342 | + </div> | |
| 343 | + <div class="people_03"></div> | |
| 344 | + <div class="speech_bubble"></div> | |
| 345 | + </li> | |
| 346 | + </ul> | |
| 347 | + </div> | |
| 348 | + | |
| 349 | + <div class="line"></div> | |
| 350 | + | |
| 351 | + <div class="long"> | |
| 352 | + <p class="text bold" style="margin: 0 0 8px 0;">[장문]</p> | |
| 353 | + <ul class="obituary"> | |
| 354 | + <li> | |
| 355 | + <div class="wrap"> | |
| 356 | + <div class="title"> | |
| 357 | + <p class="text">청첩장 문자</p> | |
| 358 | + </div> | |
| 359 | + <div class="inner_text"> | |
| 360 | + 부모님은 하늘로부터 받은 최고의 선물이고, <br> | |
| 361 | + 부부는 자신이 선택한 최고의 보물 이라고 합니다.<br> | |
| 362 | + 서로가 서로에게 최고의 보물이라고 믿는 저희 두사람 드디어 하나되어 한 가정을 이루고자 합니다.<br> | |
| 363 | + 부디 참석하시어 기쁨의 자리를 축복으로 더욱 빛내 주시기 바랍니다. | |
| 364 | + <p class="date">PM 1:10</p> | |
| 365 | + </div> | |
| 366 | + </div> | |
| 367 | + | |
| 368 | + <div class="people_03"></div> | |
| 369 | + <div class="speech_bubble"></div> | |
| 370 | + </li> | |
| 371 | + <li class="move_line"> | |
| 372 | + <div class="wrap"> | |
| 373 | + <div class="title"> | |
| 374 | + <p class="text">청첩장 문자</p> | |
| 375 | + </div> | |
| 376 | + <div class="inner_text"> | |
| 377 | + 안녕하세요. ○○○ 입니다.<br> | |
| 378 | + 예전, 아주 작은 인연이 저희를 연인으로 만들었고<br> | |
| 379 | + 오늘, 그 인연으로 저희가 하나가 됩니다.<br> | |
| 380 | + 작은 사랑으로 하나의 커다란 열매를 맺고<br> | |
| 381 | + 이제 또 다른 모습으로 사랑하고자 하는 두 사람,<br> | |
| 382 | + 오셔서 지켜봐 주시고 축하해 주십시오.<br> | |
| 383 | + 늘 그 인연을 생각하며 살겠습니다.<br> | |
| 384 | + 언제:<br> | |
| 385 | + 어디서:<br> | |
| 386 | + <p class="date">AM 8:45</p> | |
| 387 | + </div> | |
| 388 | + </div> | |
| 389 | + <div class="people_02"></div> | |
| 390 | + <div class="speech_bubble"></div> | |
| 391 | + </li> | |
| 392 | + <li class="move_line"> | |
| 393 | + <div class="wrap"> | |
| 394 | + <div class="title"> | |
| 395 | + <p class="text">청첩장 문자</p> | |
| 396 | + </div> | |
| 397 | + <div class="inner_text"> | |
| 398 | + 하얀 눈처럼 순수한 영혼을 가진 사랑을 찾았습니다. <br> | |
| 399 | + 여러 어른과 친지를 모신 자리에서 웃음도 눈물도 서로의 보이지 않는 작은 부분도 영원히 함께 공유할 수 있는 동반자라 맹세하며 사랑의 예를 맺고자 합니다. <br> | |
| 400 | + 그 동안 아껴주신 것처럼 저희들의 새 출발에도 참석하시어 축복해 주시면 평생 잊을 수 없는 기쁨이 되겠습니다.<br> | |
| 401 | + <p class="date">PM 5:55</p> | |
| 402 | + </div> | |
| 403 | + </div> | |
| 404 | + <div class="people_01"></div> | |
| 405 | + <div class="speech_bubble"></div> | |
| 406 | + </li> | |
| 407 | + <li class="second_line move_line"> | |
| 408 | + <div class="wrap"> | |
| 409 | + <div class="title"> | |
| 410 | + <p class="text">청첩장 문자</p> | |
| 411 | + </div> | |
| 412 | + <div class="inner_text"> | |
| 413 | + 개나리 꽃길에서 시작된 저희의 사랑이 이제 결실을 이루려 합니다. <br> | |
| 414 | + 코스모스 향기가 그윽한 푸르른 이 가을! <br> | |
| 415 | + 새로운 출발을 위한 저희의 맹세에 초대하오니 오셔서 축복해 주시면 큰 기쁨이겠습니다. | |
| 416 | + <p class="date">AM 9:43</p> | |
| 417 | + </div> | |
| 418 | + </div> | |
| 419 | + <div class="people_01"></div> | |
| 420 | + <div class="speech_bubble"></div> | |
| 421 | + </li> | |
| 422 | + <li class="second_line move_line"> | |
| 423 | + <div class="wrap"> | |
| 424 | + <div class="title"> | |
| 425 | + <p class="text">청첩장 문자</p> | |
| 426 | + </div> | |
| 427 | + <div class="inner_text"> | |
| 428 | + 안녕하세요?<br> | |
| 429 | + 믿음으로 함께하고 사랑으로 하나되는 저희 결혼식에 소중한 분들을 모시고자 합니다.<br> | |
| 430 | + 바쁘시더라도 귀한 시간내어 소중한 걸음 하시어 기쁜 마음으로 축복해주시면 감사하겠습니다.<br> | |
| 431 | + - ○○○ 배상 - <br> | |
| 432 | + 일시 : ○○월 ○○일 (○) ○○시<br> | |
| 433 | + 장소 : 서울 웨딩홀<br> | |
| 434 | + <p class="date">PM 5:15</p> | |
| 435 | + </div> | |
| 436 | + </div> | |
| 437 | + <div class="people_03"></div> | |
| 438 | + <div class="speech_bubble"></div> | |
| 439 | + </li> | |
| 440 | + <li class="second_line move_line"> | |
| 441 | + <div class="wrap"> | |
| 442 | + <div class="title"> | |
| 443 | + <p class="text">청첩장 문자</p> | |
| 444 | + </div> | |
| 445 | + <div class="inner_text"> | |
| 446 | + 예전, 아주 작은 인연이 저희를 연인으로 만들었고 그 인연으로 저희 하나가 됩니다.<br> | |
| 447 | + 곱게 다듬어지지 못한 질그릇처럼 아직은 많이도 부족하지만 늘 그 인연을 생각하며 살겠습니다.<br> | |
| 448 | + 오셔서 지켜봐주시고 축하해 주십시오.<br> | |
| 449 | + 살기 좋은 집처럼 포근한 남편이 되겠습니다.<br> | |
| 450 | + 몸에 맞는 옷처럼 편안한 아내가 되겠습니다.<br> | |
| 451 | + 이제 저희 두 사람 부부라는 이름으로 두 발이 하나 되어 즐거움을 나누고 어려움을 이겨내는 삶을 꾸리겠습니다.<br> | |
| 452 | + 희망의 첫발을 내딛는 우리 둘 기쁨으로 곱해지고 행복으로 나눠지는 사랑의 축제에 지혜와 사랑으로 한껏 보듬어주실 고마운 분들과 함께 하고 싶습니다. | |
| 453 | + <p class="date">PM 5:15</p> | |
| 454 | + </div> | |
| 455 | + </div> | |
| 456 | + <div class="people_03"></div> | |
| 457 | + <div class="speech_bubble"></div> | |
| 458 | + </li> | |
| 459 | + <li class="second_line move_line"> | |
| 460 | + <div class="wrap"> | |
| 461 | + <div class="title"> | |
| 462 | + <p class="text">청첩장 문자</p> | |
| 463 | + </div> | |
| 464 | + <div class="inner_text"> | |
| 465 | + 하얀 눈처럼 순수한 영혼을 가진 사랑을 찾았습니다. <br> | |
| 466 | + 여러 어른과 친지를 모신 자리에서 웃음도 눈물도 서로의 보이지 않는 작은 부분도 영원히 함께 공유할 수 있는 동반자라 맹세하며 사랑의 예를 맺고자 합니다. <br> | |
| 467 | + 그 동안 아껴주신 것처럼 저희들의 새 출발에도 참석하시어 축복해 주시면 평생 잊을 수 없는 기쁨이 되겠습니다. | |
| 468 | + <p class="date">PM 5:15</p> | |
| 469 | + </div> | |
| 470 | + </div> | |
| 471 | + <div class="people_03"></div> | |
| 472 | + <div class="speech_bubble"></div> | |
| 473 | + </li> | |
| 474 | + </ul> | |
| 475 | + </div> | |
| 476 | + | |
| 477 | + <div class="line"></div> | |
| 478 | + | |
| 479 | + <div class="drawing"> | |
| 480 | + <p class="text bold" style="margin: 0 0 8px 0;">[그림문자]</p> | |
| 481 | + <img src="./img/template_v1_manuscript_8_section02_img.png" alt=""> | |
| 482 | + </div> | |
| 483 | + </div> | |
| 484 | + </section> | |
| 485 | + | |
| 486 | + <section class="section section03" id="section03"> | |
| 487 | + <div class="inner obituary_inner"> | |
| 488 | + <h3>결혼 답례 문자 예시</h3> | |
| 489 | + <div class="short"> | |
| 490 | + <p class="text bold" style="margin: 0 0 8px 0;">[단문]</p> | |
| 491 | + <ul class="obituary"> | |
| 492 | + <li> | |
| 493 | + <div class="wrap"> | |
| 494 | + <div class="title"> | |
| 495 | + <p class="text">결혼 답례 문자</p> | |
| 496 | + </div> | |
| 497 | + <div class="inner_text"> | |
| 498 | + 더운 날씨에도 불구하고 저희 결혼식에 찾아 주셔서 매우 감사드립니다.<br> | |
| 499 | + 큰 힘이 되었습니다. | |
| 500 | + <p class="date">PM 3:45</p> | |
| 501 | + </div> | |
| 502 | + </div> | |
| 503 | + | |
| 504 | + <div class="people_01"></div> | |
| 505 | + <div class="speech_bubble"></div> | |
| 506 | + </li> | |
| 507 | + <li class="move_line"> | |
| 508 | + <div class="wrap"> | |
| 509 | + <div class="title"> | |
| 510 | + <p class="text">결혼 답례 문자</p> | |
| 511 | + </div> | |
| 512 | + <div class="inner_text"> | |
| 513 | + 저희 결혼식에 바쁘신중에도 참석해주셔서 기뻤습니다. 진심으로 감사드립니다. 잘살겠습니다.^^ | |
| 514 | + <p class="date">PM 5:30</p> | |
| 515 | + </div> | |
| 516 | + </div> | |
| 517 | + <div class="people_02"></div> | |
| 518 | + <div class="speech_bubble"></div> | |
| 519 | + </li> | |
| 520 | + <li class="move_line"> | |
| 521 | + <div class="wrap"> | |
| 522 | + <div class="title"> | |
| 523 | + <p class="text">결혼 답례 문자</p> | |
| 524 | + </div> | |
| 525 | + <div class="inner_text"> | |
| 526 | + 금번 저희 혼사에바쁘심에도 불구하고 참석해 주시어 진심으로 감사의 말씀을드립니다 | |
| 527 | + <p class="date">PM 8:55</p> | |
| 528 | + </div> | |
| 529 | + </div> | |
| 530 | + <div class="people_03"></div> | |
| 531 | + <div class="speech_bubble"></div> | |
| 532 | + </li> | |
| 533 | + <li class="second_line move_line"> | |
| 534 | + <div class="wrap"> | |
| 535 | + <div class="title"> | |
| 536 | + <p class="text">결혼 답례 문자</p> | |
| 537 | + </div> | |
| 538 | + <div class="inner_text"> | |
| 539 | + 금번 저희 자혼사에 베푸신 후의에 감사드리며 좋은 일만 있길 기원합니다 <br> | |
| 540 | + ○○○ 배상 | |
| 541 | + <p class="date">PM 2:15</p> | |
| 542 | + </div> | |
| 543 | + </div> | |
| 544 | + <div class="people_02"></div> | |
| 545 | + <div class="speech_bubble"></div> | |
| 546 | + </li> | |
| 547 | + <li class="second_line move_line"> | |
| 548 | + <div class="wrap"> | |
| 549 | + <div class="title"> | |
| 550 | + <p class="text">결혼 답례 문자</p> | |
| 551 | + </div> | |
| 552 | + <div class="inner_text"> | |
| 553 | + 저희 아들 결혼을 축하해주신 ○○회원님들께 깊이 감사드립니다.<br> | |
| 554 | + - ○○○배상 | |
| 555 | + <p class="date">PM 6:48</p> | |
| 556 | + </div> | |
| 557 | + </div> | |
| 558 | + <div class="people_03"></div> | |
| 559 | + <div class="speech_bubble"></div> | |
| 560 | + </li> | |
| 561 | + <li class="second_line move_line"> | |
| 562 | + <div class="wrap"> | |
| 563 | + <div class="title"> | |
| 564 | + <p class="text">결혼 답례 문자</p> | |
| 565 | + </div> | |
| 566 | + <div class="inner_text"> | |
| 567 | + 저희집 혼사에 참석하시어 자리를 빛내주셔서 감사합니다. 건강과행복을 기원합니다. | |
| 568 | + <p class="date">PM 6:48</p> | |
| 569 | + </div> | |
| 570 | + </div> | |
| 571 | + <div class="people_03"></div> | |
| 572 | + <div class="speech_bubble"></div> | |
| 573 | + </li> | |
| 574 | + </ul> | |
| 575 | + </div> | |
| 576 | + | |
| 577 | + <div class="line"></div> | |
| 578 | + | |
| 579 | + <div class="long"> | |
| 580 | + <p class="text bold" style="margin: 0 0 8px 0;">[장문]</p> | |
| 581 | + <ul class="obituary" style="margin:0 0 -200px 0;"> | |
| 582 | + <li> | |
| 583 | + <div class="wrap"> | |
| 584 | + <div class="title"> | |
| 585 | + <p class="text">결혼 답례 문자</p> | |
| 586 | + </div> | |
| 587 | + <div class="inner_text"> | |
| 588 | + 신랑 알콩이, 신부 달콩이 입니다.<br> | |
| 589 | + 바쁘신중에도 저희 결혼식에 참석해주셔서 저희 두사람 행복한 결혼식 무사히 마쳤습니다.<br> | |
| 590 | + 진심으로 감사드립니다.<br> | |
| 591 | + 믿음져버리지 않도록 열심히 노력하면서 잘 살겠습니다.<br> | |
| 592 | + 앞으로도 많은 관심과 사랑 부탁드립니다.<br> | |
| 593 | + 늘 건강하시고, 가정에 행복가득하시길 기원합니다.<br> | |
| 594 | + 곧 찾아뵙고 정식으로 인사드리겠습니다. | |
| 595 | + <p class="date">AM 8:10</p> | |
| 596 | + </div> | |
| 597 | + </div> | |
| 598 | + | |
| 599 | + <div class="people_02"></div> | |
| 600 | + <div class="speech_bubble"></div> | |
| 601 | + </li> | |
| 602 | + <li class="move_line"> | |
| 603 | + <div class="wrap"> | |
| 604 | + <div class="title"> | |
| 605 | + <p class="text">결혼 답례 문자</p> | |
| 606 | + </div> | |
| 607 | + <div class="inner_text"> | |
| 608 | + 안녕하세요.<br> | |
| 609 | + 저희 결혼식 때 바쁘신 중에도 잊지않고 찾아주셔서 감사합니다.<br> | |
| 610 | + 따뜻한 격려와 축하속에서 행복하게 결혼식 올렸습니다.<br> | |
| 611 | + 고마움 오래오래 간직하겠습니다.<br> | |
| 612 | + 앞으로도 많은 조언과 사랑 부탁드립니다. ^^<br> | |
| 613 | + 가정에 행복과 건강이 함께 하시길 기원하며 감사의 인사를 드립니다. | |
| 614 | + <p class="date">AM 10:30</p> | |
| 615 | + </div> | |
| 616 | + </div> | |
| 617 | + <div class="people_01"></div> | |
| 618 | + <div class="speech_bubble"></div> | |
| 619 | + </li> | |
| 620 | + <li class="move_line"> | |
| 621 | + <div class="wrap"> | |
| 622 | + <div class="title"> | |
| 623 | + <p class="text">결혼 답례 문자</p> | |
| 624 | + </div> | |
| 625 | + <div class="inner_text"> | |
| 626 | + 안녕하세요.<br> | |
| 627 | + 저희 결혼식 때 바쁘신 중에도 잊지않고 찾아주셔서 감사합니다.<br> | |
| 628 | + 따뜻한 격려와 축하속에서 행복하게 결혼식 올렸습니다.<br> | |
| 629 | + 고마움 오래오래 간직하겠습니다.<br> | |
| 630 | + 앞으로도 많은 조언과 사랑 부탁드립니다. ^^<br> | |
| 631 | + 가정에 행복과 건강이 함께 하시길 기원하며 감사의 인사를 드립니다. | |
| 632 | + <p class="date">PM 2:20</p> | |
| 633 | + </div> | |
| 634 | + </div> | |
| 635 | + <div class="people_03"></div> | |
| 636 | + <div class="speech_bubble"></div> | |
| 637 | + </li> | |
| 638 | + <li class="second_line move_line"> | |
| 639 | + <div class="wrap"> | |
| 640 | + <div class="title"> | |
| 641 | + <p class="text">결혼 답례 문자</p> | |
| 642 | + </div> | |
| 643 | + <div class="inner_text"> | |
| 644 | + 감사의 말씀을 드립니다. <br> | |
| 645 | + 저희 아들 혼례시 공사간 바쁘심에도 불구하고 많은 축하와 후의를 베풀어 주신 여러분께 진심으로 감사드립니다. <br> | |
| 646 | + 당일 황망 중이라 제대로 챙기지 못하여 결례된 점은 없었는지, 식사는 소홀한 점이 없었는지 걱정이 앞섭니다. <br> | |
| 647 | + 찾아 뵙고 감사의 인사를 드림이 도리이오나 우선 서면으로 대신함을 해량하여 주시기 바랍니다. | |
| 648 | + 앞으로 귀댁의 대소사에 연락하여 주시면 빠짐없이 참석하도록 하겠습니다. <br> | |
| 649 | + 그리고 내내 뜻하신 일들이 잘 성취되시고 가정에 행복과 건강이 함께 하시길 기원하며 감사의 인사를 드립니다. <br> | |
| 650 | + 혼주 ㅇㅇㅇ, ㅇㅇㅇ 올림 | |
| 651 | + <p class="date">PM 7:33</p> | |
| 652 | + </div> | |
| 653 | + </div> | |
| 654 | + <div class="people_01"></div> | |
| 655 | + <div class="speech_bubble"></div> | |
| 656 | + </li> | |
| 657 | + <li class="second_line move_line"> | |
| 658 | + <div class="wrap"> | |
| 659 | + <div class="title"> | |
| 660 | + <p class="text">결혼 답례 문자</p> | |
| 661 | + </div> | |
| 662 | + <div class="inner_text"> | |
| 663 | + 항상 귀댁에 평안과 만복을 기원합니다. <br> | |
| 664 | + 아뢰올 말씀은 지난번 결혼식 때에 바쁘심에도 불구하시고 참석해 주시어 무사히 혼례를 마치게 하여 주신데 대하여 진심으로 감사를 드립니다. <br> | |
| 665 | + 찾아 뵙고 인사드리는 것이 도리이나 우선 문자로 대신하옴을 송구스럽게 생각하오며 내내 건강하시고 하시는 사업이 일익 번창하시기를 기원합니다. | |
| 666 | + 감사합니다. | |
| 667 | + <p class="date">PM 9:50</p> | |
| 668 | + </div> | |
| 669 | + </div> | |
| 670 | + <div class="people_02"></div> | |
| 671 | + <div class="speech_bubble"></div> | |
| 672 | + </li> | |
| 673 | + </ul> | |
| 674 | + </div> | |
| 675 | + | |
| 676 | + <div class="line"></div> | |
| 677 | + | |
| 678 | + <div class="drawing"> | |
| 679 | + <p class="text bold" style="margin: 0 0 8px 0;">[그림문자]</p> | |
| 680 | + <img src="./img/template_v1_manuscript_8_section02_img.png" alt=""> | |
| 681 | + </div> | |
| 682 | + | |
| 683 | + </div> | |
| 684 | + | |
| 685 | + </section> | |
| 686 | + | |
| 687 | + | |
| 688 | + <div class="btn_wrap"> | |
| 689 | + <div class="inner"> | |
| 690 | + <a href="https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do"> 결혼 문자 보내기</a> | |
| 691 | + </div> | |
| 692 | + </div> | |
| 693 | + </div> | |
| 694 | + | |
| 695 | +</body> | |
| 696 | + | |
| 697 | +</html>(No newline at end of file) |
+++ src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_9.html
... | ... | @@ -0,0 +1,109 @@ |
| 1 | +<!DOCTYPE html> | |
| 2 | +<html lang="ko"> | |
| 3 | + | |
| 4 | +<head> | |
| 5 | + <meta charset="UTF-8"> | |
| 6 | + <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| 7 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| 8 | + <title>웹문자 사이트 - 문자온</title> | |
| 9 | + | |
| 10 | + <meta name="Keywords" content="문자전송, 문자발송, SMS, LMS, MMS, 문자보내기, 단체문자, 단체문자전송, 단체문자발송,단체문자사이트,문자사이트, 대량문자"> | |
| 11 | + <meta name="description" content="갤럭시나 아이폰 등 핸드폰(휴대폰)으로 문자를 발송하는 것이 아닌 대량으로 단체에게 문자를 보내기 편하게 서비스를 제공하는 문자 발송 사이트를 말합니다."> | |
| 12 | + <meta property="og:type" content="website"> | |
| 13 | + <meta property="og:title" content="웹문자 사이트 - 문자온"> | |
| 14 | + <meta property="og:description" content="갤럭시나 아이폰 등 핸드폰(휴대폰)으로 문자를 발송하는 것이 아닌 대량으로 단체에게 문자를 보내기 편하게 서비스를 제공하는 문자 발송 사이트를 말합니다."> | |
| 15 | + <link rel="apple-touch-icon" sizes="57x57" href="/publish/images/favicon/apple-icon-57x57.png"> | |
| 16 | + <link rel="apple-touch-icon" sizes="60x60" href="/publish/images/favicon/apple-icon-60x60.png"> | |
| 17 | + <link rel="apple-touch-icon" sizes="72x72" href="/publish/images/favicon/apple-icon-72x72.png"> | |
| 18 | + <link rel="apple-touch-icon" sizes="76x76" href="/publish/images/favicon/apple-icon-76x76.png"> | |
| 19 | + <link rel="apple-touch-icon" sizes="114x114" href="/publish/images/favicon/apple-icon-114x114.png"> | |
| 20 | + <link rel="apple-touch-icon" sizes="120x120" href="/publish/images/favicon/apple-icon-120x120.png"> | |
| 21 | + <link rel="apple-touch-icon" sizes="144x144" href="/publish/images/favicon/apple-icon-144x144.png"> | |
| 22 | + <link rel="apple-touch-icon" sizes="152x152" href="/publish/images/favicon/apple-icon-152x152.png"> | |
| 23 | + <link rel="apple-touch-icon" sizes="180x180" href="/publish/images/favicon/apple-icon-180x180.png"> | |
| 24 | + <link rel="icon" type="image/png" sizes="192x192" href="/publish/images/favicon/android-icon-192x192.png"> | |
| 25 | + <link rel="icon" type="image/png" sizes="32x32" href="/publish/images/favicon/favicon-32x32.png"> | |
| 26 | + <link rel="icon" type="image/png" sizes="96x96" href="/publish/images/favicon/favicon-96x96.png"> | |
| 27 | + <link rel="icon" type="image/png" sizes="16x16" href="/publish/images/favicon/favicon-16x16.png"> | |
| 28 | + <link rel="manifest" href="/publish/images/favicon/manifest.json"> | |
| 29 | + | |
| 30 | + <link rel="stylesheet" href="/publish/publish_adv/css/reset.css"> | |
| 31 | + <link rel="stylesheet" href="/publish/publish_adv/css/style.css"> | |
| 32 | + <link rel="stylesheet" href="/publish/css/font.css"> | |
| 33 | + | |
| 34 | + <script src="/publish/js/jquery-3.5.0.js"></script> | |
| 35 | + <script> | |
| 36 | + function topBtn() {
| |
| 37 | + $("html").scrollTop("0");
| |
| 38 | + } | |
| 39 | + </script> | |
| 40 | +</head> | |
| 41 | + | |
| 42 | +<body> | |
| 43 | + <div class="template_v1_content"> | |
| 44 | + <button type="button" class="top_btn" onclick="topBtn()">▲<br>TOP</button> | |
| 45 | + <header> | |
| 46 | + <div class="inner"> | |
| 47 | + <a href="https://www.munjaon.co.kr"> | |
| 48 | + <h1><img src="/publish/publish_adv/img/template_v1_header_logo.png" alt=""></h1> | |
| 49 | + </a> | |
| 50 | + </div> | |
| 51 | + </header> | |
| 52 | + <div class="visual"> | |
| 53 | + <div class="inner"> | |
| 54 | + <p class="keyword">keyword</p> | |
| 55 | + <h2>웹문자 사이트</h2> | |
| 56 | + </div> | |
| 57 | + </div> | |
| 58 | + <div class="index"> | |
| 59 | + <div class="inner"> | |
| 60 | + <p>목 차</p> | |
| 61 | + <nav> | |
| 62 | + <ul> | |
| 63 | + <li><a href="#section01">웹문자 사이트란?</a></li> | |
| 64 | + <li><a href="#section02">웹문자 사이트를 쓰는 이유</a></li> | |
| 65 | + <li><a href="#section03">웹문자 사이트 이용 시 장점</a></li> | |
| 66 | + </ul> | |
| 67 | + </nav> | |
| 68 | + </div> | |
| 69 | + </div> | |
| 70 | + <section class="section section01" id="section01"> | |
| 71 | + <div class="inner"> | |
| 72 | + <h3>웹문자 사이트란?</h3> | |
| 73 | + <p class="text"> | |
| 74 | + 갤럭시나 아이폰 등 핸드폰(휴대폰)으로 문자를 발송하는 것이 아닌 대량으로 단체에게 문자를 보내기 편하게 서비스를 제공하는 문자 발송 사이트를 말합니다. | |
| 75 | + </p> | |
| 76 | + <img src="/publish/publish_adv/img/template_v1_manuscript_9_section01_img01.png" alt=""> | |
| 77 | + </div> | |
| 78 | + </section> | |
| 79 | + <section class="section section02" id="section02"> | |
| 80 | + <div class="inner"> | |
| 81 | + <h3>웹문자 사이트를 쓰는 이유</h3> | |
| 82 | + <p class="text"> | |
| 83 | + 홍보, 경조사, 선거 등등 많은 분들이 갤럭시나 아이폰 등 가지고 있는 스마트폰을 사용하지 않고 왜 웹문자 사이트를 이용하여 문자메시지를 보내는 걸까요? 우리가 사용하는 이동통신사는 단체문자 동보 전송 가능 수량이라는게 있어서 1회 최대 수량은 100건(통신사마다 상이함)에 불과합니다. 또한 무료문자 제한 기준이라는게 있어서 해당 기준을 넘어갈 경우 단문 메시지 기준으로 건당 약 50원이 부과됩니다. 따라서, 대량으로 단체문자를 보내실 경우에는 문자발송 전용 사이트를 이용하시는 것이 결과적으로 저렴하고 편리한 것입니다.<br><br> | |
| 84 | + </p> | |
| 85 | + <p class="text">- 휴대폰 무료문자 발송 제한사항은 아래 링크를 통해 확인하실 수 있습니다.</p> | |
| 86 | + <p class="send_limit_btn"><a href="https://www.munjaon.co.kr/publish/publish_adv/send_group_text.html#limit">휴대폰 무료문자 발송 제한사항 바로가기</a></p> | |
| 87 | + </div> | |
| 88 | + </section> | |
| 89 | + <section class="section section03" id="section03"> | |
| 90 | + <div class="inner"> | |
| 91 | + <h3>웹문자 사이트 이용 시 장점</h3> | |
| 92 | + <p class="text" style="margin: 0 0 10px 0;">1. 홍보/광고 문자 발송 시 정보통신망법에 따른 광고성 문자 전송규정에 따른 문구를 자동으로 삽입할 수 있다.</p> | |
| 93 | + <p class="text" style="margin: 0 0 10px 0;">2. 홍보/광고 문자 발송 시 080무료수신거부 번호를 무료로 제공받을 수 있고 수신자의 수신거부 발생 시 자동적으로 수신거부 처리를 대행해준다.</p> | |
| 94 | + <p class="text" style="margin: 0 0 10px 0;">3. 주소록 관리를 통해 편리하게 수신자 목록을 관리할 수 있으며 주소록 입력을 대행하는 서비스를 제공한다.</p> | |
| 95 | + <p class="text" style="margin: 0 0 10px 0;">4. 간단한 절차를 통해 제한 없이 문자를 동시 발송할 수 있다.</p> | |
| 96 | + <p class="text" style="margin: 0 0 10px 0;">5. 문자메시지 동시 발송 시 이름, 금액, 일자 등 수신자마다 다른 내용을 발송하는 특정문자 치환 기능을 무료로 이용할 수 있다.</p> | |
| 97 | + </div> | |
| 98 | + </section> | |
| 99 | + | |
| 100 | + <div class="btn_wrap"> | |
| 101 | + <div class="inner"> | |
| 102 | + <a href="https://www.munjaon.co.kr">웹문자</a> | |
| 103 | + </div> | |
| 104 | + </div> | |
| 105 | + </div> | |
| 106 | + | |
| 107 | +</body> | |
| 108 | + | |
| 109 | +</html>(No newline at end of file) |
--- src/main/webapp/publish/publish_adv/css/style.css
+++ src/main/webapp/publish/publish_adv/css/style.css
... | ... | @@ -289,6 +289,15 @@ |
| 289 | 289 |
|
| 290 | 290 |
/*템플릿1_6부고문자추가_공통_끝*/ |
| 291 | 291 |
|
| 292 |
+/*템플릿1_9웹문자 사이트*/ |
|
| 293 |
+.send_limit_btn{margin: 10px 0 0 0;}
|
|
| 294 |
+.send_limit_btn a{margin: 0 0 0 11px; font-size: 18px; font-weight: 500; text-decoration: underline; color: #3c33ab;}
|
|
| 295 |
+ |
|
| 296 |
+/*템플릿1_11문자 사이트*/ |
|
| 297 |
+.con_add .text{font-weight: 400; font-size: 20px;}
|
|
| 298 |
+.con_add .small_text{text-indent: -9px; margin: 6px 0 0 10px; font-size: 16px; line-height: 1.3; color: #5b5b5b;}
|
|
| 299 |
+.con_add .inner img{margin: 15px auto 60px auto; display: block;}
|
|
| 300 |
+ |
|
| 292 | 301 |
/*미디어쿼리 시작*/ |
| 293 | 302 |
/*미디어쿼리_1340px*/ |
| 294 | 303 |
@media screen and (max-width:1340px) {
|
... | ... | @@ -860,6 +869,8 @@ |
| 860 | 869 |
.multi-text-wrap #galaxy .con .step-03{margin-left: 24%;}
|
| 861 | 870 |
.multi-text-wrap #galaxy .con .step-05{margin-left: 24%;}
|
| 862 | 871 |
.multi-text-wrap #galaxy .con .text-04 p{width: 112%; margin-left: -12%;}
|
| 872 |
+ /*템플릿1_10홍보문자추가*/ |
|
| 873 |
+ .content_ten .long .obituary .wrap{height: 415px;}
|
|
| 863 | 874 |
} |
| 864 | 875 |
|
| 865 | 876 |
/*미디어쿼리_710px*/ |
... | ... | @@ -869,6 +880,8 @@ |
| 869 | 880 |
|
| 870 | 881 |
/*템플릿1_6부고문자추가*/ |
| 871 | 882 |
.template_v1_content .long .obituary .wrap{height: 390px;}
|
| 883 |
+ /*템플릿1_10홍보문자추가*/ |
|
| 884 |
+ .content_ten .long .obituary .wrap{height: 415px;}
|
|
| 872 | 885 |
} |
| 873 | 886 |
|
| 874 | 887 |
/*미디어쿼리_690px*/ |
... | ... | @@ -890,6 +903,10 @@ |
| 890 | 903 |
.multi-text-wrap #galaxy .con .step-03{margin-left: 22%;}
|
| 891 | 904 |
.multi-text-wrap #galaxy .con .step-05{margin-left: 22%;}
|
| 892 | 905 |
.multi-text-wrap #galaxy .con .text-04 p{width: 101%; margin-left: -1%;}
|
| 906 |
+ |
|
| 907 |
+ /*템플릿1_11문자 사이트*/ |
|
| 908 |
+ .content_eleven .visual .inner h2{font-size: 40px;}
|
|
| 909 |
+ .con_add .text{font-size: 18px;}
|
|
| 893 | 910 |
} |
| 894 | 911 |
|
| 895 | 912 |
/*미디어쿼리_640px*/ |
... | ... | @@ -915,6 +932,8 @@ |
| 915 | 932 |
.template_v1_content .visual .inner .obituary_te{font-size: 17px; line-height: 1.4;}
|
| 916 | 933 |
.template_v1_content .long .obituary .wrap{height: 420px;}
|
| 917 | 934 |
.template_v1_content .obituary{margin: 20px 0 0 0;}
|
| 935 |
+ /*템플릿1_10홍보문자추가*/ |
|
| 936 |
+ .content_ten .long .obituary .wrap{height: 450px;}
|
|
| 918 | 937 |
} |
| 919 | 938 |
|
| 920 | 939 |
/*미디어쿼리_600px*/ |
... | ... | @@ -1257,6 +1276,12 @@ |
| 1257 | 1276 |
|
| 1258 | 1277 |
/*메인화면 이동 버튼*/ |
| 1259 | 1278 |
.multi-text-wrap .bt-button a{background-color: #002c9a; border-radius: 10px; font-size: 18px; color: #fff; padding: 15px 50px;}
|
| 1279 |
+ |
|
| 1280 |
+ /*템플릿1_9웹문자 사이트*/ |
|
| 1281 |
+ .send_limit_btn a{margin: 0;}
|
|
| 1282 |
+ |
|
| 1283 |
+ /*템플릿1_11문자 사이트*/ |
|
| 1284 |
+ .content_eleven .visual .inner h2{font-size: 30px;}
|
|
| 1260 | 1285 |
} |
| 1261 | 1286 |
|
| 1262 | 1287 |
/*미디워쿼리_320px*/ |
... | ... | @@ -1302,6 +1327,9 @@ |
| 1302 | 1327 |
|
| 1303 | 1328 |
/*템플릿1_6부고문자추가*/ |
| 1304 | 1329 |
.template_v1_content .long .obituary .wrap{height: 430px;}
|
| 1330 |
+ /*템플릿1_10홍보문자추가*/ |
|
| 1331 |
+ .content_ten .long .obituary .wrap{height: 500px;}
|
|
| 1332 |
+ .content_ten .obituary .title .text{font-size: 19px;}
|
|
| 1305 | 1333 |
} |
| 1306 | 1334 |
|
| 1307 | 1335 |
/*미디어쿼리_280px*/ |
+++ src/main/webapp/publish/publish_adv/img/template_v1_manuscript_10_section01_img01.png
| Binary file is not shown |
+++ src/main/webapp/publish/publish_adv/img/template_v1_manuscript_10_section02_img01.png
| Binary file is not shown |
+++ src/main/webapp/publish/publish_adv/img/template_v1_manuscript_10_section03_img01.png
| Binary file is not shown |
+++ src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section01_img01.png
| Binary file is not shown |
+++ src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img01.png
| Binary file is not shown |
+++ src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img02.png
| Binary file is not shown |
+++ src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img03.png
| Binary file is not shown |
+++ src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img04.png
| Binary file is not shown |
+++ src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img05.png
| Binary file is not shown |
+++ src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img06.png
| Binary file is not shown |
+++ src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img07.png
| Binary file is not shown |
+++ src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img08.png
| Binary file is not shown |
+++ src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img09.png
| Binary file is not shown |
+++ src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img10.png
| Binary file is not shown |
+++ src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img11.png
| Binary file is not shown |
+++ src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_logo.png
| Binary file is not shown |
+++ src/main/webapp/publish/publish_adv/img/template_v1_manuscript_8_section02_img.png
| Binary file is not shown |
+++ src/main/webapp/publish/publish_adv/img/template_v1_manuscript_8_section03_img.png
| Binary file is not shown |
+++ src/main/webapp/publish/publish_adv/img/template_v1_manuscript_9_section01_img01.png
| Binary file is not shown |
+++ src/main/webapp/publish/sub_election_2023.html
... | ... | @@ -0,0 +1,3171 @@ |
| 1 | +<!DOCTYPE html> | |
| 2 | +<html lang="ko"> | |
| 3 | + | |
| 4 | +<head> | |
| 5 | + <meta charset="UTF-8"> | |
| 6 | + <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| 7 | + <title>문자온_선거전송</title> | |
| 8 | + | |
| 9 | + <link href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap" rel="stylesheet"> | |
| 10 | + <link rel="stylesheet" href="/publish/css/reset.css"> | |
| 11 | + <link rel="stylesheet" href="/publish/css/jquery.mCustomScrollbar.css"> | |
| 12 | + <link rel="stylesheet" href="/publish/css/common.css"> | |
| 13 | + <link rel="stylesheet" href="/publish/css/button.css"> | |
| 14 | + <link rel="stylesheet" href="/publish/css/content.css"> | |
| 15 | + <link rel="stylesheet" href="/publish/css/font.css"> | |
| 16 | + <link rel="stylesheet" href="/publish/css/popupLayer.css"> | |
| 17 | + | |
| 18 | + <script src="/publish/js/jquery-3.5.0.js"></script> | |
| 19 | + <script src="/publish/js/jquery.mCustomScrollbar.concat.min.js"></script> | |
| 20 | + <script src="/publish/js/common.js"></script> | |
| 21 | + <script src="/publish/js/content.js"></script> | |
| 22 | + <script src="/publish/js/popup.js"></script> | |
| 23 | + <script src="/publish/js/popupLayer.js"></script> | |
| 24 | + <script src="/publish/js/publish.js"></script> | |
| 25 | + | |
| 26 | + | |
| 27 | + <!-- 외부 script / css --> | |
| 28 | + <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script> | |
| 29 | + <link rel="stylesheet" href="//code.jquery.com/ui/1.13.2/themes/base/jquery-ui.css"> | |
| 30 | + | |
| 31 | + <script> | |
| 32 | + $(document).ready(function () { | |
| 33 | + $(".receipt_number_table tbody").selectable({ | |
| 34 | + selecting: function (event, ui) { | |
| 35 | + $(ui.selecting).find("input[type='checkbox']").attr("checked", "checked"); | |
| 36 | + }, | |
| 37 | + selected: function (event, ui) { | |
| 38 | + if ($(ui.selected).find("input[type='checkbox']").attr("checked") == true) { | |
| 39 | + $(ui.selected).find("input[type='checkbox']").removeAttr("checked"); | |
| 40 | + } else { | |
| 41 | + $(ui.selected).find("input[type='checkbox']").attr("checked", "checked"); | |
| 42 | + } | |
| 43 | + }, | |
| 44 | + unselecting: function (event, ui) { | |
| 45 | + $(ui.unselecting).find("input[type='checkbox']").removeAttr("checked"); | |
| 46 | + }, | |
| 47 | + unselected: function (event, ui) { | |
| 48 | + $(ui.unselected).find("input[type='checkbox']").removeAttr("checked"); | |
| 49 | + }, | |
| 50 | + filter: "td" | |
| 51 | + }); | |
| 52 | + | |
| 53 | + $(".receipt_number_table tbody tr.ui-selectee").removeClass("ui-selectee"); | |
| 54 | + | |
| 55 | + onlongclick(".btn_check_one", 1000, function () { | |
| 56 | + var checkbox = $('[name=receipt_number_check]'); | |
| 57 | + publishCommon.longMousePressCheck(checkbox, 10); | |
| 58 | + }); | |
| 59 | + | |
| 60 | + $(".btn_check_one").click(function(){ | |
| 61 | + var checkbox = $('[name=receipt_number_check]'); | |
| 62 | + publishCommon.clickCheck(checkbox); | |
| 63 | + }); | |
| 64 | + | |
| 65 | + }); | |
| 66 | + </script> | |
| 67 | + | |
| 68 | +</head> | |
| 69 | + | |
| 70 | +<body> | |
| 71 | + | |
| 72 | + <div class="mask"></div> | |
| 73 | + | |
| 74 | + <!-- 전송내역 팝업 --> | |
| 75 | + <div class="tooltip-wrap"> | |
| 76 | + <div class="popup-com history_layer popup03" tabindex="0" data-tooltip-con="popup03" data-focus="popup03" data-focus-prev="popup03-close"> | |
| 77 | + <div class="popup_heading"> | |
| 78 | + <p><span>전송내역</p> | |
| 79 | + <button type="button" class="tooltip-close" data-focus="popup02-close"><img src="/publish/images/content/layerPopup_close.png" alt="팝업 닫기"></button> | |
| 80 | + </div> | |
| 81 | + <div class="layer_in"> | |
| 82 | + <!-- tab button --> | |
| 83 | + <ul class="tabType6"> | |
| 84 | + <li class="tab active"><button type="button" onclick="TabType(this,'1');">최근 전송내역</button></li> | |
| 85 | + <li class="tab"><button type="button" onclick="TabType(this,'2');">자주보내는 번호</button></li> | |
| 86 | + </ul> | |
| 87 | + <!--// tab button --> | |
| 88 | + <!-- 최근 전송내역 --> | |
| 89 | + <div class="history_cont current hascont"> | |
| 90 | + <div class="histroy_trans" id="latestMsgArea"> | |
| 91 | + <ul> | |
| 92 | + <li> | |
| 93 | + <input type="checkbox" id=""> | |
| 94 | + <label for="" class="label">최근 전송내역</label> | |
| 95 | + <p>010-1234-5678</p> | |
| 96 | + <button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button> | |
| 97 | + </li> | |
| 98 | + <li> | |
| 99 | + <input type="checkbox" id=""> | |
| 100 | + <label for="" class="label">최근 전송내역</label> | |
| 101 | + <p>010-1234-5678</p> | |
| 102 | + <button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button> | |
| 103 | + </li> | |
| 104 | + <li> | |
| 105 | + <input type="checkbox" id=""> | |
| 106 | + <label for="" class="label">최근 전송내역</label> | |
| 107 | + <p>010-1234-5678</p> | |
| 108 | + <button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button> | |
| 109 | + </li> | |
| 110 | + <li> | |
| 111 | + <input type="checkbox" id=""> | |
| 112 | + <label for="" class="label">최근 전송내역</label> | |
| 113 | + <p>010-1234-5678</p> | |
| 114 | + <button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button> | |
| 115 | + </li> | |
| 116 | + <li> | |
| 117 | + <input type="checkbox" id=""> | |
| 118 | + <label for="" class="label">최근 전송내역</label> | |
| 119 | + <p>010-1234-5678</p> | |
| 120 | + <button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button> | |
| 121 | + </li> | |
| 122 | + <li> | |
| 123 | + <input type="checkbox" id=""> | |
| 124 | + <label for="" class="label">최근 전송내역</label> | |
| 125 | + <p>010-1234-5678</p> | |
| 126 | + <button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button> | |
| 127 | + </li> | |
| 128 | + <li> | |
| 129 | + <input type="checkbox" id=""> | |
| 130 | + <label for="" class="label">최근 전송내역</label> | |
| 131 | + <p>010-1234-5678</p> | |
| 132 | + <button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button> | |
| 133 | + </li> | |
| 134 | + <li> | |
| 135 | + <input type="checkbox" id=""> | |
| 136 | + <label for="" class="label">최근 전송내역</label> | |
| 137 | + <p>010-1234-5678</p> | |
| 138 | + <button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button> | |
| 139 | + </li> | |
| 140 | + <li> | |
| 141 | + <input type="checkbox" id=""> | |
| 142 | + <label for="" class="label">최근 전송내역</label> | |
| 143 | + <p>010-1234-5678</p> | |
| 144 | + <button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button> | |
| 145 | + </li> | |
| 146 | + <li> | |
| 147 | + <input type="checkbox" id=""> | |
| 148 | + <label for="" class="label">최근 전송내역</label> | |
| 149 | + <p>010-1234-5678</p> | |
| 150 | + <button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button> | |
| 151 | + </li> | |
| 152 | + <li> | |
| 153 | + <input type="checkbox" id=""> | |
| 154 | + <label for="" class="label">최근 전송내역</label> | |
| 155 | + <p>010-1234-5678</p> | |
| 156 | + <button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button> | |
| 157 | + </li> | |
| 158 | + <li> | |
| 159 | + <input type="checkbox" id=""> | |
| 160 | + <label for="" class="label">최근 전송내역</label> | |
| 161 | + <p>010-1234-5678</p> | |
| 162 | + <button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button> | |
| 163 | + </li> | |
| 164 | + <li> | |
| 165 | + <input type="checkbox" id=""> | |
| 166 | + <label for="" class="label">최근 전송내역</label> | |
| 167 | + <p>010-1234-5678</p> | |
| 168 | + <button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button> | |
| 169 | + </li> | |
| 170 | + <li> | |
| 171 | + <input type="checkbox" id=""> | |
| 172 | + <label for="" class="label">최근 전송내역</label> | |
| 173 | + <p>010-1234-5678</p> | |
| 174 | + <button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button> | |
| 175 | + </li> | |
| 176 | + <li> | |
| 177 | + <input type="checkbox" id=""> | |
| 178 | + <label for="" class="label">최근 전송내역</label> | |
| 179 | + <p>010-1234-5678</p> | |
| 180 | + <button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button> | |
| 181 | + </li> | |
| 182 | + <li> | |
| 183 | + <input type="checkbox" id=""> | |
| 184 | + <label for="" class="label">최근 전송내역</label> | |
| 185 | + <p>010-1234-5678</p> | |
| 186 | + <button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button> | |
| 187 | + </li> | |
| 188 | + <li> | |
| 189 | + <input type="checkbox" id=""> | |
| 190 | + <label for="" class="label">최근 전송내역</label> | |
| 191 | + <p>010-1234-5678</p> | |
| 192 | + <button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button> | |
| 193 | + </li> | |
| 194 | + </ul> | |
| 195 | + </div> | |
| 196 | + <div class="popup_btn_wrap2 hisroy_btn"> | |
| 197 | + <button type="button">선택추가</button> | |
| 198 | + <button type="button">선택취소</button> | |
| 199 | + </div> | |
| 200 | + </div> | |
| 201 | + <!--// 최근 전송내역 --> | |
| 202 | + <!-- 자주보내는 번호 --> | |
| 203 | + <div class="history_cont hascont"> | |
| 204 | + <div class="histroy_trans" id="bookMarkMsgArea"> | |
| 205 | + <ul> | |
| 206 | + <li> | |
| 207 | + <input type="checkbox" id=""> | |
| 208 | + <label for="" class="label">최근 전송내역</label> | |
| 209 | + <p>010-1234-5678</p> | |
| 210 | + <button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button> | |
| 211 | + </li> | |
| 212 | + <li> | |
| 213 | + <input type="checkbox" id=""> | |
| 214 | + <label for="" class="label">최근 전송내역</label> | |
| 215 | + <p>010-1234-5678</p> | |
| 216 | + <button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button> | |
| 217 | + </li> | |
| 218 | + <li> | |
| 219 | + <input type="checkbox" id=""> | |
| 220 | + <label for="" class="label">최근 전송내역</label> | |
| 221 | + <p>010-1234-5678</p> | |
| 222 | + <button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button> | |
| 223 | + </li> | |
| 224 | + <li> | |
| 225 | + <input type="checkbox" id=""> | |
| 226 | + <label for="" class="label">최근 전송내역</label> | |
| 227 | + <p>010-1234-5678</p> | |
| 228 | + <button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button> | |
| 229 | + </li> | |
| 230 | + <li> | |
| 231 | + <input type="checkbox" id=""> | |
| 232 | + <label for="" class="label">최근 전송내역</label> | |
| 233 | + <p>010-1234-5678</p> | |
| 234 | + <button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button> | |
| 235 | + </li> | |
| 236 | + <li> | |
| 237 | + <input type="checkbox" id=""> | |
| 238 | + <label for="" class="label">최근 전송내역</label> | |
| 239 | + <p>010-1234-5678</p> | |
| 240 | + <button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button> | |
| 241 | + </li> | |
| 242 | + <li> | |
| 243 | + <input type="checkbox" id=""> | |
| 244 | + <label for="" class="label">최근 전송내역</label> | |
| 245 | + <p>010-1234-5678</p> | |
| 246 | + <button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button> | |
| 247 | + </li> | |
| 248 | + <li> | |
| 249 | + <input type="checkbox" id=""> | |
| 250 | + <label for="" class="label">최근 전송내역</label> | |
| 251 | + <p>010-1234-5678</p> | |
| 252 | + <button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button> | |
| 253 | + </li> | |
| 254 | + <li> | |
| 255 | + <input type="checkbox" id=""> | |
| 256 | + <label for="" class="label">최근 전송내역</label> | |
| 257 | + <p>010-1234-5678</p> | |
| 258 | + <button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button> | |
| 259 | + </li> | |
| 260 | + <li> | |
| 261 | + <input type="checkbox" id=""> | |
| 262 | + <label for="" class="label">최근 전송내역</label> | |
| 263 | + <p>010-1234-5678</p> | |
| 264 | + <button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button> | |
| 265 | + </li> | |
| 266 | + <li> | |
| 267 | + <input type="checkbox" id=""> | |
| 268 | + <label for="" class="label">최근 전송내역</label> | |
| 269 | + <p>010-1234-5678</p> | |
| 270 | + <button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button> | |
| 271 | + </li> | |
| 272 | + <li> | |
| 273 | + <input type="checkbox" id=""> | |
| 274 | + <label for="" class="label">최근 전송내역</label> | |
| 275 | + <p>010-1234-5678</p> | |
| 276 | + <button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button> | |
| 277 | + </li> | |
| 278 | + <li> | |
| 279 | + <input type="checkbox" id=""> | |
| 280 | + <label for="" class="label">최근 전송내역</label> | |
| 281 | + <p>010-1234-5678</p> | |
| 282 | + <button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button> | |
| 283 | + </li> | |
| 284 | + <li> | |
| 285 | + <input type="checkbox" id=""> | |
| 286 | + <label for="" class="label">최근 전송내역</label> | |
| 287 | + <p>010-1234-5678</p> | |
| 288 | + <button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button> | |
| 289 | + </li> | |
| 290 | + <li> | |
| 291 | + <input type="checkbox" id=""> | |
| 292 | + <label for="" class="label">최근 전송내역</label> | |
| 293 | + <p>010-1234-5678</p> | |
| 294 | + <button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button> | |
| 295 | + </li> | |
| 296 | + <li> | |
| 297 | + <input type="checkbox" id=""> | |
| 298 | + <label for="" class="label">최근 전송내역</label> | |
| 299 | + <p>010-1234-5678</p> | |
| 300 | + <button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button> | |
| 301 | + </li> | |
| 302 | + <li> | |
| 303 | + <input type="checkbox" id=""> | |
| 304 | + <label for="" class="label">최근 전송내역</label> | |
| 305 | + <p>010-1234-5678</p> | |
| 306 | + <button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button> | |
| 307 | + </li> | |
| 308 | + </ul> | |
| 309 | + </div> | |
| 310 | + <div class="popup_btn_wrap2 hisroy_btn"> | |
| 311 | + <button type="button">선택추가</button> | |
| 312 | + <button type="button">선택취소</button> | |
| 313 | + </div> | |
| 314 | + </div> | |
| 315 | + <!--// 자주보내는 번호 --> | |
| 316 | + </div> | |
| 317 | + </div> | |
| 318 | + </div> | |
| 319 | + <!--// 전송내역 팝업 --> | |
| 320 | + | |
| 321 | + <!-- 엑셀 불러오기 --> | |
| 322 | + <div class="tooltip-wrap"> | |
| 323 | + <div class="popup-com import_layer popup02" tabindex="0" data-tooltip-con="popup02" data-focus="popup02" data-focus-prev="popup02-close"> | |
| 324 | + <div class="popup_heading"> | |
| 325 | + <p><span>엑셀</span> 불러오기</p> | |
| 326 | + <button type="button" class="tooltip-close" data-focus="popup02-close"><img src="/publish/images/content/layerPopup_close.png" alt="팝업 닫기"></button> | |
| 327 | + </div> | |
| 328 | + <div class="layer_in"> | |
| 329 | + <!-- 엑셀파일 불러오기 --> | |
| 330 | + <div class="hascont"> | |
| 331 | + <div class="titBox"> | |
| 332 | + <p>- 최대 2만 건까지 등록할 수 있습니다.</p> | |
| 333 | + <p>- [엑셀 불러오기]시 문서의 A, B, C, D열을 불러옵니다.(지원하는 파일 형식 : xls, xlsx)</p> | |
| 334 | + <p>- 이름 : 20byte, [*1*] [*2*] : 100byte까지 입력 가능합니다.</p> | |
| 335 | + <p>- 휴대폰 항목은 숫자, 하이픈(-)만 인식하며, 번호 앞에 0이 생략되어도 정상 등록됩니다. | |
| 336 | + </p> | |
| 337 | + <button type="button" class="excel_btn"><i></i>샘플파일 다운로드</button> | |
| 338 | + </div> | |
| 339 | + <div class="attachedFile"> | |
| 340 | + <label for="" class="attachedFile_label">첨부파일</label> | |
| 341 | + <input type="text" readonly> | |
| 342 | + <button type="button" class="btnType btnType6">찾아보기</button> | |
| 343 | + <p><span class="vMiddle">*</span> 첨부된 파일은 <span class="c_e40000">[추가]버튼을 클릭</span>하셔야 받는 사람에 등록됩니다.</p> | |
| 344 | + </div> | |
| 345 | + </div> | |
| 346 | + <!--// 엑셀파일 불러오기 --> | |
| 347 | + <div class="popup_btn_wrap2"> | |
| 348 | + <button type="button">추가</button> | |
| 349 | + <button type="button" class="tooltip-close" data-focus="popup02-close" data-focus-next="popup02">닫기</button> | |
| 350 | + </div> | |
| 351 | + </div> | |
| 352 | + </div> | |
| 353 | + </div> | |
| 354 | + <!--// 엑셀 불러오기 --> | |
| 355 | + | |
| 356 | + <!-- 주소록 불러오기 --> | |
| 357 | + <div class="tooltip-wrap"> | |
| 358 | + <div class="popup-com import_layer popup06" tabindex="0" data-tooltip-con="popup06" data-focus="popup06" data-focus-prev="popup06-close" style="width: 1000px"> | |
| 359 | + <div class="popup_heading"> | |
| 360 | + <p><span>주소록 불러오기</p> | |
| 361 | + <button type="button" class="tooltip-close" data-focus="popup06-close"><img src="/publish/images/content/layerPopup_close.png" alt="팝업 닫기"></button> | |
| 362 | + </div> | |
| 363 | + <div class="layer_in"> | |
| 364 | + <div class="titBox"> | |
| 365 | + <p>- 주소록 수정 및 변경은 <span>[주소록 관리]</span>에서만 가능합니다.</p> | |
| 366 | + <button type="button" class="adr_admin">주소록 관리</button> | |
| 367 | + </div> | |
| 368 | + <div class="adr_wrap"> | |
| 369 | + <div class="adr_pop_left"> | |
| 370 | + <div class="adr_left_search"> | |
| 371 | + <label for="" class="label">그룹명 검색</label> | |
| 372 | + <input type="text" placeholder="그룹명 검색" onfocus="this.placeholder=''" onblur="this.placeholder='그룹명 검색'" class="inputLight"> | |
| 373 | + <button type="button"><img src="/publish/images/popup/search.png" alt="검색"></button> | |
| 374 | + </div> | |
| 375 | + <div class="adr_pop_box"> | |
| 376 | + <div> | |
| 377 | + <div class="adr_cb_wrap2"> | |
| 378 | + <p><img src="/publish/images/content/close_folder2.png" alt="폴더 닫힘">전체[<span>50</span>명]</p> | |
| 379 | + </div> | |
| 380 | + </div> | |
| 381 | + <div class="adr_pop_list"> | |
| 382 | + <div class="adr_cb_wrap2 active"> | |
| 383 | + <p><img src="/publish/images/content/open_folder2.png" alt="폴더 열림">그룹미지정[<span>10</span>명]</p> | |
| 384 | + </div> | |
| 385 | + <div class="adr_cb_wrap2"> | |
| 386 | + <p><img src="/publish/images/content/close_folder2.png" alt="폴더 닫힘">자주보내는 번호가 맞나요? 확실한가요?[<span>20</span>명]</p> | |
| 387 | + </div> | |
| 388 | + <div class="adr_cb_wrap2"> | |
| 389 | + <p><img src="/publish/images/content/close_folder2.png" alt="폴더 닫힘">직장[<span>20</span>명]</p> | |
| 390 | + </div> | |
| 391 | + <div class="adr_cb_wrap2"> | |
| 392 | + <p><img src="/publish/images/content/close_folder2.png" alt="폴더 닫힘">친구[<span>20</span>명]</p> | |
| 393 | + </div> | |
| 394 | + <div class="adr_cb_wrap2"> | |
| 395 | + <p><img src="/publish/images/content/close_folder2.png" alt="폴더 닫힘">자주보내는 번호[<span>20</span>명]</p> | |
| 396 | + </div> | |
| 397 | + <div class="adr_cb_wrap2"> | |
| 398 | + <p><img src="/publish/images/content/close_folder2.png" alt="폴더 닫힘">자주보내는 번호[<span>20</span>명]</p> | |
| 399 | + </div> | |
| 400 | + <div class="adr_cb_wrap2"> | |
| 401 | + <p><img src="/publish/images/content/close_folder2.png" alt="폴더 닫힘">자주보내는 번호[<span>20</span>명]</p> | |
| 402 | + </div> | |
| 403 | + <div class="adr_cb_wrap2"> | |
| 404 | + <p><img src="/publish/images/content/close_folder2.png" alt="폴더 닫힘">자주보내는 번호[<span>20</span>명]</p> | |
| 405 | + </div> | |
| 406 | + <div class="adr_cb_wrap2"> | |
| 407 | + <p><img src="/publish/images/content/close_folder2.png" alt="폴더 닫힘">친구[<span>100</span>명]</p> | |
| 408 | + </div> | |
| 409 | + <div class="adr_cb_wrap2"> | |
| 410 | + <p><img src="/publish/images/content/close_folder2.png" alt="폴더 닫힘">친구[<span>100</span>명]</p> | |
| 411 | + </div> | |
| 412 | + <div class="adr_cb_wrap2"> | |
| 413 | + <p><img src="/publish/images/content/close_folder2.png" alt="폴더 닫힘">친구[<span>100</span>명]</p> | |
| 414 | + </div> | |
| 415 | + <div class="adr_cb_wrap2"> | |
| 416 | + <p><img src="/publish/images/content/close_folder2.png" alt="폴더 닫힘">친구[<span>100</span>명]</p> | |
| 417 | + </div> | |
| 418 | + </div> | |
| 419 | + </div> | |
| 420 | + <div class="popup_btn"> | |
| 421 | + <button type="button" class="btnType">선택 그룹 추가</button> | |
| 422 | + </div> | |
| 423 | + </div> | |
| 424 | + <div class="adr_pop_right"> | |
| 425 | + <div class="clearfix"> | |
| 426 | + <div class="btnWrap_last"> | |
| 427 | + <label for="" class="label">카테고리 선택</label> | |
| 428 | + <select id="" class="selType2"> | |
| 429 | + <option>전체</option> | |
| 430 | + </select> | |
| 431 | + <label for="" class="label">검색어 입력</label> | |
| 432 | + <input type="text" placeholder="검색어를 입력하세요" onfocus="this.placeholder=''" onblur="this.placeholder='검색어를 입력하세요'"> | |
| 433 | + <button type="button" class="btnType btnType17">검색</button> | |
| 434 | + </div> | |
| 435 | + <!-- table --> | |
| 436 | + <div class="adr_excel adr_pop_list2"> | |
| 437 | + <!-- thead --> | |
| 438 | + <div class="adr_hd"> | |
| 439 | + <div> | |
| 440 | + <label for="" class="label">전체 선택</label> | |
| 441 | + <input type="checkbox"> | |
| 442 | + </div> | |
| 443 | + <div> | |
| 444 | + 그룹명 | |
| 445 | + <div class="sort_wrap"> | |
| 446 | + <button type="button"><img src="/publish/images/sortUp.png" alt="오름차순으로 분류"></button> | |
| 447 | + <button type="button"><img src="/publish/images/sortDown.png" alt="내림차순으로 분류"></button> | |
| 448 | + </div> | |
| 449 | + </div> | |
| 450 | + <div> | |
| 451 | + 이름 | |
| 452 | + <div class="sort_wrap"> | |
| 453 | + <button type="button"><img src="/publish/images/sortUp.png" alt="오름차순으로 분류"></button> | |
| 454 | + <button type="button"><img src="/publish/images/sortDown.png" alt="내림차순으로 분류"></button> | |
| 455 | + </div> | |
| 456 | + </div> | |
| 457 | + <div> | |
| 458 | + 휴대폰번호 | |
| 459 | + <div class="sort_wrap"> | |
| 460 | + <button type="button"><img src="/publish/images/sortUp.png" alt="오름차순으로 분류"></button> | |
| 461 | + <button type="button"><img src="/publish/images/sortDown.png" alt="내림차순으로 분류"></button> | |
| 462 | + </div> | |
| 463 | + </div> | |
| 464 | + <div>[*1*]</div> | |
| 465 | + <div>[*2*]</div> | |
| 466 | + <div>[*3*]</div> | |
| 467 | + <div>[*4*]</div> | |
| 468 | + </div> | |
| 469 | + <!-- tbody --> | |
| 470 | + <div class="adr_bd_wrap"> | |
| 471 | + <div class="adr_bd"> | |
| 472 | + <div> | |
| 473 | + <label for="" class="label">한 줄 선택</label> | |
| 474 | + <input type="checkbox"> | |
| 475 | + </div> | |
| 476 | + <div>가족</div> | |
| 477 | + <div>홍길동</div> | |
| 478 | + <div>010-1234-5678</div> | |
| 479 | + <div>변수1</div> | |
| 480 | + <div>변수2</div> | |
| 481 | + <div>변수3</div> | |
| 482 | + <div>변수4</div> | |
| 483 | + </div> | |
| 484 | + <div class="adr_bd"> | |
| 485 | + <div> | |
| 486 | + <label for="" class="label">한 줄 선택</label> | |
| 487 | + <input type="checkbox"> | |
| 488 | + </div> | |
| 489 | + <div>가족</div> | |
| 490 | + <div>홍길동</div> | |
| 491 | + <div>010-1234-5678</div> | |
| 492 | + <div>변수1</div> | |
| 493 | + <div>변수2</div> | |
| 494 | + <div>변수3</div> | |
| 495 | + <div>변수4</div> | |
| 496 | + </div> | |
| 497 | + <div class="adr_bd"> | |
| 498 | + <div> | |
| 499 | + <label for="" class="label">한 줄 선택</label> | |
| 500 | + <input type="checkbox"> | |
| 501 | + </div> | |
| 502 | + <div>가족</div> | |
| 503 | + <div>홍길동</div> | |
| 504 | + <div>010-1234-5678</div> | |
| 505 | + <div>변수1</div> | |
| 506 | + <div>변수2</div> | |
| 507 | + <div>변수3</div> | |
| 508 | + <div>변수4</div> | |
| 509 | + </div> | |
| 510 | + <div class="adr_bd"> | |
| 511 | + <div> | |
| 512 | + <label for="" class="label">한 줄 선택</label> | |
| 513 | + <input type="checkbox"> | |
| 514 | + </div> | |
| 515 | + <div>가족</div> | |
| 516 | + <div>홍길동</div> | |
| 517 | + <div>010-1234-5678</div> | |
| 518 | + <div>변수1</div> | |
| 519 | + <div>변수2</div> | |
| 520 | + <div>변수3</div> | |
| 521 | + <div>변수4</div> | |
| 522 | + </div> | |
| 523 | + <div class="adr_bd"> | |
| 524 | + <div> | |
| 525 | + <label for="" class="label">한 줄 선택</label> | |
| 526 | + <input type="checkbox"> | |
| 527 | + </div> | |
| 528 | + <div>가족</div> | |
| 529 | + <div>홍길동</div> | |
| 530 | + <div>010-1234-5678</div> | |
| 531 | + <div>변수1</div> | |
| 532 | + <div>변수2</div> | |
| 533 | + <div>변수3</div> | |
| 534 | + <div>변수4</div> | |
| 535 | + </div> | |
| 536 | + <div class="adr_bd"> | |
| 537 | + <div> | |
| 538 | + <label for="" class="label">한 줄 선택</label> | |
| 539 | + <input type="checkbox"> | |
| 540 | + </div> | |
| 541 | + <div>가족</div> | |
| 542 | + <div>홍길동</div> | |
| 543 | + <div>010-1234-5678</div> | |
| 544 | + <div>변수1</div> | |
| 545 | + <div>변수2</div> | |
| 546 | + <div>변수3</div> | |
| 547 | + <div>변수4</div> | |
| 548 | + </div> | |
| 549 | + <div class="adr_bd"> | |
| 550 | + <div> | |
| 551 | + <label for="" class="label">한 줄 선택</label> | |
| 552 | + <input type="checkbox"> | |
| 553 | + </div> | |
| 554 | + <div>가족</div> | |
| 555 | + <div>홍길동</div> | |
| 556 | + <div>010-1234-5678</div> | |
| 557 | + <div>변수1</div> | |
| 558 | + <div>변수2</div> | |
| 559 | + <div>변수3</div> | |
| 560 | + <div>변수4</div> | |
| 561 | + </div> | |
| 562 | + <div class="adr_bd"> | |
| 563 | + <div> | |
| 564 | + <label for="" class="label">한 줄 선택</label> | |
| 565 | + <input type="checkbox"> | |
| 566 | + </div> | |
| 567 | + <div>가족</div> | |
| 568 | + <div>홍길동</div> | |
| 569 | + <div>010-1234-5678</div> | |
| 570 | + <div>변수1</div> | |
| 571 | + <div>변수2</div> | |
| 572 | + <div>변수3</div> | |
| 573 | + <div>변수4</div> | |
| 574 | + </div> | |
| 575 | + <div class="adr_bd"> | |
| 576 | + <div> | |
| 577 | + <label for="" class="label">한 줄 선택</label> | |
| 578 | + <input type="checkbox"> | |
| 579 | + </div> | |
| 580 | + <div>가족</div> | |
| 581 | + <div>홍길동</div> | |
| 582 | + <div>010-1234-5678</div> | |
| 583 | + <div>변수1</div> | |
| 584 | + <div>변수2</div> | |
| 585 | + <div>변수3</div> | |
| 586 | + <div>변수4</div> | |
| 587 | + </div> | |
| 588 | + <div class="adr_bd"> | |
| 589 | + <div> | |
| 590 | + <label for="" class="label">한 줄 선택</label> | |
| 591 | + <input type="checkbox"> | |
| 592 | + </div> | |
| 593 | + <div>가족</div> | |
| 594 | + <div>홍길동</div> | |
| 595 | + <div>010-1234-5678</div> | |
| 596 | + <div>변수1</div> | |
| 597 | + <div>변수2</div> | |
| 598 | + <div>변수3</div> | |
| 599 | + <div>변수4</div> | |
| 600 | + </div> | |
| 601 | + <div class="adr_bd"> | |
| 602 | + <div> | |
| 603 | + <label for="" class="label">한 줄 선택</label> | |
| 604 | + <input type="checkbox"> | |
| 605 | + </div> | |
| 606 | + <div>가족</div> | |
| 607 | + <div>홍길동</div> | |
| 608 | + <div>010-1234-5678</div> | |
| 609 | + <div>변수1</div> | |
| 610 | + <div>변수2</div> | |
| 611 | + <div>변수3</div> | |
| 612 | + <div>변수4</div> | |
| 613 | + </div> | |
| 614 | + <div class="adr_bd"> | |
| 615 | + <div> | |
| 616 | + <label for="" class="label">한 줄 선택</label> | |
| 617 | + <input type="checkbox"> | |
| 618 | + </div> | |
| 619 | + <div>가족</div> | |
| 620 | + <div>홍길동</div> | |
| 621 | + <div>010-1234-5678</div> | |
| 622 | + <div>변수1</div> | |
| 623 | + <div>변수2</div> | |
| 624 | + <div>변수3</div> | |
| 625 | + <div>변수4</div> | |
| 626 | + </div> | |
| 627 | + </div> | |
| 628 | + </div> | |
| 629 | + <!--// table --> | |
| 630 | + </div> | |
| 631 | + <div class="popup_btn_wrap2"> | |
| 632 | + <button type="button">추가</button> | |
| 633 | + <button type="button" class="tooltip-close" data-focus="popup06-close" data-focus-next="popup06">닫기</button> | |
| 634 | + </div> | |
| 635 | + </div> | |
| 636 | + </div> | |
| 637 | + </div> | |
| 638 | + </div> | |
| 639 | + </div> | |
| 640 | + <!--// 주소록 불러오기 --> | |
| 641 | + | |
| 642 | + <!--광고문자 관련법규 안내 팝업 --> | |
| 643 | + <div class="tooltip-wrap"> | |
| 644 | + <div class="popup-com ad_layer adpopup01" tabindex="0" data-tooltip-con="adpopup01" data-focus="adpopup01" data-focus-prev="adpopup01-close" style="width: 795px"> | |
| 645 | + <div class="popup_heading"> | |
| 646 | + <p>광고문자 관련법규 안내</p> | |
| 647 | + <button type="button" class="tooltip-close" data-focus="adpopup01-close"><img src="/publish/images/content/layerPopup_close.png" alt="팝업 닫기"></button> | |
| 648 | + </div> | |
| 649 | + <div class="layer_in"> | |
| 650 | + <div class="list_tab_wrap2 type5"> | |
| 651 | + <!-- tab button --> | |
| 652 | + <ul class="list_tab"> | |
| 653 | + <li class="tab active"><button type="button" onclick="listTab2(this,'1');">광고문자 전송규정 안내</button></li> | |
| 654 | + <li class="tab"><button type="button" onclick="listTab2(this,'2');">광고문자 수신동의 안내</button></li> | |
| 655 | + </ul> | |
| 656 | + <!--// tab button --> | |
| 657 | + </div> | |
| 658 | + <!-- 광고문자 전송규정 안내 --> | |
| 659 | + <div class="adpop_cont current" id="listTab2_1"> | |
| 660 | + <div class="adpop1_top"> | |
| 661 | + <div> | |
| 662 | + <p>의무사항</p> | |
| 663 | + <div> | |
| 664 | + <p>메시지 시작 부분에 (광고) 문구 표기<span>(광/고), (광 고), [광고], (00광고) 등과 같이 변칙 | |
| 665 | + 표기 금지</span></p> | |
| 666 | + <p>업체명, 연락처, 무료거부 표기<span>“업체명”이 기재될 경우 연락처 및 무료거부 표기가 | |
| 667 | + 없더라도 100% 광고문자로 간주</span></p> | |
| 668 | + <p>광고문자 전송시간<span>오전 8시부터 오후 9시까지만 전송 가능<br> | |
| 669 | + ※ 오후 9시 이후에는 광고문자 전송 불가</span></p> | |
| 670 | + </div> | |
| 671 | + </div> | |
| 672 | + </div> | |
| 673 | + <div class="adpop1_middle"> | |
| 674 | + <p>2015년 5월부터 광고전송에 대한 (광고)표시 의무가 본격 시행되었습니다.<br> | |
| 675 | + 자세한 관련 법규 관련 사항은 아래 한국인터넷진흥원(KISA)에서 제공하는 안내서를 참고하시기 바랍니다.</p> | |
| 676 | + <button type="button">불법스팸방지 안내서 5차 개정판</button> | |
| 677 | + <span>* 출처 : KISA 한국인터넷진흥원</span> | |
| 678 | + </div> | |
| 679 | + <div class="adpop1_bottom"> | |
| 680 | + <p>광고문자의 범위는 어디서부터 어디까지인가요?</p> | |
| 681 | + <div> | |
| 682 | + <div> | |
| 683 | + <p>영리목적의 광고성 정보 범위</p> | |
| 684 | + <p>· 영업을 하는 자가 고객에게 보내는 정보는 원칙적으로 모두 광고성 정보로 간주<br> | |
| 685 | + · 주된 정보가 광고성 정보가 아니더라도 부수적으로 광고성 정보가 포함되어 있다면 광고성 정보로 분류 | |
| 686 | + </p> | |
| 687 | + </div> | |
| 688 | + <div> | |
| 689 | + <p>광고성 정보의 예외</p> | |
| 690 | + <p>· 구매한 재화 또는 서비스에 대한 보증, 제품 리콜, 안전 또는 보안 관련 정보<br> | |
| 691 | + · 고객의 요청에 의해 발송되는 1회성 정보<br> | |
| 692 | + · 수신자가 금전적 대가를 지불하고 신청한 정보 | |
| 693 | + </p> | |
| 694 | + </div> | |
| 695 | + <div class="adpop1_bottom_in"> | |
| 696 | + <p>‘영리목적의 광고성 정보’의 적용범위</p> | |
| 697 | + <div> | |
| 698 | + <span>법률</span> | |
| 699 | + <div> | |
| 700 | + <p>제50조(영리목적의 광고성 정보 전송 제한)</p> | |
| 701 | + <p>① 누구든지 전자적 전송매체를 이용하여 영리목적의 광고성 정보를 전송하려면 그 수신자의 명시적인 사전 동의를 받아야한다. 다만, 다음 각 호의 어느 하나에 해당하는 경우에는 사전동의를 받지 아니한다.<br> | |
| 702 | + 1. 재화 등의 거래관계를 통하여 수신자로부터 직접 연락처를 수집한 자가 대통령령으로 정한 기간 이내에 자신이 처리하고 수신자와 거래한 것과 동종의 재화 등에 대한 영리목적의 광고성 정보를 전송 하려는 경우<br> | |
| 703 | + 2. “방문판매 등에 관한 법률”에 따른 전화권유판매자가 육성으로 수신자에게 개인정보의 수집출처를 고지하고 전화권유를 하는 경우</p> | |
| 704 | + </div> | |
| 705 | + </div> | |
| 706 | + <div> | |
| 707 | + <span>시행령</span> | |
| 708 | + <div> | |
| 709 | + <p>제61조(영리목적의 광고성 정보 전송기준)</p> | |
| 710 | + <p>① 법 제50조제1항제1호에서 “대통령령으로 정한 기간”이란 해당 재화 등의 거래가 종료된 날부터 6개월을 말한다.</p> | |
| 711 | + </div> | |
| 712 | + </div> | |
| 713 | + <div class="adpop1_bottom_req"> | |
| 714 | + <p>누구든지 전자적 전송매체를 이용해 영리목적의 광고성 정보를 전송하는 경우<br> | |
| 715 | + 정보통신망법 제50조에서 정한 의무를 준수하여야 함</p> | |
| 716 | + </div> | |
| 717 | + </div> | |
| 718 | + </div> | |
| 719 | + </div> | |
| 720 | + </div> | |
| 721 | + <!--// 광고문자 전송규정 안내 --> | |
| 722 | + | |
| 723 | + <!-- 광고문자 수신동의 안내 --> | |
| 724 | + <div class="adpop_cont adpop2" id="listTab2_2"> | |
| 725 | + <div class="adpop1_top"> | |
| 726 | + <div> | |
| 727 | + <p>의무사항</p> | |
| 728 | + <span class="info">수신동의 여부를 받은날로부터 2년마다 재고지하여야 함</span> | |
| 729 | + <div> | |
| 730 | + <p>전송자 명칭<span>메시지 시작부분에 표기</span></p> | |
| 731 | + <p>날짜, 동의 사실<span>수신동의 날짜 및 수신에 동의한 사실을 입력</span></p> | |
| 732 | + <p>무료거부번호 표기<span>수신동의에 대한 유지 또는 철회 의사 표시</span></p> | |
| 733 | + </div> | |
| 734 | + </div> | |
| 735 | + </div> | |
| 736 | + <div class="adpop1_bottom"> | |
| 737 | + <div class="adpop1_bottom_in"> | |
| 738 | + <p>수신동의 여부 확인</p> | |
| 739 | + <div> | |
| 740 | + <span>법률</span> | |
| 741 | + <div> | |
| 742 | + <p>제50조(영리목적의 광고성 정보 전송 제한)</p> | |
| 743 | + <p>⑧ 제1항 또는 제3항에 따라 수신동의를 받은 자는 대통령령으로 정하는 바에 따라 정기적으로 광고성 정보 수신자의 수신동의 여부를 확인하여야 한다.<p> | |
| 744 | + </div> | |
| 745 | + </div> | |
| 746 | + <div> | |
| 747 | + <span>시행령</span> | |
| 748 | + <div> | |
| 749 | + <p>제62조의3(수신동의 여부 확인 방식)</p> | |
| 750 | + <p>① 법 제50조제1항 또는 제3항에 따라 수신자의 사전 동의를 받은 자는 같은 조 제8항에 따라 그 수신동의를 받은 날로부터 2년마다(매 2년이 되는 해의 수신동의를 받은 날과 같은 날 전까지를 말한다) 해당 수신자의 수신동의 여부를 확인하여야 한다.<br> | |
| 751 | + ② 제1항에 따라 수신동의 여부를 확인하려는 자는 수신자에게 다음 각 호의 사항을 밝혀야 한다.<br> | |
| 752 | + 1. 전송자의 명칭<br> | |
| 753 | + 2. 수신자의 수신동의 사실과 수신에 동의한 날짜<br> | |
| 754 | + 3. 수신동의에 대한 유지 또는 철회의 의사를 표시하는 방법</p> | |
| 755 | + </div> | |
| 756 | + </div> | |
| 757 | + <div class="adpop1_bottom_req"> | |
| 758 | + <p>누구든지 전자적 전송매체를 이용해 영리목적의광고성 정보를 전송하는 경우<br> | |
| 759 | + 정보통신망법 제50조에서 정한 의무를 준수하여야 함</p> | |
| 760 | + </div> | |
| 761 | + </div> | |
| 762 | + </div> | |
| 763 | + <div class="adpop1_bottom" style="border-top: 2px solid #000;"> | |
| 764 | + <p>수신동의가 무엇인가요?</p> | |
| 765 | + <div> | |
| 766 | + <p>· 광고성 문자 전송자는 최초 수신동의 여부를 받은날로부터 매 2년마다 수신자에게 재수신 동의를 하여야 합니다.</p> | |
| 767 | + <p>· 2018년 11월 29일 개정법 시행 이전 발송한 광고성 문자 수신 동의 건에 대해서는 추가 수신동의를 받아야 하며, 광고성 문자 수신 동의를 받지 않고 문자전송 시 과태료가 부과되오니 반드시 유의하시기 바랍니다.</p> | |
| 768 | + <p>· 수신자의 의사표시 방법은 비용이 발생하지 않도록 적절한 조치를 취하여야 합니다.</p> | |
| 769 | + <p>· 수신자가 별도의 의사표시를 하지 않은 경우 기존 동의 의사는 계속 유지됩니다.</p> | |
| 770 | + </div> | |
| 771 | + </div> | |
| 772 | + <div class="adpop1_bottom"> | |
| 773 | + <p>수신동의 처리결과를 수신자에게 반드시 통지해야 하나요?</p> | |
| 774 | + <div> | |
| 775 | + <p>· 수신자가 수신거부 또는 수신동의 철회를 요청한 경우 접수일로부터 14일 이내에 그 결과를 수신자에게<br> 고지하여야 합니다.</p> | |
| 776 | + <p>· 수신동의 처리결과 통지는 광고성 정보 전송이 아니므로 ‘(광고)’나 ‘무료회신번호’ 등을 표기하지 않아도 됩니다.</p> | |
| 777 | + <p>· 수신자의 의사표시 방법은 비용이 발생하지 않도록 적절한 조치를 취하여야 합니다.</p> | |
| 778 | + <p class="c_e40000"> ex) 귀하가 2020년 8월 30일 요청하신 수신동의 철회요청이 정상적으로 처리되었습니다. 업체명</p> | |
| 779 | + </div> | |
| 780 | + </div> | |
| 781 | + </div> | |
| 782 | + <!--// 광고문자 수신동의 안내 --> | |
| 783 | + </div> | |
| 784 | + <div class="popup_btn_wrap2" style="margin: 0 auto 30px auto;"> | |
| 785 | + <button type="button" class="tooltip-close" data-focus="adr_popup01-close" data-focus-next="popup02">닫기</button> | |
| 786 | + </div> | |
| 787 | + </div> | |
| 788 | + </div> | |
| 789 | + <!--// 광고문자 관련법규 안내 팝업 --> | |
| 790 | + | |
| 791 | + <!-- 이벤트 잔액 팝업 --> | |
| 792 | + <div class="tooltip-wrap"> | |
| 793 | + <div class="popup-com event_cash_popup popup07" tabindex="0" data-tooltip-con="popup07" data-focus="popup07" data-focus-prev="popup07-close"> | |
| 794 | + <div class="popup_heading"> | |
| 795 | + <p>이벤트 잔액</p> | |
| 796 | + <button type="button" class="tooltip-close" data-focus="popup07-close"><img src="/publish/images/content/layerPopup_close.png" alt="팝업 닫기"></button> | |
| 797 | + </div> | |
| 798 | + <div class="layer_in"> | |
| 799 | + <div class="table_wrap"> | |
| 800 | + <div class="table_top"> | |
| 801 | + <p class="popup_title_18">첫 결제 이벤트 잔액(캐시)</p> | |
| 802 | + <p><span class="c_e40000 fwBold">100,000,000</span>원</p> | |
| 803 | + </div> | |
| 804 | + <table class="popup_table_type2"> | |
| 805 | + <colgroup> | |
| 806 | + <col style="width: 25%;"> | |
| 807 | + <col style="width: auto;"> | |
| 808 | + </colgroup> | |
| 809 | + <tbody> | |
| 810 | + <tr> | |
| 811 | + <th>단문(7.5)</th> | |
| 812 | + <td><span class="c_002c9a fwBold">13</span>건</td> | |
| 813 | + </tr> | |
| 814 | + <tr> | |
| 815 | + <th>장문(32)</th> | |
| 816 | + <td><span class="c_002c9a fwBold">13</span>건</td> | |
| 817 | + </tr> | |
| 818 | + <tr> | |
| 819 | + <th>그림 1장(59)</th> | |
| 820 | + <td><span class="c_002c9a fwBold">13</span>건</td> | |
| 821 | + </tr> | |
| 822 | + <tr> | |
| 823 | + <th>그림 2장(67)</th> | |
| 824 | + <td><span class="c_002c9a fwBold">13</span>건</td> | |
| 825 | + </tr> | |
| 826 | + <tr> | |
| 827 | + <th>그림 3장(70)</th> | |
| 828 | + <td><span class="c_002c9a fwBold">13</span>건</td> | |
| 829 | + </tr> | |
| 830 | + </tbody> | |
| 831 | + </table> | |
| 832 | + </div> | |
| 833 | + <div class="popup_btn_wrap2"> | |
| 834 | + <button type="button">닫기</button> | |
| 835 | + </div> | |
| 836 | + </div> | |
| 837 | + </div> | |
| 838 | + </div> | |
| 839 | + <!--// 이벤트 잔액 팝업 --> | |
| 840 | + | |
| 841 | + <div class="quickMenu"> | |
| 842 | + <div> | |
| 843 | + <p class="quick_title">QUICK<br>MENU</p> | |
| 844 | + <p class="quick_title2">QUICK</p> | |
| 845 | + <ul class="quickMenuIn"> | |
| 846 | + <li> | |
| 847 | + <a href="/publish/index.html"><i class="quick1"></i><span>이용안내</span></a> | |
| 848 | + <div class="hover_cont">이용안내</div> | |
| 849 | + </li> | |
| 850 | + <li> | |
| 851 | + <a href="#"><i class="quick2"></i><span>채팅상담</span></a> | |
| 852 | + <div class="hover_cont">채팅상담</div> | |
| 853 | + </li> | |
| 854 | + <li> | |
| 855 | + <a href="#"><i class="quick3"></i><span>원격지원</span></a> | |
| 856 | + <div class="hover_cont">원격지원</div> | |
| 857 | + </li> | |
| 858 | + <li> | |
| 859 | + <a href="#"><i class="quick4"></i><span>맞춤제작</span></a> | |
| 860 | + <div class="hover_cont">맞춤제작</div> | |
| 861 | + </li> | |
| 862 | + <li> | |
| 863 | + <a href="#"><i class="quick5"></i><span>주소록 등록</span></a> | |
| 864 | + <div class="hover_cont">주소록 등록</div> | |
| 865 | + </li> | |
| 866 | + <li> | |
| 867 | + <a href="#"><i class="quick6"></i><span>엑셀 전송</span></a> | |
| 868 | + <div class="hover_cont">엑셀 대량전송</div> | |
| 869 | + </li> | |
| 870 | + <li> | |
| 871 | + <a href="#"><i class="quick7"></i><span>견적서</span></a> | |
| 872 | + <div class="hover_cont">견적서</div> | |
| 873 | + </li> | |
| 874 | + <li> | |
| 875 | + <a href="#"><i class="quick8"></i><span>결제</span></a> | |
| 876 | + <div class="hover_cont">결제</div> | |
| 877 | + </li> | |
| 878 | + <li> | |
| 879 | + <a href="#"><i class="quick9"></i><span>영수증/계산서</span></a> | |
| 880 | + <div class="hover_cont">영수증/계산서</div> | |
| 881 | + </li> | |
| 882 | + </ul> | |
| 883 | + <button type="button" class="goTop" title="맨 위로 이동">TOP<i></i></button> | |
| 884 | + </div> | |
| 885 | + </div> | |
| 886 | + <!--// quick 메뉴 --> | |
| 887 | + <!-- header 영역 --> | |
| 888 | + <header id="header" class="header sub"> | |
| 889 | + <!-- header top 영역 --> | |
| 890 | + <div class="header_top"> | |
| 891 | + <div class="inner"> | |
| 892 | + <ul class="menu_left"> | |
| 893 | + <li><a href="#"><i class="hdTop_fav"></i>즐겨찾기추가</a></li> | |
| 894 | + <li><a href="#"><i class="hdTop_mypage"></i>마이페이지</a></li> | |
| 895 | + <li><a href="#"><i class="hdTop_center"></i>고객센터</a></li> | |
| 896 | + </ul> | |
| 897 | + <ul class="menu_right"> | |
| 898 | + <li><a href="#">충전하기</a></li> | |
| 899 | + <li class="SortLine"><a href="#">요금안내</a></li> | |
| 900 | + <li class="SortLine"><a href="#">이용안내</a></li> | |
| 901 | + <li class="SortLine"><a href="#">1:1고객상담</a></li> | |
| 902 | + </ul> | |
| 903 | + </div> | |
| 904 | + </div><!-- header top 영역 --> | |
| 905 | + <!-- header body 영역 --> | |
| 906 | + <div class="header_body"> | |
| 907 | + <div class="inner table"> | |
| 908 | + <h1 class="logo"><a href="/publish/index.html" alt="문자온 메인 바로가기"><img src="/publish/images/CI.png" alt="문자온 CI"></a></h1> | |
| 909 | + <ul class="gnbWrap table_cell"> | |
| 910 | + <li><a href="#">문자발송</a></li> | |
| 911 | + <li><a href="#">선거문자</a></li> | |
| 912 | + <li><a href="#">카톡전송</a></li> | |
| 913 | + <li><a href="#">맞춤제작</a></li> | |
| 914 | + <li><a href="#">주소록 관리</a></li> | |
| 915 | + <li><a href="#">발송결과</a></li> | |
| 916 | + <li><a href="#">예약관리</a></li> | |
| 917 | + <li><a href="#">결제내역</a></li> | |
| 918 | + </ul> | |
| 919 | + <div class="s_menu"> | |
| 920 | + <i class="allSearch_info"><span>문자검색</span></i> | |
| 921 | + <button type="button" title="전체검색" class="allSearch" onclick="searchToggle();"><img src="/publish/images/search.png" alt="검색영역 열기" class="allMenu"></button> | |
| 922 | + <button type="button" title="전체메뉴"><img src="/publish/images/all_menu.png" alt="전체메뉴 열기"></button> | |
| 923 | + </div> | |
| 924 | + </div> | |
| 925 | + <!-- search popup 영역 --> | |
| 926 | + <div class="pop_search"> | |
| 927 | + <div class="inner"> | |
| 928 | + <div class="area_search"> | |
| 929 | + <select name="" id=""> | |
| 930 | + <option value="">그림문자</option> | |
| 931 | + <option value="">단문문자</option> | |
| 932 | + <option value="">장문문자</option> | |
| 933 | + <option value="">GIF</option> | |
| 934 | + </select> | |
| 935 | + <input type="text" placeholder="문자샘플 검색하기" onfocus="this.placeholder=''" onblur="this.placeholder='문자샘플 검색하기'"> | |
| 936 | + <button><img src="/publish/images/search02.png" alt=""></button> | |
| 937 | + </div> | |
| 938 | + <div class="area_popular"> | |
| 939 | + <p><i></i>인기검색어</p> | |
| 940 | + <ul class="popular_tag"> | |
| 941 | + <li><a href="#">#정월대보름</a></li> | |
| 942 | + <li class="on"><a href="#">#추석</a></li> | |
| 943 | + <li><a href="#">#가을인사</a></li> | |
| 944 | + <li><a href="#">#좋은하루</a></li> | |
| 945 | + </ul> | |
| 946 | + </div> | |
| 947 | + <button class="btn_close" onclick="searchToggle();"><img src="/publish/images/btn_searchclose.png" alt=""></button> | |
| 948 | + </div> | |
| 949 | + </div> | |
| 950 | + <!--// search popup 영역 --> | |
| 951 | + </div> | |
| 952 | + <!--// header body 영역 --> | |
| 953 | + <div id="login" class="login2"> | |
| 954 | + <div class="inner table"> | |
| 955 | + <div class="login_left table_cell"> | |
| 956 | + <div class="login_info"> | |
| 957 | + <i></i> | |
| 958 | + <div class="login2_name"> | |
| 959 | + <p>홍길동홍길동홍길동홍길동</p> | |
| 960 | + <span>(개인) 님</span> | |
| 961 | + </div> | |
| 962 | + <div class="session"> | |
| 963 | + <span>08:46</span> | |
| 964 | + <button type="button">연장</button> | |
| 965 | + </div> | |
| 966 | + <button type="button" class="btnType btnType3">마이페이지</button> | |
| 967 | + <button type="button" class="btnType btnType2">로그아웃</button> | |
| 968 | + </div> | |
| 969 | + <div class="check_money"> | |
| 970 | + <i></i> | |
| 971 | + <p>보유잔액 <span class="fwMd">3,000</span>원</p> | |
| 972 | + <button type="button" class="btnType btnType3">충전</button> | |
| 973 | + <button type="button" class="btnType btnType3">전용계좌</button> | |
| 974 | + </div> | |
| 975 | + <div class="point"> | |
| 976 | + <i></i> | |
| 977 | + <p>포인트 <span class="fwMd">1,000</span>원</p> | |
| 978 | + <button type="button" class="btnType btnType3">교환</button> | |
| 979 | + </div> | |
| 980 | + </div> | |
| 981 | + <div class="login_right"> | |
| 982 | + <button type="button" class="btnType btnType14"><i></i>이동통신사 스팸 규격 안내</button> | |
| 983 | + <!-- <button type="button">스팸필터링 번호도용차단</button> --> | |
| 984 | + </div> | |
| 985 | + </div> | |
| 986 | + </div> | |
| 987 | + <!--// login 영역 --> | |
| 988 | + </header> | |
| 989 | + <!--// header 영역 --> | |
| 990 | + <div class="mask"></div> | |
| 991 | + | |
| 992 | + <!-- content 영역 --> | |
| 993 | + <div id="container" class="cont sub"> | |
| 994 | + <div class="inner"> | |
| 995 | + <!-- send top --> | |
| 996 | + <div class="send_top"> | |
| 997 | + <!-- tab button --> | |
| 998 | + <ul class="tabType1"> | |
| 999 | + <li class="tab active"><button type="button" onclick="TabType1(this,'1');">단문 · 장문 · 그림 문자</button></li> | |
| 1000 | + <li class="tab"><button type="button" onclick="TabType1(this,'2');">대량 문자(엑셀·TXT)</button></li> | |
| 1001 | + </ul> | |
| 1002 | + <!--// tab button --> | |
| 1003 | + <!-- tab content1 --> | |
| 1004 | + <div class="top_content current election contentArea" id="tab1_1"> | |
| 1005 | + <div class="heading"> | |
| 1006 | + <h2>20건 문자(수동문자) 전송</h2> | |
| 1007 | + <div class="election_btnWrap"> | |
| 1008 | + <button type="button" class="button2 info" onclick="infoPop('selectMsgDataView2');">발송규정</button> | |
| 1009 | + <button type="button" class="button2 info" data-tooltip="candidate_popup03">사용안내</button> | |
| 1010 | + <button type="button" class="btnType" onclick="javascript:fn_candidateLoginChk(); return false;"><i class="election_btn1"></i>후보자 등록</button> | |
| 1011 | + <button type="button" class="btnType" onclick="location.href='/web/member/pay/BillPub.do'"><i class="election_btn2"></i>세금계산서</button> | |
| 1012 | + <button type="button" class="btnType" onclick="location.href='/web/mjon/msgsent/selectMsgSentView.do'"><i class="election_btn3"></i>발송결과 출력하기</button> | |
| 1013 | + </div> | |
| 1014 | + </div> | |
| 1015 | + <div class="send_general"> | |
| 1016 | + <!-- send left 문자 보내기 입력 --> | |
| 1017 | + <div class="send_left"> | |
| 1018 | + <table class="tType1"> | |
| 1019 | + <caption>일반 문자보내기 분류 번호 내용 등을 입력하는 표</caption> | |
| 1020 | + <colgroup> | |
| 1021 | + <col style="width: 120px;"> | |
| 1022 | + <col style="width: auto;"> | |
| 1023 | + </colgroup> | |
| 1024 | + <tbody> | |
| 1025 | + <tr> | |
| 1026 | + <th scope="row">발신번호</th> | |
| 1027 | + <td class="put_num"> | |
| 1028 | + <label for="num" class="label"></label> | |
| 1029 | + <select id="num" class="sel_number"> | |
| 1030 | + <option value="">010-1234-5678</option> | |
| 1031 | + <option value="">010-1234-5678</option> | |
| 1032 | + <option value="">010-1234-5678</option> | |
| 1033 | + <option value="">010-1234-5678</option> | |
| 1034 | + </select> | |
| 1035 | + <button type="button" class="btnType btnType6">번호변경</button> | |
| 1036 | + </td> | |
| 1037 | + </tr> | |
| 1038 | + <tr class="msg_title active"> | |
| 1039 | + <th scope="row">제목</th> | |
| 1040 | + <td> | |
| 1041 | + <ul class="title_wrap"> | |
| 1042 | + <li> | |
| 1043 | + <input id="title_y" type="radio" name="title_status" value="Y" onchange="titleStatus(this);"> | |
| 1044 | + <label for="title_y">사용</label> | |
| 1045 | + <input id="title_n" type="radio" name="title_status" value="N" onchange="titleStatus(this);" checked="checked"> | |
| 1046 | + <label for="title_n">사용안함</label> | |
| 1047 | + </li> | |
| 1048 | + <li class="textbox"> | |
| 1049 | + <label for="mmsSubject" class="label"></label> | |
| 1050 | + <input type="text" size="20" id="mmsSubject" name="mmsSubject" class="w100" maxlength="20" placeholder="" onfocus="this.placeholder=''"> | |
| 1051 | + </li> | |
| 1052 | + </ul> | |
| 1053 | + </td> | |
| 1054 | + </tr> | |
| 1055 | + <!-- 단문 --> | |
| 1056 | + <tr> | |
| 1057 | + <th scope="row" class="vTop">내용</th> | |
| 1058 | + <td class="putText"> | |
| 1059 | + <div class="clearfix"> | |
| 1060 | + <div class="put_left short"> | |
| 1061 | + <!-- 업로드한 이미지의 썸네일 영역 --> | |
| 1062 | + <ul class="thumb_wrap liOnImg ui-sortable"></ul> | |
| 1063 | + <!-- //업로드한 이미지의 썸네일 영역 --> | |
| 1064 | + <label for="smsTxtArea" class="label"></label> | |
| 1065 | + <div class="ad_txt"> | |
| 1066 | + <p>(선거운동정보)</p> | |
| 1067 | + </div><textarea id="smsTxtArea" name="smsTxtArea" class="put_text" placeholder="내용을 입력해주세요. | |
| 1068 | +-90btye 초과 시 LMS 자동전환 | |
| 1069 | +-파일첨부 시 MMS 자동전환"></textarea> | |
| 1070 | + <div class="text_length"> | |
| 1071 | + <div class="deny_txt">후보자전화번호 <br>불법수집정보 신고번호 118번<br>무료거부 0808800858</div> | |
| 1072 | + <div name="afterDeny"> | |
| 1073 | + <p> | |
| 1074 | + <span class="fwMd" id="msgLeng">79 / </span> | |
| 1075 | + <span class="c_002c9a fwMd" id="limitLeng">90</span>byte | |
| 1076 | + </p> | |
| 1077 | + <span class="msg_com msg_short">단문</span> | |
| 1078 | + </div> | |
| 1079 | + </div> | |
| 1080 | + </div> | |
| 1081 | + <div class="put_right"> | |
| 1082 | + <div class="btn_popup_wrap spc_wrap"> | |
| 1083 | + <button type="button" class="btnType btnType7" onclick="miniPopup(this)">특수문자</button> | |
| 1084 | + <div class="send_miniPop spc_character"> | |
| 1085 | + <div class="tab_character"> | |
| 1086 | + <a href="#none" class="on">특수문자</a> | |
| 1087 | + <a href="#none">웃음</a> | |
| 1088 | + <a href="#none">슬픔</a> | |
| 1089 | + <a href="#none">분노</a> | |
| 1090 | + <a href="#none">사랑</a> | |
| 1091 | + <a href="#none">그외</a> | |
| 1092 | + </div> | |
| 1093 | + <!-- 특수문자 --> | |
| 1094 | + <div class="cnt_character on"> | |
| 1095 | + <div class="box_character"> | |
| 1096 | + <a href="#">※</a> | |
| 1097 | + <a href="#">☆</a> | |
| 1098 | + <a href="#">★</a> | |
| 1099 | + <a href="#">○</a> | |
| 1100 | + <a href="#">●</a> | |
| 1101 | + <a href="#">◎</a> | |
| 1102 | + <a href="#">◇</a> | |
| 1103 | + <a href="#">◆</a> | |
| 1104 | + <a href="#">□</a> | |
| 1105 | + <a href="#">■</a> | |
| 1106 | + <a href="#">△</a> | |
| 1107 | + <a href="#">▲</a> | |
| 1108 | + <a href="#">▽</a> | |
| 1109 | + <a href="#">▼</a> | |
| 1110 | + <a href="#">→</a> | |
| 1111 | + <a href="#">←</a> | |
| 1112 | + <a href="#">↑</a> | |
| 1113 | + <a href="#">↓</a> | |
| 1114 | + <a href="#">↔</a> | |
| 1115 | + <a href="#">〓</a> | |
| 1116 | + <a href="#">◁</a> | |
| 1117 | + <a href="#">♪</a> | |
| 1118 | + <a href="#">◀</a> | |
| 1119 | + <a href="#">▷</a> | |
| 1120 | + <a href="#">▶</a> | |
| 1121 | + <a href="#">♤</a> | |
| 1122 | + <a href="#">♠</a> | |
| 1123 | + <a href="#">♡</a> | |
| 1124 | + <a href="#">♥</a> | |
| 1125 | + <a href="#">♧</a> | |
| 1126 | + <a href="#">♣</a> | |
| 1127 | + <a href="#">⊙</a> | |
| 1128 | + <a href="#">◈</a> | |
| 1129 | + <a href="#">▣</a> | |
| 1130 | + <a href="#">◐</a> | |
| 1131 | + <a href="#">◑</a> | |
| 1132 | + <a href="#">▒</a> | |
| 1133 | + <a href="#">▦</a> | |
| 1134 | + <a href="#">♨</a> | |
| 1135 | + <a href="#">☏</a> | |
| 1136 | + <a href="#">☎</a> | |
| 1137 | + <a href="#">☞</a> | |
| 1138 | + <a href="#">☜</a> | |
| 1139 | + <a href="#">㈜</a> | |
| 1140 | + <a href="#">™</a> | |
| 1141 | + <a href="#">℡</a> | |
| 1142 | + <a href="#">ㆀ</a> | |
| 1143 | + <a href="#">ε</a> | |
| 1144 | + <a href="#">『</a> | |
| 1145 | + <a href="#">』</a> | |
| 1146 | + <a href="#">ⓛ</a> | |
| 1147 | + <a href="#">∏</a> | |
| 1148 | + <a href="#">ご</a> | |
| 1149 | + <a href="#">♂</a> | |
| 1150 | + <a href="#">↗</a> | |
| 1151 | + <a href="#">↙</a> | |
| 1152 | + <a href="#">↖</a> | |
| 1153 | + <a href="#">↘</a> | |
| 1154 | + <a href="#">ψ</a> | |
| 1155 | + </div> | |
| 1156 | + </div> | |
| 1157 | + <!-- //특수문자 --> | |
| 1158 | + | |
| 1159 | + <!-- 웃음 --> | |
| 1160 | + <div class="cnt_character emt_character"> | |
| 1161 | + <div class="box_character"> | |
| 1162 | + <a href="#">⌒⌒</a> | |
| 1163 | + <a href="#">^_^</a> | |
| 1164 | + <a href="#">^0^</a> | |
| 1165 | + <a href="#">s( ̄▽ ̄)/</a> | |
| 1166 | + <a href="#">(/^^)/</a> | |
| 1167 | + <a href="#">^o^~♬</a> | |
| 1168 | + <a href="#">^.~</a> | |
| 1169 | + <a href="#">^-^b</a> | |
| 1170 | + <a href="#">^▽^</a> | |
| 1171 | + <a href="#">^ε^</a> | |
| 1172 | + <a href="#">(^^)γ</a> | |
| 1173 | + <a href="#">(~^^)~</a> | |
| 1174 | + <a href="#">☆(~.^)/</a> | |
| 1175 | + <a href="#">(*^o^*)</a> | |
| 1176 | + <a href="#">n_n</a> | |
| 1177 | + <a href="#">↖(^▽^)↗</a> | |
| 1178 | + <a href="#">( ̄∇ ̄)</a> | |
| 1179 | + <a href="#">(*^.^)♂</a> | |
| 1180 | + <a href="#">*^^*</a> | |
| 1181 | + <a href="#">ㅎ.ㅎ</a> | |
| 1182 | + <a href="#">=^.^=</a> | |
| 1183 | + <a href="#">^▽^</a> | |
| 1184 | + <a href="#">~_~</a> | |
| 1185 | + <a href="#">(=^▽^)/♪</a> | |
| 1186 | + </div> | |
| 1187 | + </div> | |
| 1188 | + <!-- //웃음 --> | |
| 1189 | + | |
| 1190 | + <!-- 슬픔 --> | |
| 1191 | + <div class="cnt_character emt_character"> | |
| 1192 | + <div class="box_character"> | |
| 1193 | + <a href="#">(づ_T)</a> | |
| 1194 | + <a href="#">(ㅠ.ㅠ)</a> | |
| 1195 | + <a href="#">(#_-)</a> | |
| 1196 | + <a href="#">o(T^T)o</a> | |
| 1197 | + <a href="#">ㅠ.ㅠ</a> | |
| 1198 | + <a href="#">(-_-メ)</a> | |
| 1199 | + <a href="#">Y.Y</a> | |
| 1200 | + <a href="#">TmT</a> | |
| 1201 | + <a href="#">ご.ご</a> | |
| 1202 | + <a href="#">(=_=;)</a> | |
| 1203 | + <a href="#">⊇.⊆</a> | |
| 1204 | + <a href="#">(o_Φ)</a> | |
| 1205 | + <a href="#">∋.∈</a> | |
| 1206 | + <a href="#">(___)_</a> | |
| 1207 | + <a href="#">(-.¥)</a> | |
| 1208 | + <a href="#">@_O</a> | |
| 1209 | + <a href="#">●⊙</a> | |
| 1210 | + <a href="#">(♨_♨)</a> | |
| 1211 | + <a href="#">(X_X)</a> | |
| 1212 | + <a href="#">Θ_Θ</a> | |
| 1213 | + <a href="#">(∏.∏)</a> | |
| 1214 | + <a href="#">(づ_ど)</a> | |
| 1215 | + <a href="#">( ̄^ ̄)</a> | |
| 1216 | + </div> | |
| 1217 | + </div> | |
| 1218 | + <!-- //슬픔 --> | |
| 1219 | + | |
| 1220 | + <!-- 분노 --> | |
| 1221 | + <div class="cnt_character emt_character"> | |
| 1222 | + <div class="box_character"> | |
| 1223 | + <a href="#">Θ_Θ</a> | |
| 1224 | + <a href="#">=-_-a</a> | |
| 1225 | + <a href="#">('o')</a> | |
| 1226 | + <a href="#">(`へ´)</a> | |
| 1227 | + <a href="#">(-ヘㅡメ)凸</a> | |
| 1228 | + <a href="#">⊙⊙ㆀ</a> | |
| 1229 | + <a href="#">⊙.⊙</a> | |
| 1230 | + <a href="#">ㅡㅡ+</a> | |
| 1231 | + <a href="#">(`o´)y</a> | |
| 1232 | + <a href="#">づºДº)つ</a> | |
| 1233 | + <a href="#">O_O</a> | |
| 1234 | + <a href="#">(@.@)</a> | |
| 1235 | + <a href="#">★.★</a> | |
| 1236 | + <a href="#">(;¬_¬)</a> | |
| 1237 | + <a href="#">┏(;-_-)┛</a> | |
| 1238 | + <a href="#">┏(-_-メ)┓</a> | |
| 1239 | + <a href="#">(><ㆀ)/</a> | |
| 1240 | + <a href="#">--メ凸</a> | |
| 1241 | + <a href="#">(`_)乂(_′)</a> | |
| 1242 | + <a href="#">(-_-)c+_=)</a> | |
| 1243 | + </div> | |
| 1244 | + </div> | |
| 1245 | + <!-- //분노 --> | |
| 1246 | + | |
| 1247 | + <!-- 사랑 --> | |
| 1248 | + <div class="cnt_character emt_character"> | |
| 1249 | + <div class="box_character"> | |
| 1250 | + <a href="#">♥.♥</a> | |
| 1251 | + <a href="#">^o^~♬</a> | |
| 1252 | + <a href="#">(*^}{^*)</a> | |
| 1253 | + <a href="#">ⓛⓞⓥⓔ</a> | |
| 1254 | + <a href="#">(*_*)</a> | |
| 1255 | + <a href="#">(♡.♡)</a> | |
| 1256 | + <a href="#">ε♡₃ε♥</a> | |
| 1257 | + <a href="#">(*..)(..*)</a> | |
| 1258 | + <a href="#">(~.^)s</a> | |
| 1259 | + <a href="#">☞♡☜</a> | |
| 1260 | + <a href="#">*♥o♥*</a> | |
| 1261 | + <a href="#">(/^o^)/♡</a> | |
| 1262 | + <a href="#">@-m-m--</a> | |
| 1263 | + <a href="#">=>>------▷♡</a> | |
| 1264 | + <a href="#">(*^^)σ(^_^)</a> | |
| 1265 | + <a href="#">(*^-^)♡(^o^*)</a> | |
| 1266 | + <a href="#">(づ^.^)づ~♡</a> | |
| 1267 | + <a href="#">\(*^▽^*)ノ</a> | |
| 1268 | + <a href="#">*⌒З^)^.⌒*)</a> | |
| 1269 | + <a href="#">(づ ̄³ ̄)づ~</a> | |
| 1270 | + <a href="#">(づ ̄³ ̄)づ</a> | |
| 1271 | + <a href="#">(^*^)kiss</a> | |
| 1272 | + <a href="#">(*'-⌒*)ⓥ</a> | |
| 1273 | + <a href="#">s( ̄▽ ̄)/</a> | |
| 1274 | + </div> | |
| 1275 | + </div> | |
| 1276 | + <!-- //사랑 --> | |
| 1277 | + | |
| 1278 | + <!-- 그외 --> | |
| 1279 | + <div class="cnt_character emt_character emt_etc "> | |
| 1280 | + <div class="box_character"> | |
| 1281 | + <a href="#"><:3)--</a> | |
| 1282 | + <a href="#">(^(oo)^)</a> | |
| 1283 | + <a href="#">(:::[</a> | |
| 1284 | + <a href="#">]:::)</a> | |
| 1285 | + <a href="#">[( ̄. ̄)]zZ</a> | |
| 1286 | + <a href="#">(``)(``)</a> | |
| 1287 | + <a href="#">(T(oo)T)</a> | |
| 1288 | + <a href="#">(^.^)=O)#.#)</a> | |
| 1289 | + <a href="#">?‥…─━★</a> | |
| 1290 | + <a href="#">(__)zzz</a> | |
| 1291 | + <a href="#">(=ㅅ)=333</a> | |
| 1292 | + <a href="#"><(>.<ㆀ)></a> | |
| 1293 | + <a href="#">>(/////)<</a> | |
| 1294 | + <a href="#">((ど(</a> | |
| 1295 | + <a href="#">^0^</a> | |
| 1296 | + <a href="#">)つ))</a> | |
| 1297 | + <a href="#">■■■■■□90%</a> | |
| 1298 | + <a href="#">( ̄_ ̄>-(^▽^;)</a> | |
| 1299 | + <a href="#">∑⊙)++333=◀</a> | |
| 1300 | + <a href="#">(ノ^_^)ノ~~⑩</a> | |
| 1301 | + <a href="#">(^▽^)/\(^_^)</a> | |
| 1302 | + <a href="#">(*.*)@==(`.`)</a> | |
| 1303 | + <a href="#">(っㅡㅡ)つ━●</a> | |
| 1304 | + <a href="#">(``)(</a> | |
| 1305 | + <a href="#">:)(..)(:</a> | |
| 1306 | + <a href="#">(``)</a> | |
| 1307 | + </div> | |
| 1308 | + </div> | |
| 1309 | + <!-- //그외 --> | |
| 1310 | + <button type="button" class="btn_close" onclick="miniPopup(this)">닫기</button> | |
| 1311 | + </div> | |
| 1312 | + </div> | |
| 1313 | + <button type="button" class="btnType btnType7" onclick="miniPopup(this)">선거 필수문구 입력</button> | |
| 1314 | + <button type="button" class="btnType btnType7">내문자함</button> | |
| 1315 | + <button type="button" class="btnType btnType8" onclick="showPotoediter();">이미지 불러오기</button> | |
| 1316 | + <div class="send_btnWrap"> | |
| 1317 | + <button type="button" class="btnType btnType9">문자저장</button> | |
| 1318 | + <button type="button" class="btnType btnType9">초기화</button> | |
| 1319 | + </div> | |
| 1320 | + </div> | |
| 1321 | + </div> | |
| 1322 | + <p>* 현재 [단문] <span class="c_e40000 fwBold">120,000</span>건 발송 가능합니다.</p> | |
| 1323 | + </td> | |
| 1324 | + </tr> | |
| 1325 | + <!-- 포토 --> | |
| 1326 | + <tr> | |
| 1327 | + <th scope="row" class="vTop">받는사람</th> | |
| 1328 | + <td class="putText"> | |
| 1329 | + <div class="clearfix receipt_num"> | |
| 1330 | + <div class="receipt_num_top"> | |
| 1331 | + <label for="" class="label">받는 번호입력</label> | |
| 1332 | + <input type="text" placeholder="번호를 입력하세요" onfocus="this.placeholder=''" onblur="this.placeholder='번호를 입력하세요'" style="width:340px;"> | |
| 1333 | + <button type="button" class="btnType btnType6">번호추가</button> | |
| 1334 | + <span><span class="vMiddle">*</span> 중복번호는 한번만 발송됩니다.</span> | |
| 1335 | + </div> | |
| 1336 | + <div class="receipt_num_midde receipt_number_table_wrap"> | |
| 1337 | + <div class="listType list"> | |
| 1338 | + <table class="receipt_number_table"> | |
| 1339 | + <colgroup> | |
| 1340 | + <col style="width:60px;"> | |
| 1341 | + <col style="width:calc((100% - 60px)/2);"> | |
| 1342 | + <col style="width:60px;"> | |
| 1343 | + <col style="width:calc((100% - 60px)/2);"> | |
| 1344 | + </colgroup> | |
| 1345 | + <thead> | |
| 1346 | + <tr> | |
| 1347 | + <th></th> | |
| 1348 | + <th>번호 | |
| 1349 | + <button type="button" class="btn_sort_up"><img src="/publish/images/sortUp.png"></button> | |
| 1350 | + <button type="button" class="btn_sort_down"><img src="/publish/images/sortDown.png"></button> | |
| 1351 | + </th> | |
| 1352 | + <th></th> | |
| 1353 | + <th>번호 | |
| 1354 | + <button type="button" class="btn_sort_up"><img src="/publish/images/sortUp.png"></button> | |
| 1355 | + <button type="button" class="btn_sort_down"><img src="/publish/images/sortDown.png"></button> | |
| 1356 | + </th> | |
| 1357 | + </tr> | |
| 1358 | + </thead> | |
| 1359 | + <tbody> | |
| 1360 | + <tr> | |
| 1361 | + <td colspan="2" class="ui-widget-content"> | |
| 1362 | + <input type="checkbox" id="check1" name="receipt_number_check"> | |
| 1363 | + <label for="check1">010-1234-5678</label></td> | |
| 1364 | + <td colspan="2" class="ui-widget-content"> | |
| 1365 | + <input type="checkbox" id="check2" name="receipt_number_check"> | |
| 1366 | + <label for="check2">010-1234-5678</label></td> | |
| 1367 | + </tr> | |
| 1368 | + <tr> | |
| 1369 | + <td colspan="2" class="ui-widget-content"> | |
| 1370 | + <input type="checkbox" id="check3" name="receipt_number_check"> | |
| 1371 | + <label for="check3">010-1234-5678</label></td> | |
| 1372 | + <td colspan="2" class="ui-widget-content"> | |
| 1373 | + <input type="checkbox" id="check4" name="receipt_number_check"> | |
| 1374 | + <label for="check4">010-1234-5678</label></td> | |
| 1375 | + </tr> | |
| 1376 | + <tr> | |
| 1377 | + <td colspan="2" class="ui-widget-content"> | |
| 1378 | + <input type="checkbox" id="check5" name="receipt_number_check"> | |
| 1379 | + <label for="check5">010-1234-5678</label></td> | |
| 1380 | + <td colspan="2" class="ui-widget-content"> | |
| 1381 | + <input type="checkbox" id="check6" name="receipt_number_check"> | |
| 1382 | + <label for="check6">010-1234-5678</label></td> | |
| 1383 | + </tr> | |
| 1384 | + <tr> | |
| 1385 | + <td colspan="2" class="ui-widget-content"> | |
| 1386 | + <input type="checkbox" id="check7" name="receipt_number_check"> | |
| 1387 | + <label for="check7">010-1234-5678</label></td> | |
| 1388 | + <td colspan="2" class="ui-widget-content"> | |
| 1389 | + <input type="checkbox" id="check8" name="receipt_number_check"> | |
| 1390 | + <label for="check8">010-1234-5678</label></td> | |
| 1391 | + </tr> | |
| 1392 | + <tr> | |
| 1393 | + <td colspan="2" class="ui-widget-content"> | |
| 1394 | + <input type="checkbox" id="check9" name="receipt_number_check"> | |
| 1395 | + <label for="check9">010-1234-5678</label></td> | |
| 1396 | + <td colspan="2" class="ui-widget-content"> | |
| 1397 | + <input type="checkbox" id="check10" name="receipt_number_check"> | |
| 1398 | + <label for="check10">010-1234-5678</label></td> | |
| 1399 | + </tr> | |
| 1400 | + <tr> | |
| 1401 | + <td colspan="2" class="ui-widget-content"> | |
| 1402 | + <input type="checkbox" id="check11" name="receipt_number_check"> | |
| 1403 | + <label for="check11">010-1234-5678</label></td> | |
| 1404 | + <td colspan="2" class="ui-widget-content"> | |
| 1405 | + <input type="checkbox" id="check12" name="receipt_number_check"> | |
| 1406 | + <label for="check12">010-1234-5678</label></td> | |
| 1407 | + </tr> | |
| 1408 | + <tr> | |
| 1409 | + <td colspan="2" class="ui-widget-content"> | |
| 1410 | + <input type="checkbox" id="check13" name="receipt_number_check"> | |
| 1411 | + <label for="check13">010-1234-5678</label></td> | |
| 1412 | + <td colspan="2" class="ui-widget-content"> | |
| 1413 | + <input type="checkbox" id="check14" name="receipt_number_check"> | |
| 1414 | + <label for="check14">010-1234-5678</label></td> | |
| 1415 | + </tr> | |
| 1416 | + <tr> | |
| 1417 | + <td colspan="2" class="ui-widget-content"> | |
| 1418 | + <input type="checkbox" id="check15" name="receipt_number_check"> | |
| 1419 | + <label for="check15">010-1234-5678</label></td> | |
| 1420 | + <td colspan="2" class="ui-widget-content"> | |
| 1421 | + <input type="checkbox" id="check16" name="receipt_number_check"> | |
| 1422 | + <label for="check16">010-1234-5678</label></td> | |
| 1423 | + </tr> | |
| 1424 | + <tr> | |
| 1425 | + <td colspan="2" class="ui-widget-content"> | |
| 1426 | + <input type="checkbox" id="check17" name="receipt_number_check"> | |
| 1427 | + <label for="check17">010-1234-5678</label></td> | |
| 1428 | + <td colspan="2" class="ui-widget-content"> | |
| 1429 | + <input type="checkbox" id="check18" name="receipt_number_check"> | |
| 1430 | + <label for="check18">010-1234-5678</label></td> | |
| 1431 | + </tr> | |
| 1432 | + <tr> | |
| 1433 | + <td colspan="2" class="ui-widget-content"> | |
| 1434 | + <input type="checkbox" id="check19" name="receipt_number_check"> | |
| 1435 | + <label for="check19">010-1234-5678</label></td> | |
| 1436 | + <td colspan="2" class="ui-widget-content"> | |
| 1437 | + <input type="checkbox" id="check20" name="receipt_number_check"> | |
| 1438 | + <label for="check20">010-1234-5678</label></td> | |
| 1439 | + </tr> | |
| 1440 | + </tbody> | |
| 1441 | + </table> | |
| 1442 | + | |
| 1443 | + <!-- <ul class="thead_ul"> | |
| 1444 | + <li></li> | |
| 1445 | + <li> | |
| 1446 | + 번호 | |
| 1447 | + <button type="button" class="btn_sort_up"><img src="/publish/images/sortUp.png"></button> | |
| 1448 | + <button type="button" class="btn_sort_down"><img src="/publish/images/sortDown.png"></button> | |
| 1449 | + </li> | |
| 1450 | + <li></li> | |
| 1451 | + <li>번호 | |
| 1452 | + <button type="button" class="btn_sort_up"><img src="/publish/images/sortUp.png"></button> | |
| 1453 | + <button type="button" class="btn_sort_down"><img src="/publish/images/sortDown.png"></button></li> | |
| 1454 | + </ul> | |
| 1455 | + <ul class="tbody_ul"> | |
| 1456 | + <li class="ui-widget-content"><input type="checkbox" id="check1"></li> | |
| 1457 | + <li class="ui-widget-content"><label for="check1">010-1234-5678</label></li> | |
| 1458 | + <li class="ui-widget-content"><input type="checkbox" id="check2"></li> | |
| 1459 | + <li class="ui-widget-content"><label for="check2">010-1234-5678</label></li> | |
| 1460 | + </ul> --> | |
| 1461 | + </div> | |
| 1462 | + <div class="put_right"> | |
| 1463 | + <button type="button" class="btnType btnType7">주소록 불러오기</button> | |
| 1464 | + <button type="button" class="btnType btnType7">엑셀 불러오기</button> | |
| 1465 | + <div class="btn_popup_wrap"> | |
| 1466 | + <button type="button" class="btnType btnType3">오류 검사 <i class="qmMark"></i></button> | |
| 1467 | + <div class="error_hover_cont send_hover_cont"> | |
| 1468 | + <p>휴대폰 번호 입력 시 해당 휴대폰 번호에 대한 형식이 어긋나거나 휴대폰 번호에 오류가 있는지 등을 검사하는 기능</p> | |
| 1469 | + <span>(예시) 010-1234-0001(O) / 010-123-0001(X)</span> | |
| 1470 | + </div> | |
| 1471 | + </div> | |
| 1472 | + <dl class="receipt_info"> | |
| 1473 | + <dt>전체 받는사람</dt> | |
| 1474 | + <dd> | |
| 1475 | + <p><b>10,000,000</b>명</p> | |
| 1476 | + </dd> | |
| 1477 | + <dt>전송완료</dt> | |
| 1478 | + <dd> | |
| 1479 | + <p><b class="c_e40000">20</b>명</p> | |
| 1480 | + </dd> | |
| 1481 | + <dt>잔여 받는사람</dt> | |
| 1482 | + <dd> | |
| 1483 | + <p><b class="c_002c9a">99,999,980</b>명</p> | |
| 1484 | + </dd> | |
| 1485 | + </dl> | |
| 1486 | + </div> | |
| 1487 | + </div> | |
| 1488 | + <div class="list_bottom"> | |
| 1489 | + <ul class="pagination"> | |
| 1490 | + <li class="page_first"><a href="#" title="첫페이지" onclick="customSampleListAjax(1);return false;"><button type="button"><img src="/publish/images/content/page_first.png" alt="첫페이지"></button></a></li> | |
| 1491 | + <li class="page_prev"><a href="#" title="이전10페이지" onclick="customSampleListAjax(1);return false;"><button type="button"><img src="/publish/images/content/page_prev.png" alt="이전10페이지"></button></a></li> | |
| 1492 | + <li class="on"><button type="button"><a href="#" title="현재페이지">1</a></button></li> | |
| 1493 | + <li><button type="button" onclick="customSampleListAjax(2);return false;"><a href="#" title="2페이지">2</a></button></li> | |
| 1494 | + <li><button type="button" onclick="customSampleListAjax(3);return false;"><a href="#" title="3페이지">3</a></button></li> | |
| 1495 | + <li><button type="button" onclick="customSampleListAjax(4);return false;"><a href="#" title="4페이지">4</a></button></li> | |
| 1496 | + <li><button type="button" onclick="customSampleListAjax(5);return false;"><a href="#" title="5페이지">5</a></button></li> | |
| 1497 | + <li class="page_next"><a href="#" title="다음10페이지" onclick="customSampleListAjax(11);return false;"><button type="button"><img src="/publish/images/content/page_next.png" alt="다음10페이지"></button></a></li> | |
| 1498 | + <li class="page_last"><a href="#" title="마지막페이지" onclick="customSampleListAjax(52);return false;"><button type="button"><img src="/publish/images/content/page_last.png" alt="마지막페이지"></button></a></li> | |
| 1499 | + </ul> | |
| 1500 | + <div class="list_bottom_right"> | |
| 1501 | + <button type="button" class="btnType btn_gray fill">초기화</button> | |
| 1502 | + <div class="btn_popup_wrap"> | |
| 1503 | + <button type="button" class="btnType btn_yellow fill btn_check_one">1명씩 선택<i class="qmMark"></i></button> | |
| 1504 | + <div class="error_hover_cont send_hover_cont"> | |
| 1505 | + <p style="line-height:1.3;">마우스를 누르고 있으면 받는사람을 연속적으로 20명까지 선택할 수 있습니다.</p> | |
| 1506 | + </div> | |
| 1507 | + </div> | |
| 1508 | + </div> | |
| 1509 | + </div> | |
| 1510 | + </div> | |
| 1511 | + </td> | |
| 1512 | + </tr> | |
| 1513 | + <tr> | |
| 1514 | + <th colspan="2" class="billingAmount"> | |
| 1515 | + <div> | |
| 1516 | + <div class="final_pay"> | |
| 1517 | + <div class="pay_info_list"> | |
| 1518 | + <p>발송금액 :</p> | |
| 1519 | + <div class="info" id="repPriceTxt" style="display: none;"> | |
| 1520 | + 단문 : <strong>20</strong>건<span>/</span>장문 : <strong>150</strong>건<span>/</span>그림문자 : <strong>30</strong>건 | |
| 1521 | + </div> | |
| 1522 | + </div> | |
| 1523 | + <p class="price"><span id="repPriceTxt"></span><span id="totalPriceTxt">0</span> 원<span></span></p> | |
| 1524 | + </div> | |
| 1525 | + <p style="text-align: right; font-size: 14px; color: #666; margin: -10px 0 15px 0; font-weight: 300;">* 이벤트회원의 발송금액은 이벤트단가를 적용하여 계산된 금액이므로 실제 발송금액과 다를 수 있습니다.</p> | |
| 1526 | + <div class="pay_type clearfix"> | |
| 1527 | + <div> | |
| 1528 | + <input type="radio" id="radio_bill_1" name="radio_bill" checked="checked"> | |
| 1529 | + <label for="radio_bill_1">보유잔액</label> | |
| 1530 | + | |
| 1531 | + <label for="userMoney" class="label">보유잔액</label> | |
| 1532 | + <input type="text" id="userMoney" name="userMoney" value="0" readonly=""> | |
| 1533 | + <span class="won">원</span> | |
| 1534 | + <button type="button" class="btnType btnType21" onclick="location.href='/web/member/pay/PayView.do'">충전</button> | |
| 1535 | + </div> | |
| 1536 | + <div><button type="button" data-tooltip="popup07" class="btnType btnType3 btn_event_cash">이벤트 잔액</button></div> | |
| 1537 | + </div> | |
| 1538 | + <!--발송금액 아래 등급별 가격안내 추가--> | |
| 1539 | + <div class="my_price_wrap"> | |
| 1540 | + <div class="center-line"></div> | |
| 1541 | + <ul> | |
| 1542 | + <li class="title"> | |
| 1543 | + <img src="/publish/images/content/icon_mypage_message.png" alt="">나의 단가 <span>:</span> | |
| 1544 | + </li> | |
| 1545 | + <li class="price_line"> | |
| 1546 | + <span class="type">단문</span> | |
| 1547 | + <span class="price">18</span>원 | |
| 1548 | + <span class="line">/ </span> | |
| 1549 | + </li> | |
| 1550 | + <li class="price_line"> | |
| 1551 | + <span class="type">장문</span> | |
| 1552 | + <span class="price">50</span>원 | |
| 1553 | + <span class="line">/ </span> | |
| 1554 | + </li> | |
| 1555 | + <li class="price_line"> | |
| 1556 | + <span class="type">그림</span> | |
| 1557 | + <span class="price">90</span>원 | |
| 1558 | + (2장 : 110원 / 3장 : 130원) | |
| 1559 | + </li> | |
| 1560 | + </ul> | |
| 1561 | + </div> | |
| 1562 | + </div> | |
| 1563 | + </th> | |
| 1564 | + </tr> | |
| 1565 | + <tr> | |
| 1566 | + <th scope="row">추천인 ID</th> | |
| 1567 | + <td class="check_num"> | |
| 1568 | + <input id="radio5" type="radio" name="recom" checked="checked"> | |
| 1569 | + <label for="radio5">없음</label> | |
| 1570 | + <input id="radio6" type="radio" name="recom"> | |
| 1571 | + <label for="radio6">있음</label> | |
| 1572 | + <div> | |
| 1573 | + <label for="id" class="label"></label> | |
| 1574 | + <input type="text" size="20" id="id" placeholder="추천인 아이디 입력" onfocus="this.placeholder=''" onblur="this.placeholder='추천인 아이디 입력'"> | |
| 1575 | + <button type="button" class="btnType btnType9">추천인 확인</button> | |
| 1576 | + </div> | |
| 1577 | + </td> | |
| 1578 | + </tr> | |
| 1579 | + </tbody> | |
| 1580 | + </table> | |
| 1581 | + </div><!-- send left 문자 보내기 입력 --> | |
| 1582 | + <!-- send right 문자 보내기 미리보기 --> | |
| 1583 | + <div class="send_right"> | |
| 1584 | + <div class="phone"> | |
| 1585 | + <div class="phoneIn"> | |
| 1586 | + <div> | |
| 1587 | + <p class="prev_p"><img src="/publish/images/search. png">미리보기</p> | |
| 1588 | + <div class="text_length2 clearfix" style="display: none;"> | |
| 1589 | + <span class="msg_com msg_short">단문</span> | |
| 1590 | + <div> | |
| 1591 | + <span>글자크기</span> | |
| 1592 | + <button type="button"><img src="/publish/images/ content/font_plus.png"></button> | |
| 1593 | + <button type="button"><img src="/publish/images/ content/font_minus.png"></button> | |
| 1594 | + </div> | |
| 1595 | + </div> | |
| 1596 | + <div class="text_length2 clearfix"> | |
| 1597 | + <span class="msg_com msg_photo">포토</span> | |
| 1598 | + <ul class="photo_msg_num"> | |
| 1599 | + <li onclick="imgClick(0);"><a href="#none">1</a></ li> | |
| 1600 | + <li onclick="imgClick(1);"><a href="#none">2</a></ li> | |
| 1601 | + <li onclick="imgClick(2);"><a href="#none">3</a></ li> | |
| 1602 | + </ul> | |
| 1603 | + <div> | |
| 1604 | + <span>글자크기</span> | |
| 1605 | + <button type="button"><img src="/publish/images/ content/font_plus.png"></button> | |
| 1606 | + <button type="button"><img src="/publish/images/ content/font_minus.png"></button> | |
| 1607 | + </div> | |
| 1608 | + </div> | |
| 1609 | + <!-- 텍스트 미리보기 --> | |
| 1610 | + <div class="text_preview"> | |
| 1611 | + <div class="preiew_img"> | |
| 1612 | + <div class="img_box"> | |
| 1613 | + <img src="/publish/images/content/ photo_sample01.jpg"> | |
| 1614 | + </div> | |
| 1615 | + <div class="img_box"> | |
| 1616 | + <img src="/publish/images/content/ photo_sample01.jpg"> | |
| 1617 | + </div> | |
| 1618 | + <div class="img_box"> | |
| 1619 | + <img src="/publish/images/content/excel.jpg"> | |
| 1620 | + </div> | |
| 1621 | + </div> | |
| 1622 | + <div class="preview_auto"> | |
| 1623 | + <p class="ad_tit">(광고)</p> | |
| 1624 | + <p class="none_txt">내용을 입력해주세요.</p> | |
| 1625 | + <p class="realtime"></p> | |
| 1626 | + <p class="deny_receipt">무료 거부 080-0000-0000</p> | |
| 1627 | + </div> | |
| 1628 | + </div> | |
| 1629 | + <!-- //텍스트 미리보기 --> | |
| 1630 | + </div> | |
| 1631 | + </div> | |
| 1632 | + <p class="addText">※ 단말기 설정에 따라 다르게 보일 수 있습니다<p> | |
| 1633 | + </div> | |
| 1634 | + <div class="phone_bottom"> | |
| 1635 | + <div class="send_rev"> | |
| 1636 | + <div class="send_content"> | |
| 1637 | + <div class="rev_radio"> | |
| 1638 | + <ul> | |
| 1639 | + <li><input type="radio" id="reserYnN" name="reserYn" value="N" checked="checked"><label for="reserYnN">즉시</label></li> | |
| 1640 | + <li><input type="radio" id="reserYnY" name="reserYn" value="Y"><label for="reserYnY">예약</label></li> | |
| 1641 | + </ul> | |
| 1642 | + </div> | |
| 1643 | + <div class="send_btn"> | |
| 1644 | + <button type="button" class="btnType btnType11" onclick="javascript:fn_sendMsgData(); return false;">발송하기</button> | |
| 1645 | + <button type="button" class="btnType btnType10" onclick="javascript:fnTestSend(); return false;">테스트발송</button> | |
| 1646 | + </div> | |
| 1647 | + </div> | |
| 1648 | + <div class="rev_selected" style="display:none;"> | |
| 1649 | + <div class="rev_top"> | |
| 1650 | + <span>날짜 :</span> | |
| 1651 | + <div class="calendar_wrap"> | |
| 1652 | + <input type="text" class="startDate2 inp resDate calendar02 picker__input" title="검색 시작일" id="startDate2" name="startDate2" value="" data-datecontrol="true" readonly="" aria-haspopup="true" aria-expanded="false" aria-readonly="false" aria-owns="startDate2_root"> | |
| 1653 | + </div> | |
| 1654 | + <div class="selBox"> | |
| 1655 | + <select class="selType1" id="msgResHour" name="msgResHour"> | |
| 1656 | + <option value="00">00시</option> | |
| 1657 | + <option value="01">01시</option> | |
| 1658 | + <option value="02">02시</option> | |
| 1659 | + <option value="03">03시</option> | |
| 1660 | + <option value="04">04시</option> | |
| 1661 | + <option value="05">05시</option> | |
| 1662 | + <option value="06">06시</option> | |
| 1663 | + <option value="07">07시</option> | |
| 1664 | + <option value="08">08시</option> | |
| 1665 | + <option value="09">09시</option> | |
| 1666 | + <option value="10">10시</option> | |
| 1667 | + <option value="11">11시</option> | |
| 1668 | + <option value="12">12시</option> | |
| 1669 | + <option value="13">13시</option> | |
| 1670 | + <option value="14">14시</option> | |
| 1671 | + <option value="15">15시</option> | |
| 1672 | + <option value="16">16시</option> | |
| 1673 | + <option value="17">17시</option> | |
| 1674 | + <option value="18">18시</option> | |
| 1675 | + <option value="19">19시</option> | |
| 1676 | + <option value="20">20시</option> | |
| 1677 | + <option value="21">21시</option> | |
| 1678 | + <option value="22">22시</option> | |
| 1679 | + <option value="23">23시</option> | |
| 1680 | + <option value="24">24시</option> | |
| 1681 | + </select> | |
| 1682 | + <select class="selType1" id="msgResMin" name="msgResMin"> | |
| 1683 | + <option value="00">00분</option> | |
| 1684 | + <option value="05">05분</option> | |
| 1685 | + <option value="10">10분</option> | |
| 1686 | + <option value="15">15분</option> | |
| 1687 | + <option value="20">20분</option> | |
| 1688 | + <option value="25">25분</option> | |
| 1689 | + <option value="30">30분</option> | |
| 1690 | + <option value="35">35분</option> | |
| 1691 | + <option value="40">40분</option> | |
| 1692 | + <option value="45">45분</option> | |
| 1693 | + <option value="50">50분</option> | |
| 1694 | + <option value="55">55분</option> | |
| 1695 | + </select> | |
| 1696 | + </div> | |
| 1697 | + <!-- <div class="rev_bottom"> | |
| 1698 | + <input type="checkbox" id="divideChk" name="divideChk"> | |
| 1699 | + <label for="divideChk">분할전송</label> | |
| 1700 | + <select class="selType1" id="divideCnt" name="divideCnt"> | |
| 1701 | + <option value="2">2</option> | |
| 1702 | + <option value="10">10</option> | |
| 1703 | + <option value="20">20</option> | |
| 1704 | + <option value="30">30</option> | |
| 1705 | + </select> | |
| 1706 | + <label for="divideCnt">건</label> | |
| 1707 | + <select class="selType1" id="divideTime" name="divideTime"> | |
| 1708 | + <option value="5">05분</option> | |
| 1709 | + <option value="10">10분</option> | |
| 1710 | + <option value="15">15분</option> | |
| 1711 | + <option value="20">20분</option> | |
| 1712 | + <option value="30">30분</option> | |
| 1713 | + </select> | |
| 1714 | + <label for="divideTime">간격</label> | |
| 1715 | + </div> --> | |
| 1716 | + </div> | |
| 1717 | + </div> | |
| 1718 | + | |
| 1719 | + </div> | |
| 1720 | + </div> | |
| 1721 | + </div> | |
| 1722 | + </div> | |
| 1723 | + <!--// send right 문자 보내기 미리보기 --> | |
| 1724 | + </div> | |
| 1725 | + </div> | |
| 1726 | + <!--// tab content1 --> | |
| 1727 | + <!-- tab content2 --> | |
| 1728 | + <div class="top_content get_excel" id="tab1_2"> | |
| 1729 | + <div class="heading"> | |
| 1730 | + <h2>대량문자</h2> | |
| 1731 | + </div> | |
| 1732 | + <div class="titBox"> | |
| 1733 | + <p>- 각각 다른 사람에게 다른 내용의 메시지를 한번에 보낼 수 있습니다. (최대 1만 건)</p> | |
| 1734 | + <p>- 광고성 메시지는 반드시 유의사항 확인 후 발송해 주시기 바랍니다. <span><a href="#" data-tooltip="adpopup01">[광고문자 관련규정 안내]</a></span></p> | |
| 1735 | + <p>- 엑셀영역은 복사, 붙여넣기가 가능합니다.</p> | |
| 1736 | + <button type="button" class="titBox_btn1"><i></i>사용안내</button> | |
| 1737 | + </div> | |
| 1738 | + <div class="send_general"> | |
| 1739 | + <!-- send left 문자 보내기 입력 --> | |
| 1740 | + <div class="send_left"> | |
| 1741 | + <table class="tType1"> | |
| 1742 | + <caption>일반 문자보내기 분류 번호 내용 등을 입력하는 표</caption> | |
| 1743 | + <colgroup> | |
| 1744 | + <col style="width: 120px;"> | |
| 1745 | + <col style="width: auto;"> | |
| 1746 | + </colgroup> | |
| 1747 | + <tbody> | |
| 1748 | + <tr> | |
| 1749 | + <th scope="row">문자분류</th> | |
| 1750 | + <td class="send_cf"> | |
| 1751 | + <input id="radio1" type="radio" name="send_clas" checked="checked"> | |
| 1752 | + <label for="radio1">일반</label> | |
| 1753 | + <input id="radio2" type="radio" name="send_clas"> | |
| 1754 | + <label for="radio2">광고</label> | |
| 1755 | + </td> | |
| 1756 | + </tr> | |
| 1757 | + <tr> | |
| 1758 | + <th scope="row">발신번호</th> | |
| 1759 | + <td class="put_num"> | |
| 1760 | + <label for="num" class="label"></label> | |
| 1761 | + <select id="num" class="sel_number"> | |
| 1762 | + <option value="">010-1234-5678</option> | |
| 1763 | + <option value="">010-1234-5678</option> | |
| 1764 | + <option value="">010-1234-5678</option> | |
| 1765 | + <option value="">010-1234-5678</option> | |
| 1766 | + </select> | |
| 1767 | + <button type="button" class="btnType btnType6">번호추가</button> | |
| 1768 | + </td> | |
| 1769 | + </tr> | |
| 1770 | + <tr> | |
| 1771 | + <th scope="row">제목</th> | |
| 1772 | + <td> | |
| 1773 | + <!-- 단문일 때 --> | |
| 1774 | + <label for="text" class="label"></label> | |
| 1775 | + <input type="text" size="20" id="text" class="w100" placeholder="" onfocus="this.placeholder=''" disabled> | |
| 1776 | + <!-- 장문일 때 --> | |
| 1777 | + <!-- <input type="text" size="20" id="text" class="w100" placeholder="제목을 입력해주세요 (최대30byte, 발송관리용)" onfocus="this.placeholder=''" onblur="this.placeholder='제목을 입력해주세요 (최대30byte, 발송관리용)'"> --> | |
| 1778 | + </td> | |
| 1779 | + </tr> | |
| 1780 | + <!-- 단문 --> | |
| 1781 | + <tr> | |
| 1782 | + <th scope="row" class="vTop">내용</th> | |
| 1783 | + <td class="putText"> | |
| 1784 | + <div class="clearfix"> | |
| 1785 | + <div class="put_left short"> | |
| 1786 | + <div class="ad_txt"> | |
| 1787 | + <p>(광고)</p> | |
| 1788 | + </div> | |
| 1789 | + <label for="textarea" class="label"></label> | |
| 1790 | + <textarea id="textarea" class="put_text" placeholder="내용을 입력해주세요. | |
| 1791 | +-90btye 초과 시 LMS 자동전환 | |
| 1792 | +-파일첨부 시 MMS 자동전환"></textarea> | |
| 1793 | + <div class="text_length"> | |
| 1794 | + <div> | |
| 1795 | + <p>무료 거부 080-0000-0000</p> | |
| 1796 | + </div> | |
| 1797 | + <div> | |
| 1798 | + <p><span class="fwMd">15 /<span><span class="c_002c9a fwMd"> 90</span>byte</p> | |
| 1799 | + <span class="msg_com msg_short">단문</span> | |
| 1800 | + </div> | |
| 1801 | + </div> | |
| 1802 | + </div> | |
| 1803 | + <div class="put_right"> | |
| 1804 | + <div class="btn_popup_wrap spc_wrap"> | |
| 1805 | + <button type="button" class="btnType btnType7" onclick="miniPopup(this)">특수문자</button> | |
| 1806 | + <div class="send_miniPop spc_character"> | |
| 1807 | + <div class="tab_character"> | |
| 1808 | + <a href="#none" class="on">특수문자</a> | |
| 1809 | + <a href="#none">웃음</a> | |
| 1810 | + <a href="#none">슬픔</a> | |
| 1811 | + <a href="#none">분노</a> | |
| 1812 | + <a href="#none">사랑</a> | |
| 1813 | + <a href="#none">그외</a> | |
| 1814 | + </div> | |
| 1815 | + <!-- 특수문자 --> | |
| 1816 | + <div class="cnt_character on"> | |
| 1817 | + <div class="box_character"> | |
| 1818 | + <a href="#">※</a> | |
| 1819 | + <a href="#">☆</a> | |
| 1820 | + <a href="#">★</a> | |
| 1821 | + <a href="#">○</a> | |
| 1822 | + <a href="#">●</a> | |
| 1823 | + <a href="#">◎</a> | |
| 1824 | + <a href="#">◇</a> | |
| 1825 | + <a href="#">◆</a> | |
| 1826 | + <a href="#">□</a> | |
| 1827 | + <a href="#">■</a> | |
| 1828 | + <a href="#">△</a> | |
| 1829 | + <a href="#">▲</a> | |
| 1830 | + <a href="#">▽</a> | |
| 1831 | + <a href="#">▼</a> | |
| 1832 | + <a href="#">→</a> | |
| 1833 | + <a href="#">←</a> | |
| 1834 | + <a href="#">↑</a> | |
| 1835 | + <a href="#">↓</a> | |
| 1836 | + <a href="#">↔</a> | |
| 1837 | + <a href="#">〓</a> | |
| 1838 | + <a href="#">◁</a> | |
| 1839 | + <a href="#">♪</a> | |
| 1840 | + <a href="#">◀</a> | |
| 1841 | + <a href="#">▷</a> | |
| 1842 | + <a href="#">▶</a> | |
| 1843 | + <a href="#">♤</a> | |
| 1844 | + <a href="#">♠</a> | |
| 1845 | + <a href="#">♡</a> | |
| 1846 | + <a href="#">♥</a> | |
| 1847 | + <a href="#">♧</a> | |
| 1848 | + <a href="#">♣</a> | |
| 1849 | + <a href="#">⊙</a> | |
| 1850 | + <a href="#">◈</a> | |
| 1851 | + <a href="#">▣</a> | |
| 1852 | + <a href="#">◐</a> | |
| 1853 | + <a href="#">◑</a> | |
| 1854 | + <a href="#">▒</a> | |
| 1855 | + <a href="#">▦</a> | |
| 1856 | + <a href="#">♨</a> | |
| 1857 | + <a href="#">☏</a> | |
| 1858 | + <a href="#">☎</a> | |
| 1859 | + <a href="#">☞</a> | |
| 1860 | + <a href="#">☜</a> | |
| 1861 | + <a href="#">㈜</a> | |
| 1862 | + <a href="#">™</a> | |
| 1863 | + <a href="#">℡</a> | |
| 1864 | + <a href="#">ㆀ</a> | |
| 1865 | + <a href="#">ε</a> | |
| 1866 | + <a href="#">『</a> | |
| 1867 | + <a href="#">』</a> | |
| 1868 | + <a href="#">ⓛ</a> | |
| 1869 | + <a href="#">∏</a> | |
| 1870 | + <a href="#">ご</a> | |
| 1871 | + <a href="#">♂</a> | |
| 1872 | + <a href="#">↗</a> | |
| 1873 | + <a href="#">↙</a> | |
| 1874 | + <a href="#">↖</a> | |
| 1875 | + <a href="#">↘</a> | |
| 1876 | + <a href="#">ψ</a> | |
| 1877 | + </div> | |
| 1878 | + </div> | |
| 1879 | + <!-- //특수문자 --> | |
| 1880 | + | |
| 1881 | + <!-- 웃음 --> | |
| 1882 | + <div class="cnt_character emt_character"> | |
| 1883 | + <div class="box_character"> | |
| 1884 | + <a href="#">⌒⌒</a> | |
| 1885 | + <a href="#">^_^</a> | |
| 1886 | + <a href="#">^0^</a> | |
| 1887 | + <a href="#">s( ̄▽ ̄)/</a> | |
| 1888 | + <a href="#">(/^^)/</a> | |
| 1889 | + <a href="#">^o^~♬</a> | |
| 1890 | + <a href="#">^.~</a> | |
| 1891 | + <a href="#">^-^b</a> | |
| 1892 | + <a href="#">^▽^</a> | |
| 1893 | + <a href="#">^ε^</a> | |
| 1894 | + <a href="#">(^^)γ</a> | |
| 1895 | + <a href="#">(~^^)~</a> | |
| 1896 | + <a href="#">☆(~.^)/</a> | |
| 1897 | + <a href="#">(*^o^*)</a> | |
| 1898 | + <a href="#">n_n</a> | |
| 1899 | + <a href="#">↖(^▽^)↗</a> | |
| 1900 | + <a href="#">( ̄∇ ̄)</a> | |
| 1901 | + <a href="#">(*^.^)♂</a> | |
| 1902 | + <a href="#">*^^*</a> | |
| 1903 | + <a href="#">ㅎ.ㅎ</a> | |
| 1904 | + <a href="#">=^.^=</a> | |
| 1905 | + <a href="#">^▽^</a> | |
| 1906 | + <a href="#">~_~</a> | |
| 1907 | + <a href="#">(=^▽^)/♪</a> | |
| 1908 | + </div> | |
| 1909 | + </div> | |
| 1910 | + <!-- //웃음 --> | |
| 1911 | + | |
| 1912 | + <!-- 슬픔 --> | |
| 1913 | + <div class="cnt_character emt_character"> | |
| 1914 | + <div class="box_character"> | |
| 1915 | + <a href="#">(づ_T)</a> | |
| 1916 | + <a href="#">(ㅠ.ㅠ)</a> | |
| 1917 | + <a href="#">(#_-)</a> | |
| 1918 | + <a href="#">o(T^T)o</a> | |
| 1919 | + <a href="#">ㅠ.ㅠ</a> | |
| 1920 | + <a href="#">(-_-メ)</a> | |
| 1921 | + <a href="#">Y.Y</a> | |
| 1922 | + <a href="#">TmT</a> | |
| 1923 | + <a href="#">ご.ご</a> | |
| 1924 | + <a href="#">(=_=;)</a> | |
| 1925 | + <a href="#">⊇.⊆</a> | |
| 1926 | + <a href="#">(o_Φ)</a> | |
| 1927 | + <a href="#">∋.∈</a> | |
| 1928 | + <a href="#">(___)_</a> | |
| 1929 | + <a href="#">(-.¥)</a> | |
| 1930 | + <a href="#">@_O</a> | |
| 1931 | + <a href="#">●⊙</a> | |
| 1932 | + <a href="#">(♨_♨)</a> | |
| 1933 | + <a href="#">(X_X)</a> | |
| 1934 | + <a href="#">Θ_Θ</a> | |
| 1935 | + <a href="#">(∏.∏)</a> | |
| 1936 | + <a href="#">(づ_ど)</a> | |
| 1937 | + <a href="#">( ̄^ ̄)</a> | |
| 1938 | + </div> | |
| 1939 | + </div> | |
| 1940 | + <!-- //슬픔 --> | |
| 1941 | + | |
| 1942 | + <!-- 분노 --> | |
| 1943 | + <div class="cnt_character emt_character"> | |
| 1944 | + <div class="box_character"> | |
| 1945 | + <a href="#">Θ_Θ</a> | |
| 1946 | + <a href="#">=-_-a</a> | |
| 1947 | + <a href="#">('o')</a> | |
| 1948 | + <a href="#">(`へ´)</a> | |
| 1949 | + <a href="#">(-ヘㅡメ)凸</a> | |
| 1950 | + <a href="#">⊙⊙ㆀ</a> | |
| 1951 | + <a href="#">⊙.⊙</a> | |
| 1952 | + <a href="#">ㅡㅡ+</a> | |
| 1953 | + <a href="#">(`o´)y</a> | |
| 1954 | + <a href="#">づºДº)つ</a> | |
| 1955 | + <a href="#">O_O</a> | |
| 1956 | + <a href="#">(@.@)</a> | |
| 1957 | + <a href="#">★.★</a> | |
| 1958 | + <a href="#">(;¬_¬)</a> | |
| 1959 | + <a href="#">┏(;-_-)┛</a> | |
| 1960 | + <a href="#">┏(-_-メ)┓</a> | |
| 1961 | + <a href="#">(><ㆀ)/</a> | |
| 1962 | + <a href="#">--メ凸</a> | |
| 1963 | + <a href="#">(`_)乂(_′)</a> | |
| 1964 | + <a href="#">(-_-)c+_=)</a> | |
| 1965 | + </div> | |
| 1966 | + </div> | |
| 1967 | + <!-- //분노 --> | |
| 1968 | + | |
| 1969 | + <!-- 사랑 --> | |
| 1970 | + <div class="cnt_character emt_character"> | |
| 1971 | + <div class="box_character"> | |
| 1972 | + <a href="#">♥.♥</a> | |
| 1973 | + <a href="#">^o^~♬</a> | |
| 1974 | + <a href="#">(*^}{^*)</a> | |
| 1975 | + <a href="#">ⓛⓞⓥⓔ</a> | |
| 1976 | + <a href="#">(*_*)</a> | |
| 1977 | + <a href="#">(♡.♡)</a> | |
| 1978 | + <a href="#">ε♡₃ε♥</a> | |
| 1979 | + <a href="#">(*..)(..*)</a> | |
| 1980 | + <a href="#">(~.^)s</a> | |
| 1981 | + <a href="#">☞♡☜</a> | |
| 1982 | + <a href="#">*♥o♥*</a> | |
| 1983 | + <a href="#">(/^o^)/♡</a> | |
| 1984 | + <a href="#">@-m-m--</a> | |
| 1985 | + <a href="#">=>>------▷♡</a> | |
| 1986 | + <a href="#">(*^^)σ(^_^)</a> | |
| 1987 | + <a href="#">(*^-^)♡(^o^*)</a> | |
| 1988 | + <a href="#">(づ^.^)づ~♡</a> | |
| 1989 | + <a href="#">\(*^▽^*)ノ</a> | |
| 1990 | + <a href="#">*⌒З^)^.⌒*)</a> | |
| 1991 | + <a href="#">(づ ̄³ ̄)づ~</a> | |
| 1992 | + <a href="#">(づ ̄³ ̄)づ</a> | |
| 1993 | + <a href="#">(^*^)kiss</a> | |
| 1994 | + <a href="#">(*'-⌒*)ⓥ</a> | |
| 1995 | + <a href="#">s( ̄▽ ̄)/</a> | |
| 1996 | + </div> | |
| 1997 | + </div> | |
| 1998 | + <!-- //사랑 --> | |
| 1999 | + | |
| 2000 | + <!-- 그외 --> | |
| 2001 | + <div class="cnt_character emt_character emt_etc "> | |
| 2002 | + <div class="box_character"> | |
| 2003 | + <a href="#"><:3)--</a> | |
| 2004 | + <a href="#">(^(oo)^)</a> | |
| 2005 | + <a href="#">(:::[</a> | |
| 2006 | + <a href="#">]:::)</a> | |
| 2007 | + <a href="#">[( ̄. ̄)]zZ</a> | |
| 2008 | + <a href="#">(``)(``)</a> | |
| 2009 | + <a href="#">(T(oo)T)</a> | |
| 2010 | + <a href="#">(^.^)=O)#.#)</a> | |
| 2011 | + <a href="#">?‥…─━★</a> | |
| 2012 | + <a href="#">(__)zzz</a> | |
| 2013 | + <a href="#">(=ㅅ)=333</a> | |
| 2014 | + <a href="#"><(>.<ㆀ)></a> | |
| 2015 | + <a href="#">>(/////)<</a> | |
| 2016 | + <a href="#">((ど(</a> | |
| 2017 | + <a href="#">^0^</a> | |
| 2018 | + <a href="#">)つ))</a> | |
| 2019 | + <a href="#">■■■■■□90%</a> | |
| 2020 | + <a href="#">( ̄_ ̄>-(^▽^;)</a> | |
| 2021 | + <a href="#">∑⊙)++333=◀</a> | |
| 2022 | + <a href="#">(ノ^_^)ノ~~⑩</a> | |
| 2023 | + <a href="#">(^▽^)/\(^_^)</a> | |
| 2024 | + <a href="#">(*.*)@==(`.`)</a> | |
| 2025 | + <a href="#">(っㅡㅡ)つ━●</a> | |
| 2026 | + <a href="#">(``)(</a> | |
| 2027 | + <a href="#">:)(..)(:</a> | |
| 2028 | + <a href="#">(``)</a> | |
| 2029 | + </div> | |
| 2030 | + </div> | |
| 2031 | + <!-- //그외 --> | |
| 2032 | + <button type="button" class="btn_close" onclick="miniPopup(this)">닫기</button> | |
| 2033 | + </div> | |
| 2034 | + </div> | |
| 2035 | + <div class="btn_popup_wrap convers_wrap"> | |
| 2036 | + <button type="button" class="btnType btnType7" onclick="miniPopup(this)">특정문구 일괄변환<i class="qmMark"></i></button> | |
| 2037 | + <div class="send_miniPop convers"> | |
| 2038 | + <div> | |
| 2039 | + <div class="convers_top"> | |
| 2040 | + <span>특정문구 일괄변환이란?</span> | |
| 2041 | + <p>주소록, 엑셀에 입력된 내용을 이용해 수신자마다 다른 내용의 메시지를 발송하는 기능</p> | |
| 2042 | + </div> | |
| 2043 | + <div class="convers_middle"><a href="#">#{이름}</a></div> | |
| 2044 | + <div class="convers_bottom"> | |
| 2045 | + <a href="#">#{1}</a> | |
| 2046 | + <a href="#">#{2}</a> | |
| 2047 | + <a href="#">#{3}</a> | |
| 2048 | + <a href="#">#{4}</a> | |
| 2049 | + </div> | |
| 2050 | + </div> | |
| 2051 | + </div> | |
| 2052 | + </div> | |
| 2053 | + <button type="button" class="btnType btnType7">내문자함</button> | |
| 2054 | + <button type="button" class="btnType btnType8" onclick="showPotoediter();">이미지 불러오기</button> | |
| 2055 | + <div class="send_btnWrap"> | |
| 2056 | + <button type="button" class="btnType btnType9">문자저장</button> | |
| 2057 | + <button type="button" class="btnType btnType9">초기화</button> | |
| 2058 | + </div> | |
| 2059 | + </div> | |
| 2060 | + </div> | |
| 2061 | + <p>* 현재 [단문] <span class="c_e40000 fwBold">120,000</span>건 발송 가능합니다.</p> | |
| 2062 | + </td> | |
| 2063 | + </tr> | |
| 2064 | + <!-- 포토 --> | |
| 2065 | + <tr style="display: none;"> | |
| 2066 | + <th scope="row">내용</th> | |
| 2067 | + <td class="putText"> | |
| 2068 | + <div class="clearfix"> | |
| 2069 | + <div class="put_left photo"> | |
| 2070 | + <ul class="thumb_wrap"> | |
| 2071 | + <li class="on"> | |
| 2072 | + <div> | |
| 2073 | + <img src="/publish/images/content/thumb1.jpg" alt="thumb1"> | |
| 2074 | + </div> | |
| 2075 | + <button type="button" class="file_close"><img src="/publish/images/content/thumb_del.png" alt="첨부파일 삭제"></button> | |
| 2076 | + <button type="button" class="file_close_on"><img src="/publish/images/content/thumb_del_on.png" alt="첨부파일 삭제"></button> | |
| 2077 | + </li> | |
| 2078 | + <li> | |
| 2079 | + <div> | |
| 2080 | + <img src="/publish/images/content/thumb2.jpg" alt="thumb1"> | |
| 2081 | + </div> | |
| 2082 | + <button type="button" class="file_close"><img src="/publish/images/content/thumb_del.png" alt="첨부파일 삭제"></button> | |
| 2083 | + <button type="button" class="file_close_on"><img src="/publish/images/content/thumb_del_on.png" alt="첨부파일 삭제"></button> | |
| 2084 | + </li> | |
| 2085 | + <li> | |
| 2086 | + <div> | |
| 2087 | + <img src="/publish/images/content/thumb3.jpg" alt="thumb1"> | |
| 2088 | + </div> | |
| 2089 | + <button type="button" class="file_close"><img src="/publish/images/content/thumb_del.png" alt="첨부파일 삭제"></button> | |
| 2090 | + <button type="button" class="file_close_on"><img src="/publish/images/content/thumb_del_on.png" alt="첨부파일 삭제"></button> | |
| 2091 | + </li> | |
| 2092 | + </ul> | |
| 2093 | + <div class="ad_txt"> | |
| 2094 | + <p>(광고)</p> | |
| 2095 | + </div> | |
| 2096 | + <label for="textarea" class="label"></label> | |
| 2097 | + <textarea id="textarea" class="put_text"> | |
| 2098 | +해마다 찾아오는 봄이지만 | |
| 2099 | +봄맞이 대청소라는 말처럼, | |
| 2100 | +새 봄을 맞아 봄맞이 마음청소 한번하고 가실께요~ㅎㅎ | |
| 2101 | + | |
| 2102 | +"새술은 새부대에"라는 말처럼 버리고 싶은 기억들을 | |
| 2103 | +깨끗이 비워보는 겁니다. | |
| 2104 | + | |
| 2105 | +새봄에 새마음으로 새롭게 시작해 보는 겁니다. | |
| 2106 | + | |
| 2107 | +해마다 찾아오는 봄이지만 | |
| 2108 | +봄맞이 대청소라는 말처럼, | |
| 2109 | +새 봄을 맞아 봄맞이 마음청소 한번하고 가실께요~ㅎㅎ | |
| 2110 | + | |
| 2111 | +"새술은 새부대에"라는 말처럼 버리고 싶은 기억들을 | |
| 2112 | +깨끗이 비워보는 겁니다. | |
| 2113 | + | |
| 2114 | +새봄에 새마음으로 새롭게 시작해 보는 겁니다. | |
| 2115 | + | |
| 2116 | +해마다 찾아오는 봄이지만 | |
| 2117 | +봄맞이 대청소라는 말처럼, | |
| 2118 | +새 봄을 맞아 봄맞이 마음청소 한번하고 가실께요~ㅎㅎ | |
| 2119 | + | |
| 2120 | +"새술은 새부대에"라는 말처럼 버리고 싶은 기억들을 | |
| 2121 | +깨끗이 비워보는 겁니다. | |
| 2122 | + | |
| 2123 | +새봄에 새마음으로 새롭게 시작해 보는 겁니다. | |
| 2124 | + </textarea> | |
| 2125 | + <div class="text_length"> | |
| 2126 | + <div> | |
| 2127 | + <p>무료 거부 080-0000-0000</p> | |
| 2128 | + </div> | |
| 2129 | + <div> | |
| 2130 | + <p><span class="fwMd">15 /<span><span class="c_002c9a fwMd"> 2000</span>byte</p> | |
| 2131 | + <span class="msg_com msg_photo">그림</span> | |
| 2132 | + </div> | |
| 2133 | + </div> | |
| 2134 | + </div> | |
| 2135 | + <div class="put_right"> | |
| 2136 | + <div class="btn_popup_wrap spc_wrap"> | |
| 2137 | + <button type="button" class="btnType btnType7" onclick="miniPopup(this)">특수문자</button> | |
| 2138 | + <div class="send_miniPop spc_character"> | |
| 2139 | + <div> | |
| 2140 | + <a href="#"></a> | |
| 2141 | + <a href="#"></a> | |
| 2142 | + <a href="#"></a> | |
| 2143 | + <a href="#"></a> | |
| 2144 | + <a href="#"></a> | |
| 2145 | + <a href="#"></a> | |
| 2146 | + <a href="#"></a> | |
| 2147 | + <a href="#"></a> | |
| 2148 | + <a href="#"></a> | |
| 2149 | + <a href="#"></a> | |
| 2150 | + <a href="#"></a> | |
| 2151 | + <a href="#"></a> | |
| 2152 | + <a href="#"></a> | |
| 2153 | + <a href="#"></a> | |
| 2154 | + <a href="#"></a> | |
| 2155 | + <a href="#"></a> | |
| 2156 | + <a href="#"></a> | |
| 2157 | + <a href="#"></a> | |
| 2158 | + <a href="#"></a> | |
| 2159 | + <a href="#"></a> | |
| 2160 | + <a href="#"></a> | |
| 2161 | + <a href="#"></a> | |
| 2162 | + <a href="#"></a> | |
| 2163 | + <a href="#"></a> | |
| 2164 | + <a href="#"></a> | |
| 2165 | + <a href="#"></a> | |
| 2166 | + <a href="#"></a> | |
| 2167 | + <a href="#"></a> | |
| 2168 | + <a href="#"></a> | |
| 2169 | + <a href="#"></a> | |
| 2170 | + <a href="#"></a> | |
| 2171 | + <a href="#"></a> | |
| 2172 | + <a href="#"></a> | |
| 2173 | + <a href="#"></a> | |
| 2174 | + <a href="#"></a> | |
| 2175 | + <a href="#"></a> | |
| 2176 | + <a href="#"></a> | |
| 2177 | + <a href="#"></a> | |
| 2178 | + <a href="#"></a> | |
| 2179 | + <a href="#"></a> | |
| 2180 | + <a href="#"></a> | |
| 2181 | + <a href="#"></a> | |
| 2182 | + <a href="#"></a> | |
| 2183 | + <a href="#"></a> | |
| 2184 | + <a href="#"></a> | |
| 2185 | + | |
| 2186 | + </div> | |
| 2187 | + </div> | |
| 2188 | + </div> | |
| 2189 | + <div class="btn_popup_wrap"> | |
| 2190 | + <button type="button" class="btnType btnType7" onclick="miniPopup(this)">특정문구 일괄변환<i class="qmMark"></i></button> | |
| 2191 | + <div class="send_miniPop convers"> | |
| 2192 | + <div> | |
| 2193 | + <div class="convers_top"> | |
| 2194 | + <span>특정문구 일괄변환이란?</span> | |
| 2195 | + <p>주소록, 엑셀에 입력된 내용을 이용해 수신자마다 다른 내용의<br> 메시지를 발송하는 기능</p> | |
| 2196 | + </div> | |
| 2197 | + <div class="convers_middle"><a href="#">#{이름}</a></div> | |
| 2198 | + <div class="convers_bottom"> | |
| 2199 | + <a href="#">#{1}</a> | |
| 2200 | + <a href="#">#{2}</a> | |
| 2201 | + <a href="#">#{3}</a> | |
| 2202 | + <a href="#">#{4}</a> | |
| 2203 | + </div> | |
| 2204 | + </div> | |
| 2205 | + </div> | |
| 2206 | + </div> | |
| 2207 | + <button type="button" class="btnType btnType7">내문자함</button> | |
| 2208 | + <button type="button" class="btnType btnType8" onclick="showPotoediter();">이미지 불러오기</button> | |
| 2209 | + <div class="send_btnWrap"> | |
| 2210 | + <button type="button" class="btnType btnType9">문자저장</button> | |
| 2211 | + <button type="button" class="btnType btnType9">초기화</button> | |
| 2212 | + </div> | |
| 2213 | + </div> | |
| 2214 | + </div> | |
| 2215 | + <p>* 현재 [단문] <span class="c_e40000 fwBold">120,000</span>건 발송 가능합니다.</p> | |
| 2216 | + </td> | |
| 2217 | + </tr> | |
| 2218 | + </tbody> | |
| 2219 | + </table> | |
| 2220 | + </div><!-- send left 문자 보내기 입력 --> | |
| 2221 | + <!-- send right 문자 보내기 미리보기 --> | |
| 2222 | + <div class="send_right"> | |
| 2223 | + <div class="phone"> | |
| 2224 | + <div class="phoneIn"> | |
| 2225 | + <div> | |
| 2226 | + <p class="prev_p"><img src="/publish/images/search. png">미리보기</p> | |
| 2227 | + <div class="text_length2 clearfix" style="display: none;"> | |
| 2228 | + <span class="msg_com msg_short">단문</span> | |
| 2229 | + <div> | |
| 2230 | + <span>글자크기</span> | |
| 2231 | + <button type="button"><img src="/publish/images/ content/font_plus.png"></button> | |
| 2232 | + <button type="button"><img src="/publish/images/ content/font_minus.png"></button> | |
| 2233 | + </div> | |
| 2234 | + </div> | |
| 2235 | + <div class="text_length2 clearfix"> | |
| 2236 | + <span class="msg_com msg_photo">포토</span> | |
| 2237 | + <ul class="photo_msg_num"> | |
| 2238 | + <li onclick="imgClick(0);"><a href="#none">1</a></ li> | |
| 2239 | + <li onclick="imgClick(1);"><a href="#none">2</a></ li> | |
| 2240 | + <li onclick="imgClick(2);"><a href="#none">3</a></ li> | |
| 2241 | + </ul> | |
| 2242 | + <div> | |
| 2243 | + <span>글자크기</span> | |
| 2244 | + <button type="button"><img src="/publish/images/ content/font_plus.png"></button> | |
| 2245 | + <button type="button"><img src="/publish/images/ content/font_minus.png"></button> | |
| 2246 | + </div> | |
| 2247 | + </div> | |
| 2248 | + <!-- 텍스트 미리보기 --> | |
| 2249 | + <div class="text_preview"> | |
| 2250 | + <div class="preiew_img"> | |
| 2251 | + <div class="img_box"> | |
| 2252 | + <img src="/publish/images/content/ photo_sample01.jpg"> | |
| 2253 | + </div> | |
| 2254 | + <div class="img_box"> | |
| 2255 | + <img src="/publish/images/content/ photo_sample01.jpg"> | |
| 2256 | + </div> | |
| 2257 | + <div class="img_box"> | |
| 2258 | + <img src="/publish/images/content/excel.jpg"> | |
| 2259 | + </div> | |
| 2260 | + </div> | |
| 2261 | + <div class="preview_auto"> | |
| 2262 | + <p class="ad_tit">(광고)</p> | |
| 2263 | + <p class="none_txt">내용을 입력해주세요.</p> | |
| 2264 | + <p class="realtime"></p> | |
| 2265 | + <p class="deny_receipt">무료 거부 080-0000-0000</p> | |
| 2266 | + </div> | |
| 2267 | + </div> | |
| 2268 | + <!-- //텍스트 미리보기 --> | |
| 2269 | + </div> | |
| 2270 | + </div> | |
| 2271 | + <p class="addText">※ 단말기 설정에 따라 다르게 보일 수 있습니다<p> | |
| 2272 | + </div> | |
| 2273 | + </div> | |
| 2274 | + <!--// send right 문자 보내기 미리보기 --> | |
| 2275 | + </div> | |
| 2276 | + <!-- excel 대량 불러오기 --> | |
| 2277 | + <div class="excelWrap"> | |
| 2278 | + <div> | |
| 2279 | + <div class="excel_selBox"> | |
| 2280 | + <div> | |
| 2281 | + <button type="button" class="excel_btn btnType"><i class="uproad"></i>엑셀 불러오기</button> | |
| 2282 | + </div> | |
| 2283 | + <div> | |
| 2284 | + <button type="button" class="excel_btn"><i class="downroad"></i>엑셀 샘플 다운로드</button> | |
| 2285 | + <!-- <button type="button" class="btnType btnType14"><i></i>번호입력형식안내</button> --> | |
| 2286 | + </div> | |
| 2287 | + </div> | |
| 2288 | + <div class="file_add"> | |
| 2289 | + <p><img src="/publish/images/content/file_add.png" alt="파일 붙여넣기">마우스로 엑셀 파일을 여기에 끌어다 놓으세요</p> | |
| 2290 | + </div> | |
| 2291 | + <div class="excel_middle2"> | |
| 2292 | + <p>총 <span class="c_e40000 fwBold">120</span>건 / 중복 <span class="c_002c9a fwBold">9</span>건</p> | |
| 2293 | + <button type="button" class="btnType btnType6">번호추가</button> | |
| 2294 | + </div> | |
| 2295 | + <div class="drag_drop_wrap"> | |
| 2296 | + <img src="/publish/images/content/excel.jpg" style="width: 100%;"> | |
| 2297 | + </div> | |
| 2298 | + <div class="excel_middle"> | |
| 2299 | + <div class="select_btnWrap clearfix"> | |
| 2300 | + <div> | |
| 2301 | + <button type="button"><i class="remove_img"></i>선택삭제</button> | |
| 2302 | + <button type="button"><i class="remove_img"></i>오류번호삭제</button> | |
| 2303 | + <button type="button" class="check_validity">오류 검사<i></i></button> | |
| 2304 | + </div> | |
| 2305 | + <div> | |
| 2306 | + <button type="button" class="excel_btn"><i class="downroad"></i>엑셀 다운로드</button> | |
| 2307 | + </div> | |
| 2308 | + </div> | |
| 2309 | + </div> | |
| 2310 | + </div> | |
| 2311 | + </div> | |
| 2312 | + <div class="send_general sec"> | |
| 2313 | + <div class="send_left"> | |
| 2314 | + <table class="tType1"> | |
| 2315 | + <caption>일반 문자보내기 분류 번호 내용 등을 입력하는 표</caption> | |
| 2316 | + <colgroup> | |
| 2317 | + <col style="width: 100px;"> | |
| 2318 | + <col style="width: auto;"> | |
| 2319 | + </colgroup> | |
| 2320 | + <tbody> | |
| 2321 | + <tr> | |
| 2322 | + <th colspan="2" class="billingAmount"> | |
| 2323 | + <div> | |
| 2324 | + <div class="final_pay"> | |
| 2325 | + <p>결제금액 :</p> | |
| 2326 | + <p class="price"><span>200,000</span>원<span>(부가세 포함)</span></p> | |
| 2327 | + </div> | |
| 2328 | + <div class="pay_type clearfix"> | |
| 2329 | + <div> | |
| 2330 | + <label for="" class="label">충전 금액</label> | |
| 2331 | + <input id="radio_bill_1" type="radio" name="radio_bill" checked="checked"> | |
| 2332 | + <label for="radio_bill_1">내 충전금 (<span>3,000</span>원)</label> | |
| 2333 | + </div> | |
| 2334 | + <div> | |
| 2335 | + <label for="" class="label">포인트 금액</label> | |
| 2336 | + <input type="text" placeholder="199,700" readonly> | |
| 2337 | + <button type="button" class="btnType btnType3">충전</button> | |
| 2338 | + </div> | |
| 2339 | + </div> | |
| 2340 | + </div> | |
| 2341 | + </th> | |
| 2342 | + </tr> | |
| 2343 | + <tr> | |
| 2344 | + <th scope="row">추천인 ID</th> | |
| 2345 | + <td class="check_num"> | |
| 2346 | + <input id="radio5" type="radio" name="recom" checked="checked"> | |
| 2347 | + <label for="radio5">없음</label> | |
| 2348 | + <input id="radio6" type="radio" name="recom"> | |
| 2349 | + <label for="radio6">있음</label> | |
| 2350 | + <div> | |
| 2351 | + <label for="id" class="label"></label> | |
| 2352 | + <input type="text" size="20" id="id" placeholder="추천인 아이디 입력" onfocus="this.placeholder=''" onblur="this.placeholder='추천인 아이디 입력'"> | |
| 2353 | + <button type="button" class="btnType btnType9">추천인 확인</button> | |
| 2354 | + </div> | |
| 2355 | + </td> | |
| 2356 | + </tr> | |
| 2357 | + </tbody> | |
| 2358 | + </table> | |
| 2359 | + </div> | |
| 2360 | + <div class="send_right"> | |
| 2361 | + <div class="send_rev"> | |
| 2362 | + <div class="rev_radio"> | |
| 2363 | + <input id="radio11" type="radio" name="reser2" checked="checked"> | |
| 2364 | + <label for="radio11">즉시</label> | |
| 2365 | + <input id="radio12" type="radio" name="reser2"> | |
| 2366 | + <label for="radio12">예약</label> | |
| 2367 | + </div> | |
| 2368 | + <div class="rev_selected"> | |
| 2369 | + <div class="rev_top"> | |
| 2370 | + <span>날짜 :</span> | |
| 2371 | + <div class="calendar_wrap"> | |
| 2372 | + <input type="text" class="startDate2 inp" title="검색 시작일" id="startDate2" name="startDate2" value="" data-datecontrol="true"> | |
| 2373 | + </div> | |
| 2374 | + <label for="" class="label">시 선택</label> | |
| 2375 | + <div class="selBox"> | |
| 2376 | + <select class="selType1"> | |
| 2377 | + <option>00시</option> | |
| 2378 | + <option>10시</option> | |
| 2379 | + <option>20시</option> | |
| 2380 | + </select> | |
| 2381 | + <label for="" class="label">분 선택</label> | |
| 2382 | + <select class="selType1"> | |
| 2383 | + <option>00분</option> | |
| 2384 | + <option>25분</option> | |
| 2385 | + <option>50분</option> | |
| 2386 | + </select> | |
| 2387 | + </div> | |
| 2388 | + </div> | |
| 2389 | + <div class="rev_bottom"> | |
| 2390 | + <input type="checkbox"> | |
| 2391 | + <label for="">분할전송</label> | |
| 2392 | + <select class="selType1"> | |
| 2393 | + <option>00시</option> | |
| 2394 | + <option>10시</option> | |
| 2395 | + <option>20시</option> | |
| 2396 | + </select> | |
| 2397 | + <label for="">건</label> | |
| 2398 | + <select class="selType1"> | |
| 2399 | + <option>00분</option> | |
| 2400 | + <option>25분</option> | |
| 2401 | + <option>50분</option> | |
| 2402 | + </select> | |
| 2403 | + <label>간격</label> | |
| 2404 | + </div> | |
| 2405 | + </div> | |
| 2406 | + </div> | |
| 2407 | + <div class="send_btn"> | |
| 2408 | + <button type="button" class="btnType btnType10">테스트 발송<img src="/publish/images/content/qmIcon.png"></button> | |
| 2409 | + <button type="button" class="btnType btnType11">발송하기</button> | |
| 2410 | + </div> | |
| 2411 | + </div> | |
| 2412 | + </div> | |
| 2413 | + </div> | |
| 2414 | + <!--// tab content2 --> | |
| 2415 | + <div class="send_bottom"> | |
| 2416 | + <!-- tab button --> | |
| 2417 | + <ul class="tabType2"> | |
| 2418 | + <li class="tab"><button type="button" onclick="TabType2(this,'1');">문자 샘플</button></li> | |
| 2419 | + <li class="tab active"><button type="button" onclick="TabType2(this,'2');">그림문자 샘플</button></li> | |
| 2420 | + <li class="tab"><button type="button" onclick="TabType2(this,'3');">지도/약도 추가</button></li> | |
| 2421 | + <li class="tab"><button type="button" onclick="TabType2(this,'4');">내 문자함</button></li> | |
| 2422 | + </ul> | |
| 2423 | + <!--// tab button --> | |
| 2424 | + <div class="search_sample"> | |
| 2425 | + <input type="text" placeholder="문자샘플 검색" onfocus="this.placeholder=''" onblur="this.placeholder='문자샘플 검색'"> | |
| 2426 | + <button><img src="/publish/images/search02.png" alt=""></button> | |
| 2427 | + </div> | |
| 2428 | + <!-- tab content1 --> | |
| 2429 | + <div class="bottom_content" id="tab2_1"> | |
| 2430 | + <div class="area_tabs"> | |
| 2431 | + <div class="top_tab"> | |
| 2432 | + <div class="tab_depth1"> | |
| 2433 | + <a href="#none" class="on">전체</a> | |
| 2434 | + <a href="#none">기업</a> | |
| 2435 | + <a href="#none">개인</a> | |
| 2436 | + <div class="on_active">전체</div> | |
| 2437 | + </div> | |
| 2438 | + <div class="tab_depth2"> | |
| 2439 | + <a href="#none" class="on">단문문자</a> | |
| 2440 | + <a href="#none">장문문자</a> | |
| 2441 | + </div> | |
| 2442 | + <select name="" id="" class="selType2"> | |
| 2443 | + <option value="">2줄보기</option> | |
| 2444 | + <option value="">4줄보기</option> | |
| 2445 | + <option value="">6줄보기</option> | |
| 2446 | + </select> | |
| 2447 | + <div class="customReq"> | |
| 2448 | + <button type="button"><i></i>맞춤제작 요청</button> | |
| 2449 | + </div> | |
| 2450 | + </div> | |
| 2451 | + <div class="bottom_tab"> | |
| 2452 | + <div class="tab_depth3"> | |
| 2453 | + <a href="#none">All</a> | |
| 2454 | + <a href="#none" class="on">BEST</a> | |
| 2455 | + <a href="#none">요일</a> | |
| 2456 | + <a href="#none">계절/날씨</a> | |
| 2457 | + <a href="#none">선거</a> | |
| 2458 | + <a href="#none">기념일데이</a> | |
| 2459 | + <a href="#none">경조사</a> | |
| 2460 | + <a href="#none">모임/행사</a> | |
| 2461 | + <a href="#none">명절</a> | |
| 2462 | + <a href="#none">연말연시</a> | |
| 2463 | + <a href="#none">감사/축하</a> | |
| 2464 | + <a href="#none">사랑/우정</a> | |
| 2465 | + <a href="#none">격려/위로</a> | |
| 2466 | + <a href="#none">유머/코믹</a> | |
| 2467 | + <a href="#none">좋은글/명언</a> | |
| 2468 | + <a href="#none">운세/별자리</a> | |
| 2469 | + <a href="#none">종교</a> | |
| 2470 | + </div> | |
| 2471 | + <div class="tab_depth4"> | |
| 2472 | + <a href="#none" class="on">#봄인사</a> | |
| 2473 | + <a href="#none">#좋은글</a> | |
| 2474 | + <a href="#none">#초대/답례</a> | |
| 2475 | + </div> | |
| 2476 | + </div> | |
| 2477 | + </div> | |
| 2478 | + <ul class="area_tabcontent msg_sample"> | |
| 2479 | + <li> | |
| 2480 | + <div class="tit_text_wrap"> | |
| 2481 | + <p class="tit_text">화이트 데이 화이트 데이 화이트 데이</p> | |
| 2482 | + </div> | |
| 2483 | + <div class="msg_cont"> | |
| 2484 | + <div class="msg_text">즐거운 화이트데이입니다. <br><br> | |
| 2485 | + 달달한 하루보내시라고, 화이트 데이 사탕보냅니다.<br><br> | |
| 2486 | + 맛있게 드시고, 새콤달콤 행복한 하루보내세요~<br><br> | |
| 2487 | + *""* <br> | |
| 2488 | + *◆○* <br> | |
| 2489 | + *♡◎★* <br> | |
| 2490 | + ######## <br> | |
| 2491 | + \_____/<br> | |
| 2492 | + </div> | |
| 2493 | + </div> | |
| 2494 | + <p class="info_text">0 / <span class="limit_text">90</span>byte</p> | |
| 2495 | + </li> | |
| 2496 | + <li> | |
| 2497 | + <div class="tit_text_wrap"> | |
| 2498 | + <p class="tit_text">화이트 데이</p> | |
| 2499 | + </div> | |
| 2500 | + <div class="msg_cont"> | |
| 2501 | + <div class="msg_text">즐거운 화이트데이입니다. <br><br> | |
| 2502 | + 달달한 하루보내시라고, 화이트 데이 사탕보냅니다.<br><br> | |
| 2503 | + 맛있게 드시고, 새콤달콤 행복한 하루보내세요~<br><br> | |
| 2504 | + *""* <br> | |
| 2505 | + *◆○* <br> | |
| 2506 | + *♡◎★* <br> | |
| 2507 | + ######## <br> | |
| 2508 | + \_____/<br> | |
| 2509 | + </div> | |
| 2510 | + </div> | |
| 2511 | + <p class="info_text">0 / <span class="limit_text">90</span>byte</p> | |
| 2512 | + </li> | |
| 2513 | + <li> | |
| 2514 | + <div class="tit_text_wrap"> | |
| 2515 | + <p class="tit_text">화이트 데이</p> | |
| 2516 | + </div> | |
| 2517 | + <div class="msg_cont"> | |
| 2518 | + <div class="msg_text">즐거운 화이트데이입니다. <br><br> | |
| 2519 | + 달달한 하루보내시라고, 화이트 데이 사탕보냅니다.<br><br> | |
| 2520 | + 맛있게 드시고, 새콤달콤 행복한 하루보내세요~<br><br> | |
| 2521 | + *""* <br> | |
| 2522 | + *◆○* <br> | |
| 2523 | + *♡◎★* <br> | |
| 2524 | + ######## <br> | |
| 2525 | + \_____/<br> | |
| 2526 | + </div> | |
| 2527 | + </div> | |
| 2528 | + <p class="info_text">0 / <span class="limit_text">90</span>byte</p> | |
| 2529 | + </li> | |
| 2530 | + <li> | |
| 2531 | + <div class="tit_text_wrap"> | |
| 2532 | + <p class="tit_text">화이트 데이</p> | |
| 2533 | + </div> | |
| 2534 | + <div class="msg_cont"> | |
| 2535 | + <div class="msg_text">즐거운 화이트데이입니다. <br><br> | |
| 2536 | + 달달한 하루보내시라고, 화이트 데이 사탕보냅니다.<br><br> | |
| 2537 | + 맛있게 드시고, 새콤달콤 행복한 하루보내세요~<br><br> | |
| 2538 | + *""* <br> | |
| 2539 | + *◆○* <br> | |
| 2540 | + *♡◎★* <br> | |
| 2541 | + ######## <br> | |
| 2542 | + \_____/<br> | |
| 2543 | + </div> | |
| 2544 | + </div> | |
| 2545 | + <p class="info_text">0 / <span class="limit_text">90</span>byte</p> | |
| 2546 | + </li> | |
| 2547 | + <li> | |
| 2548 | + <div class="tit_text_wrap"> | |
| 2549 | + <p class="tit_text">화이트 데이</p> | |
| 2550 | + </div> | |
| 2551 | + <div class="msg_cont"> | |
| 2552 | + <div class="msg_text">즐거운 화이트데이입니다. <br><br> | |
| 2553 | + 달달한 하루보내시라고, 화이트 데이 사탕보냅니다.<br><br> | |
| 2554 | + 맛있게 드시고, 새콤달콤 행복한 하루보내세요~<br><br> | |
| 2555 | + *""* <br> | |
| 2556 | + *◆○* <br> | |
| 2557 | + *♡◎★* <br> | |
| 2558 | + ######## <br> | |
| 2559 | + \_____/<br> | |
| 2560 | + </div> | |
| 2561 | + </div> | |
| 2562 | + <p class="info_text">0 / <span class="limit_text">90</span>byte</p> | |
| 2563 | + </li> | |
| 2564 | + <li> | |
| 2565 | + <div class="tit_text_wrap"> | |
| 2566 | + <p class="tit_text">화이트 데이</p> | |
| 2567 | + </div> | |
| 2568 | + <div class="msg_cont"> | |
| 2569 | + <div class="msg_text">즐거운 화이트데이입니다. <br><br> | |
| 2570 | + 달달한 하루보내시라고, 화이트 데이 사탕보냅니다.<br><br> | |
| 2571 | + 맛있게 드시고, 새콤달콤 행복한 하루보내세요~<br><br> | |
| 2572 | + *""* <br> | |
| 2573 | + *◆○* <br> | |
| 2574 | + *♡◎★* <br> | |
| 2575 | + ######## <br> | |
| 2576 | + \_____/<br> | |
| 2577 | + </div> | |
| 2578 | + </div> | |
| 2579 | + <p class="info_text">0 / <span class="limit_text">90</span>byte</p> | |
| 2580 | + </li> | |
| 2581 | + <li> | |
| 2582 | + <div class="tit_text_wrap"> | |
| 2583 | + <p class="tit_text">화이트 데이</p> | |
| 2584 | + </div> | |
| 2585 | + <div class="msg_cont"> | |
| 2586 | + <div class="msg_text">즐거운 화이트데이입니다. <br><br> | |
| 2587 | + 달달한 하루보내시라고, 화이트 데이 사탕보냅니다.<br><br> | |
| 2588 | + 맛있게 드시고, 새콤달콤 행복한 하루보내세요~<br><br> | |
| 2589 | + *""* <br> | |
| 2590 | + *◆○* <br> | |
| 2591 | + *♡◎★* <br> | |
| 2592 | + ######## <br> | |
| 2593 | + \_____/<br> | |
| 2594 | + </div> | |
| 2595 | + </div> | |
| 2596 | + <p class="info_text">0 / <span class="limit_text">90</span>byte</p> | |
| 2597 | + </li> | |
| 2598 | + <li> | |
| 2599 | + <div class="tit_text_wrap"> | |
| 2600 | + <p class="tit_text">화이트 데이</p> | |
| 2601 | + </div> | |
| 2602 | + <div class="msg_cont"> | |
| 2603 | + <div class="msg_text">즐거운 화이트데이입니다. <br><br> | |
| 2604 | + 달달한 하루보내시라고, 화이트 데이 사탕보냅니다.<br><br> | |
| 2605 | + 맛있게 드시고, 새콤달콤 행복한 하루보내세요~<br><br> | |
| 2606 | + *""* <br> | |
| 2607 | + *◆○* <br> | |
| 2608 | + *♡◎★* <br> | |
| 2609 | + ######## <br> | |
| 2610 | + \_____/<br> | |
| 2611 | + </div> | |
| 2612 | + </div> | |
| 2613 | + <p class="info_text">0 / <span class="limit_text">90</span>byte</p> | |
| 2614 | + </li> | |
| 2615 | + <li> | |
| 2616 | + <div class="tit_text_wrap"> | |
| 2617 | + <p class="tit_text">화이트 데이</p> | |
| 2618 | + </div> | |
| 2619 | + <div class="msg_cont"> | |
| 2620 | + <div class="msg_text">즐거운 화이트데이입니다. <br><br> | |
| 2621 | + 달달한 하루보내시라고, 화이트 데이 사탕보냅니다.<br><br> | |
| 2622 | + 맛있게 드시고, 새콤달콤 행복한 하루보내세요~<br><br> | |
| 2623 | + *""* <br> | |
| 2624 | + *◆○* <br> | |
| 2625 | + *♡◎★* <br> | |
| 2626 | + ######## <br> | |
| 2627 | + \_____/<br> | |
| 2628 | + </div> | |
| 2629 | + </div> | |
| 2630 | + <p class="info_text">0 / <span class="limit_text">90</span>byte</p> | |
| 2631 | + </li> | |
| 2632 | + <li> | |
| 2633 | + <div class="tit_text_wrap"> | |
| 2634 | + <p class="tit_text">화이트 데이</p> | |
| 2635 | + </div> | |
| 2636 | + <div class="msg_cont"> | |
| 2637 | + <div class="msg_text">즐거운 화이트데이입니다. <br><br> | |
| 2638 | + 달달한 하루보내시라고, 화이트 데이 사탕보냅니다.<br><br> | |
| 2639 | + 맛있게 드시고, 새콤달콤 행복한 하루보내세요~<br><br> | |
| 2640 | + *""* <br> | |
| 2641 | + *◆○* <br> | |
| 2642 | + *♡◎★* <br> | |
| 2643 | + ######## <br> | |
| 2644 | + \_____/<br> | |
| 2645 | + </div> | |
| 2646 | + </div> | |
| 2647 | + <p class="info_text">0 / <span class="limit_text">90</span>byte</p> | |
| 2648 | + </li> | |
| 2649 | + </ul> | |
| 2650 | + <!-- pagination --> | |
| 2651 | + <ul class="pagination"> | |
| 2652 | + <li class="page_first"><button><img src="/publish/images/content/page_first.png" alt=""></button></li> | |
| 2653 | + <li class="page_prev"><button><img src="/publish/images/content/page_prev.png" alt=""></button></li> | |
| 2654 | + <li class="on"><button>1</button></li> | |
| 2655 | + <li><button>2</button></li> | |
| 2656 | + <li><button>3</button></li> | |
| 2657 | + <li><button>4</button></li> | |
| 2658 | + <li><button>5</button></li> | |
| 2659 | + <li><button>6</button></li> | |
| 2660 | + <li><button>7</button></li> | |
| 2661 | + <li><button>8</button></li> | |
| 2662 | + <li><button>9</button></li> | |
| 2663 | + <li><button>10</button></li> | |
| 2664 | + <li class="page_next"><button><img src="/publish/images/content/page_next.png" alt=""></button></li> | |
| 2665 | + <li class="page_last"><button><img src="/publish/images/content/page_last.png" alt=""></button></li> | |
| 2666 | + </ul><!-- pagination --> | |
| 2667 | + </div> | |
| 2668 | + <!--// tab content1 --> | |
| 2669 | + <!--// tab content2 --> | |
| 2670 | + <div class="bottom_content current" id="tab2_2"> | |
| 2671 | + <div class="area_tabs"> | |
| 2672 | + <div class="top_tab"> | |
| 2673 | + <div class="tab_depth1"> | |
| 2674 | + <a href="#none" class="on">전체</a> | |
| 2675 | + <a href="#none">기업</a> | |
| 2676 | + <a href="#none">개인</a> | |
| 2677 | + <div class="on_active">전체</div> | |
| 2678 | + </div> | |
| 2679 | + <div class="tab_depth2"> | |
| 2680 | + <a href="#none" class="on">그림문자</a> | |
| 2681 | + </div> | |
| 2682 | + <select name="" id="" class="selType2"> | |
| 2683 | + <option value="">2줄보기</option> | |
| 2684 | + <option value="">4줄보기</option> | |
| 2685 | + <option value="">6줄보기</option> | |
| 2686 | + </select> | |
| 2687 | + <div class="customReq"> | |
| 2688 | + <button type="button"><i></i>맞춤제작 요청</button> | |
| 2689 | + </div> | |
| 2690 | + </div> | |
| 2691 | + <div class="bottom_tab"> | |
| 2692 | + <div class="tab_depth3"> | |
| 2693 | + <a href="#none">All</a> | |
| 2694 | + <a href="#none" class="on">BEST</a> | |
| 2695 | + <a href="#none">요일</a> | |
| 2696 | + <a href="#none">계절/날씨</a> | |
| 2697 | + <a href="#none">선거</a> | |
| 2698 | + <a href="#none">기념일데이</a> | |
| 2699 | + <a href="#none">경조사</a> | |
| 2700 | + <a href="#none">모임/행사</a> | |
| 2701 | + <a href="#none">명절</a> | |
| 2702 | + <a href="#none">연말연시</a> | |
| 2703 | + <a href="#none">감사/축하</a> | |
| 2704 | + <a href="#none">사랑/우정</a> | |
| 2705 | + <a href="#none">격려/위로</a> | |
| 2706 | + <a href="#none">유머/코믹</a> | |
| 2707 | + <a href="#none">좋은글/명언</a> | |
| 2708 | + <a href="#none">운세/별자리</a> | |
| 2709 | + <a href="#none">종교</a> | |
| 2710 | + </div> | |
| 2711 | + <div class="tab_depth4"> | |
| 2712 | + <a href="#none" class="on">#봄인사</a> | |
| 2713 | + <a href="#none">#좋은글</a> | |
| 2714 | + <a href="#none">#초대/답례</a> | |
| 2715 | + </div> | |
| 2716 | + </div> | |
| 2717 | + </div> | |
| 2718 | + <ul class="area_tabcontent photo_sample"> | |
| 2719 | + <li class="hover_photo"> | |
| 2720 | + <div class="hover_cont"><img src="/publish/images/content/photo_sample01.jpg" alt=""></div> | |
| 2721 | + <div class="tit_text_wrap"> | |
| 2722 | + <p class="tit_text">추석 입니다 추석 입니다 추석 입니다 추석 입니다</p> | |
| 2723 | + </div> | |
| 2724 | + <div class="photo_cont"> | |
| 2725 | + <img src="/publish/images/content/photo_sample01.jpg" alt=""> | |
| 2726 | + </div> | |
| 2727 | + </li> | |
| 2728 | + <li> | |
| 2729 | + <div class="hover_cont"><img src="/publish/images/content/photo_sample02.jpg" alt=""></div> | |
| 2730 | + <div class="tit_text_wrap"> | |
| 2731 | + <p class="tit_text">추석</p> | |
| 2732 | + </div> | |
| 2733 | + <div class="photo_cont"> | |
| 2734 | + <img src="/publish/images/content/photo_sample02.jpg" alt=""> | |
| 2735 | + </div> | |
| 2736 | + </li> | |
| 2737 | + <li> | |
| 2738 | + <div class="hover_cont"><img src="/publish/images/content/photo_sample03.jpg" alt=""></div> | |
| 2739 | + <div class="tit_text_wrap"> | |
| 2740 | + <p class="tit_text">추석</p> | |
| 2741 | + </div> | |
| 2742 | + <div class="photo_cont"> | |
| 2743 | + <img src="/publish/images/content/photo_sample03.jpg" alt=""> | |
| 2744 | + </div> | |
| 2745 | + </li> | |
| 2746 | + <li> | |
| 2747 | + <div class="hover_cont"><img src="/publish/images/content/photo_sample04.jpg" alt=""></div> | |
| 2748 | + <div class="tit_text_wrap"> | |
| 2749 | + <p class="tit_text">추석</p> | |
| 2750 | + </div> | |
| 2751 | + <div class="photo_cont"> | |
| 2752 | + <img src="/publish/images/content/photo_sample04.jpg" alt=""> | |
| 2753 | + </div> | |
| 2754 | + </li> | |
| 2755 | + <li> | |
| 2756 | + <div class="hover_cont"><img src="/publish/images/content/photo_sample05.jpg" alt=""></div> | |
| 2757 | + <div class="tit_text_wrap"> | |
| 2758 | + <p class="tit_text">추석</p> | |
| 2759 | + </div> | |
| 2760 | + <div class="photo_cont"> | |
| 2761 | + <img src="/publish/images/content/photo_sample05.jpg" alt=""> | |
| 2762 | + </div> | |
| 2763 | + </li> | |
| 2764 | + <li> | |
| 2765 | + <div class="hover_cont"><img src="/publish/images/content/photo_sample06.jpg" alt=""></div> | |
| 2766 | + <div class="tit_text_wrap"> | |
| 2767 | + <p class="tit_text">추석</p> | |
| 2768 | + </div> | |
| 2769 | + <div class="photo_cont"> | |
| 2770 | + <img src="/publish/images/content/photo_sample06.jpg" alt=""> | |
| 2771 | + </div> | |
| 2772 | + </li> | |
| 2773 | + <li> | |
| 2774 | + <div class="hover_cont"><img src="/publish/images/content/photo_sample07.jpg" alt=""></div> | |
| 2775 | + <div class="tit_text_wrap"> | |
| 2776 | + <p class="tit_text">추석</p> | |
| 2777 | + </div> | |
| 2778 | + <div class="photo_cont"> | |
| 2779 | + <img src="/publish/images/content/photo_sample07.jpg" alt=""> | |
| 2780 | + </div> | |
| 2781 | + </li> | |
| 2782 | + <li> | |
| 2783 | + <div class="hover_cont"><img src="/publish/images/content/photo_sample08.jpg" alt=""></div> | |
| 2784 | + <div class="tit_text_wrap"> | |
| 2785 | + <p class="tit_text">추석</p> | |
| 2786 | + </div> | |
| 2787 | + <div class="photo_cont"> | |
| 2788 | + <img src="/publish/images/content/photo_sample08.jpg" alt=""> | |
| 2789 | + </div> | |
| 2790 | + </li> | |
| 2791 | + <li> | |
| 2792 | + <div class="hover_cont"><img src="/publish/images/content/photo_sample09.jpg" alt=""></div> | |
| 2793 | + <div class="tit_text_wrap"> | |
| 2794 | + <p class="tit_text">추석</p> | |
| 2795 | + </div> | |
| 2796 | + <div class="photo_cont"> | |
| 2797 | + <img src="/publish/images/content/photo_sample09.jpg" alt=""> | |
| 2798 | + </div> | |
| 2799 | + </li> | |
| 2800 | + <li> | |
| 2801 | + <div class="hover_cont"><img src="/publish/images/content/photo_sample10.jpg" alt=""></div> | |
| 2802 | + <div class="tit_text_wrap"> | |
| 2803 | + <p class="tit_text">추석</p> | |
| 2804 | + </div> | |
| 2805 | + <div class="photo_cont"> | |
| 2806 | + <img src="/publish/images/content/photo_sample10.jpg" alt=""> | |
| 2807 | + </div> | |
| 2808 | + </li> | |
| 2809 | + </ul> | |
| 2810 | + <!-- pagination --> | |
| 2811 | + <ul class="pagination"> | |
| 2812 | + <li class="page_first"><button><img src="/publish/images/content/page_first.png" alt=""></button></li> | |
| 2813 | + <li class="page_prev"><button><img src="/publish/images/content/page_prev.png" alt=""></button></li> | |
| 2814 | + <li class="on"><button>1</button></li> | |
| 2815 | + <li><button>2</button></li> | |
| 2816 | + <li><button>3</button></li> | |
| 2817 | + <li><button>4</button></li> | |
| 2818 | + <li><button>5</button></li> | |
| 2819 | + <li><button>6</button></li> | |
| 2820 | + <li><button>7</button></li> | |
| 2821 | + <li><button>8</button></li> | |
| 2822 | + <li><button>9</button></li> | |
| 2823 | + <li><button>10</button></li> | |
| 2824 | + <li class="page_next"><button><img src="/publish/images/content/page_next.png" alt=""></button></li> | |
| 2825 | + <li class="page_last"><button><img src="/publish/images/content/page_last.png" alt=""></button></li> | |
| 2826 | + </ul><!-- pagination --> | |
| 2827 | + </div> | |
| 2828 | + <!--// tab content2 --> | |
| 2829 | + <!--tab content3 --> | |
| 2830 | + <div class="bottom_content" id="tab2_3"> | |
| 2831 | + <div class="map_search"> | |
| 2832 | + <label for="" class="label"></label> | |
| 2833 | + <input type="text" placeholder="도로명 또는 지번을 입력해주세요." onfocus="this.placeholder=''" onblur="this.placeholder='도로명 또는 지번을 입력해주세요.'"> | |
| 2834 | + <button type="button" class="btnType map_check">확인</button> | |
| 2835 | + <button type="button" class="btnType map_add">약도링크 추가</button> | |
| 2836 | + <p><span class="vMiddle">*</span> 지도링크는 입력메시지 끝부분에 추가됩니다.</p> | |
| 2837 | + </div> | |
| 2838 | + <img src="/publish/images/content/imsi_map.PNG" alt="지도" style="width: 100%;"> | |
| 2839 | + </div> | |
| 2840 | + <!--// tab content3 --> | |
| 2841 | + <!-- tab content4 --> | |
| 2842 | + <div class="bottom_content" id="tab2_4"> | |
| 2843 | + <div class="search_wrap clearfix"> | |
| 2844 | + <div class="btn_left"> | |
| 2845 | + <span>· 기간</span> | |
| 2846 | + <div class="calendar_wrap"> | |
| 2847 | + <input type="text" class="startDate3 inp" title="검색 시작일" id="startDate3" name="startDate3" value="" data-datecontrol="true"> | |
| 2848 | + <div class="calendar_in" id="calendarName_startDate3" style="z-index: 9;"> | |
| 2849 | + <button type="button" value="달력 팝업 열기" onclick="return calendarOpen('startDate3-lry','',this)"></button> | |
| 2850 | + <div id="startDate3-lry" class="calendarPop" style="display: none;"> | |
| 2851 | + <iframe id="startDate3-ifrm" name="startDate3-ifrm" class="calendar-frame" src="/publish/calendar.html" title=" 달력 팝업" frameborder="0" scrolling="no"></iframe> | |
| 2852 | + </div> | |
| 2853 | + </div> | |
| 2854 | + <span class="dateEtc">~</span> | |
| 2855 | + <input type="text" class="endDate inp" title="검색 종료일" id="endDate" name="endDate" value="" data-datecontrol="true"> | |
| 2856 | + <div class="calendar_in" id="calendarName_endDate" style="z-index: 0;"> | |
| 2857 | + <button type="button" value="달력 팝업 열기" onclick="return calendarOpen('endDate-lry','',this)"></button> | |
| 2858 | + </div> | |
| 2859 | + </div> | |
| 2860 | + <div class="search"> | |
| 2861 | + <label for="id" class="label"></label> | |
| 2862 | + <input type="text" id="id" placeholder="내보관함 검색" onfocus="this.placeholder=''" onblur="this.placeholder='내보관함 검색'"> | |
| 2863 | + <button type="button" class="btnType btnType2">검색</button> | |
| 2864 | + </div> | |
| 2865 | + </div> | |
| 2866 | + <div class="btn_right"> | |
| 2867 | + <button type="button">최근순<i></i></button> | |
| 2868 | + <select name="" id="" class="selType2"> | |
| 2869 | + <option value="">전체보기</option> | |
| 2870 | + <option value="">완료</option> | |
| 2871 | + <option value="">수정중</option> | |
| 2872 | + <option value="">수정요청</option> | |
| 2873 | + </select> | |
| 2874 | + <select name="" id="" class="selType2"> | |
| 2875 | + <option value="">2줄보기</option> | |
| 2876 | + <option value="">4줄보기</option> | |
| 2877 | + <option value="">6줄보기</option> | |
| 2878 | + </select> | |
| 2879 | + </div> | |
| 2880 | + </div> | |
| 2881 | + <div class="search_wrap_btn"> | |
| 2882 | + <button type="button" class="btnType15"><i class="add_img"></i>전체선택</button> | |
| 2883 | + <button type="button" class="btnType15"><i class="remove_img"></i>선택삭제</button> | |
| 2884 | + <p><span class="fwBold c_222">·</span> 총 <span class="c_e40000 fwRg">11</span>건의 보관된 문자가 있습니다. <span class="fwRg c_222"> 메시지를 클릭</span>하시면, <span class="fwRg c_222">발송창에 입력</span>됩니다.<span class="add_text">(내용 수정 및 저장은 발송창에서만 가능)</span></p> | |
| 2885 | + </div> | |
| 2886 | + <ul class="area_tabcontent msg_sample myBox"> | |
| 2887 | + <li> | |
| 2888 | + <div class="tit_text_wrap"> | |
| 2889 | + <label for="" class="label">내 문자함 체크</label> | |
| 2890 | + <input type="checkbox" id=""> | |
| 2891 | + <p class="tit_text">화이트 데이 화이트 데이 화이트 데이</p> | |
| 2892 | + </div> | |
| 2893 | + <div class="msg_cont"> | |
| 2894 | + <div class="photo_cont"> | |
| 2895 | + <img src="/publish/images/content/photo_sample01.jpg" alt=""> | |
| 2896 | + </div> | |
| 2897 | + <div class="msg_text">즐거운 화이트데이입니다. <br><br> | |
| 2898 | + 달달한 하루보내시라고, 화이트 데이 사탕보냅니다.<br><br> | |
| 2899 | + 맛있게 드시고, 새콤달콤 행복한 하루보내세요~<br><br> | |
| 2900 | + *""* <br> | |
| 2901 | + *◆○* <br> | |
| 2902 | + *♡◎★* <br> | |
| 2903 | + ######## <br> | |
| 2904 | + \_____/<br> | |
| 2905 | + </div> | |
| 2906 | + </div> | |
| 2907 | + <p class="info_text">0 / <span class="limit_text">90</span>byte</p> | |
| 2908 | + <div class="myphoto_info"> | |
| 2909 | + <p>2021-01-01</p> | |
| 2910 | + </div> | |
| 2911 | + </li> | |
| 2912 | + <li> | |
| 2913 | + <div class="tit_text_wrap"> | |
| 2914 | + <label for="" class="label">내 문자함 체크</label> | |
| 2915 | + <input type="checkbox" id=""> | |
| 2916 | + <p class="tit_text">화이트 데이</p> | |
| 2917 | + </div> | |
| 2918 | + <div class="msg_cont"> | |
| 2919 | + <div class="msg_text">즐거운 화이트데이입니다. <br> | |
| 2920 | + 달달한 하루보내시라고, 화이트 데이 사탕보냅니다.<br> | |
| 2921 | + 맛있게 드시고, 새콤달콤 행복한 하루보내세요~ | |
| 2922 | + </div> | |
| 2923 | + </div> | |
| 2924 | + <p class="info_text">0 / <span class="limit_text">90</span>byte</p> | |
| 2925 | + <div class="myphoto_info"> | |
| 2926 | + <p>2021-01-01</p> | |
| 2927 | + </div> | |
| 2928 | + </li> | |
| 2929 | + <li> | |
| 2930 | + <div class="tit_text_wrap"> | |
| 2931 | + <label for="" class="label">내 문자함 체크</label> | |
| 2932 | + <input type="checkbox" id=""> | |
| 2933 | + <p class="tit_text">화이트 데이</p> | |
| 2934 | + </div> | |
| 2935 | + <div class="msg_cont"> | |
| 2936 | + <div class="photo_cont"> | |
| 2937 | + <img src="/publish/images/content/photo_sample02.jpg" alt=""> | |
| 2938 | + </div> | |
| 2939 | + <div class="photo_cont"> | |
| 2940 | + <img src="/publish/images/content/photo_sample03.jpg" alt=""> | |
| 2941 | + </div> | |
| 2942 | + <div class="msg_text">즐거운 화이트데이입니다. <br><br> | |
| 2943 | + 달달한 하루보내시라고, 화이트 데이 사탕보냅니다.<br><br> | |
| 2944 | + 맛있게 드시고, 새콤달콤 행복한 하루보내세요~<br><br> | |
| 2945 | + *""* <br> | |
| 2946 | + *◆○* <br> | |
| 2947 | + *♡◎★* <br> | |
| 2948 | + ######## <br> | |
| 2949 | + \_____/<br> | |
| 2950 | + </div> | |
| 2951 | + </div> | |
| 2952 | + <p class="info_text">0 / <span class="limit_text">90</span>byte</p> | |
| 2953 | + <div class="myphoto_info"> | |
| 2954 | + <p>2021-01-01</p> | |
| 2955 | + </div> | |
| 2956 | + </li> | |
| 2957 | + <li> | |
| 2958 | + <div class="tit_text_wrap"> | |
| 2959 | + <label for="" class="label">내 문자함 체크</label> | |
| 2960 | + <input type="checkbox" id=""> | |
| 2961 | + <p class="tit_text">화이트 데이</p> | |
| 2962 | + </div> | |
| 2963 | + <div class="msg_cont"> | |
| 2964 | + <div class="photo_cont"> | |
| 2965 | + <img src="/publish/images/content/photo_sample01.jpg" alt=""> | |
| 2966 | + </div> | |
| 2967 | + </div> | |
| 2968 | + <p class="info_text">0 / <span class="limit_text">90</span>byte</p> | |
| 2969 | + <div class="myphoto_info"> | |
| 2970 | + <p>2021-01-01</p> | |
| 2971 | + </div> | |
| 2972 | + </li> | |
| 2973 | + <li> | |
| 2974 | + <div class="tit_text_wrap"> | |
| 2975 | + <label for="" class="label">내 문자함 체크</label> | |
| 2976 | + <input type="checkbox" id=""> | |
| 2977 | + <p class="tit_text">화이트 데이</p> | |
| 2978 | + </div> | |
| 2979 | + <div class="msg_cont"> | |
| 2980 | + <div class="msg_text">즐거운 화이트데이입니다. <br><br> | |
| 2981 | + 달달한 하루보내시라고, 화이트 데이 사탕보냅니다.<br><br> | |
| 2982 | + 맛있게 드시고, 새콤달콤 행복한 하루보내세요~<br><br> | |
| 2983 | + *""* <br> | |
| 2984 | + *◆○* <br> | |
| 2985 | + *♡◎★* <br> | |
| 2986 | + ######## <br> | |
| 2987 | + \_____/<br> | |
| 2988 | + </div> | |
| 2989 | + </div> | |
| 2990 | + <p class="info_text">0 / <span class="limit_text">90</span>byte</p> | |
| 2991 | + <div class="myphoto_info"> | |
| 2992 | + <p>2021-01-01</p> | |
| 2993 | + </div> | |
| 2994 | + </li> | |
| 2995 | + <li> | |
| 2996 | + <div class="tit_text_wrap"> | |
| 2997 | + <label for="" class="label">내 문자함 체크</label> | |
| 2998 | + <input type="checkbox" id=""> | |
| 2999 | + <p class="tit_text">화이트 데이</p> | |
| 3000 | + </div> | |
| 3001 | + <div class="msg_cont"> | |
| 3002 | + <div class="msg_text">즐거운 화이트데이입니다. <br><br> | |
| 3003 | + 달달한 하루보내시라고, 화이트 데이 사탕보냅니다.<br><br> | |
| 3004 | + 맛있게 드시고, 새콤달콤 행복한 하루보내세요~<br><br> | |
| 3005 | + *""* <br> | |
| 3006 | + *◆○* <br> | |
| 3007 | + *♡◎★* <br> | |
| 3008 | + ######## <br> | |
| 3009 | + \_____/<br> | |
| 3010 | + </div> | |
| 3011 | + </div> | |
| 3012 | + <p class="info_text">0 / <span class="limit_text">90</span>byte</p> | |
| 3013 | + <div class="myphoto_info"> | |
| 3014 | + <p>2021-01-01</p> | |
| 3015 | + </div> | |
| 3016 | + </li> | |
| 3017 | + <li> | |
| 3018 | + <div class="tit_text_wrap"> | |
| 3019 | + <label for="" class="label">내 문자함 체크</label> | |
| 3020 | + <input type="checkbox" id=""> | |
| 3021 | + <p class="tit_text">화이트 데이</p> | |
| 3022 | + </div> | |
| 3023 | + <div class="msg_cont"> | |
| 3024 | + <div class="msg_text">즐거운 화이트데이입니다. <br><br> | |
| 3025 | + 달달한 하루보내시라고, 화이트 데이 사탕보냅니다.<br><br> | |
| 3026 | + 맛있게 드시고, 새콤달콤 행복한 하루보내세요~<br><br> | |
| 3027 | + *""* <br> | |
| 3028 | + *◆○* <br> | |
| 3029 | + *♡◎★* <br> | |
| 3030 | + ######## <br> | |
| 3031 | + \_____/<br> | |
| 3032 | + </div> | |
| 3033 | + </div> | |
| 3034 | + <p class="info_text">0 / <span class="limit_text">90</span>byte</p> | |
| 3035 | + <div class="myphoto_info"> | |
| 3036 | + <p>2021-01-01</p> | |
| 3037 | + </div> | |
| 3038 | + </li> | |
| 3039 | + <li> | |
| 3040 | + <div class="tit_text_wrap"> | |
| 3041 | + <label for="" class="label">내 문자함 체크</label> | |
| 3042 | + <input type="checkbox" id=""> | |
| 3043 | + <p class="tit_text">화이트 데이</p> | |
| 3044 | + </div> | |
| 3045 | + <div class="msg_cont"> | |
| 3046 | + <div class="msg_text">즐거운 화이트데이입니다. <br><br> | |
| 3047 | + 달달한 하루보내시라고, 화이트 데이 사탕보냅니다.<br><br> | |
| 3048 | + 맛있게 드시고, 새콤달콤 행복한 하루보내세요~<br><br> | |
| 3049 | + *""* <br> | |
| 3050 | + *◆○* <br> | |
| 3051 | + *♡◎★* <br> | |
| 3052 | + ######## <br> | |
| 3053 | + \_____/<br> | |
| 3054 | + </div> | |
| 3055 | + </div> | |
| 3056 | + <p class="info_text">0 / <span class="limit_text">90</span>byte</p> | |
| 3057 | + <div class="myphoto_info"> | |
| 3058 | + <p>2021-01-01</p> | |
| 3059 | + </div> | |
| 3060 | + </li> | |
| 3061 | + <li> | |
| 3062 | + <div class="tit_text_wrap"> | |
| 3063 | + <label for="" class="label">내 문자함 체크</label> | |
| 3064 | + <input type="checkbox" id=""> | |
| 3065 | + <p class="tit_text">화이트 데이</p> | |
| 3066 | + </div> | |
| 3067 | + <div class="msg_cont"> | |
| 3068 | + <div class="msg_text">즐거운 화이트데이입니다. <br><br> | |
| 3069 | + 달달한 하루보내시라고, 화이트 데이 사탕보냅니다.<br><br> | |
| 3070 | + 맛있게 드시고, 새콤달콤 행복한 하루보내세요~<br><br> | |
| 3071 | + *""* <br> | |
| 3072 | + *◆○* <br> | |
| 3073 | + *♡◎★* <br> | |
| 3074 | + ######## <br> | |
| 3075 | + \_____/<br> | |
| 3076 | + </div> | |
| 3077 | + </div> | |
| 3078 | + <p class="info_text">0 / <span class="limit_text">90</span>byte</p> | |
| 3079 | + <div class="myphoto_info"> | |
| 3080 | + <p>2021-01-01</p> | |
| 3081 | + </div> | |
| 3082 | + </li> | |
| 3083 | + <li> | |
| 3084 | + <div class="tit_text_wrap"> | |
| 3085 | + <label for="" class="label">내 문자함 체크</label> | |
| 3086 | + <input type="checkbox" id=""> | |
| 3087 | + <p class="tit_text">화이트 데이</p> | |
| 3088 | + </div> | |
| 3089 | + <div class="msg_cont"> | |
| 3090 | + <div class="msg_text">즐거운 화이트데이입니다. <br><br> | |
| 3091 | + 달달한 하루보내시라고, 화이트 데이 사탕보냅니다.<br><br> | |
| 3092 | + 맛있게 드시고, 새콤달콤 행복한 하루보내세요~<br><br>hayeon1014! | |
| 3093 | + *""* <br> | |
| 3094 | + *◆○* <br> | |
| 3095 | + *♡◎★* <br> | |
| 3096 | + ######## <br> | |
| 3097 | + \_____/<br> | |
| 3098 | + </div> | |
| 3099 | + </div> | |
| 3100 | + <p class="info_text">0 / <span class="limit_text">90</span>byte</p> | |
| 3101 | + <div class="myphoto_info"> | |
| 3102 | + <p>2021-01-01</p> | |
| 3103 | + </div> | |
| 3104 | + </li> | |
| 3105 | + </ul> | |
| 3106 | + <!-- pagination --> | |
| 3107 | + <ul class="pagination"> | |
| 3108 | + <li class="page_first"><button><img src="/publish/images/content/page_first.png" alt=""></button></li> | |
| 3109 | + <li class="page_prev"><button><img src="/publish/images/content/page_prev.png" alt=""></button></li> | |
| 3110 | + <li class="on"><button>1</button></li> | |
| 3111 | + <li><button>2</button></li> | |
| 3112 | + <li><button>3</button></li> | |
| 3113 | + <li><button>4</button></li> | |
| 3114 | + <li><button>5</button></li> | |
| 3115 | + <li><button>6</button></li> | |
| 3116 | + <li><button>7</button></li> | |
| 3117 | + <li><button>8</button></li> | |
| 3118 | + <li><button>9</button></li> | |
| 3119 | + <li><button>10</button></li> | |
| 3120 | + <li class="page_next"><button><img src="/publish/images/content/page_next.png" alt=""></button></li> | |
| 3121 | + <li class="page_last"><button><img src="/publish/images/content/page_last.png" alt=""></button></li> | |
| 3122 | + </ul><!-- pagination --> | |
| 3123 | + </div> | |
| 3124 | + <!--// tab content4 --> | |
| 3125 | + | |
| 3126 | + </div> | |
| 3127 | + </div> | |
| 3128 | + <!--// send top --> | |
| 3129 | + | |
| 3130 | + </div> | |
| 3131 | + </div> | |
| 3132 | + <!--// content 영역 --> | |
| 3133 | + <!-- footer 영역 --> | |
| 3134 | + <footer id="footer" class="footer"> | |
| 3135 | + <div class="footer_top"> | |
| 3136 | + <div class="inner table"> | |
| 3137 | + <ul class="table_cell"> | |
| 3138 | + <li><a href="#">이용약관</a></li> | |
| 3139 | + <li class="SortLine fwRg c_white"><a href="#">개인정보취급방침</a></li> | |
| 3140 | + <li class="SortLine fwRg c_white"><a href="#">스팸관리정책</a></li> | |
| 3141 | + <li class="SortLine"><a href="#">불법스팸예방안내</a></li> | |
| 3142 | + </ul> | |
| 3143 | + </div> | |
| 3144 | + </div> | |
| 3145 | + <div class="footer_body"> | |
| 3146 | + <div class="inner table"> | |
| 3147 | + <div class="table_cell"> | |
| 3148 | + <a href="#" class="footer_logo"><img src="/publish/images/CI_white.png" alt="문자온 CI"></a> | |
| 3149 | + <div class="footer_info"> | |
| 3150 | + <p>주소 : 경기도 남양주시 다산중앙로 19번길 21 1027호, 1028호(블루웨일 지식산업센터 1차)</p> | |
| 3151 | + <p>사업자번호 : 653-87-00858 | 대표 : 유인식 | 통신판매등록번호 : 제 다산-12345호 | 문의전화 : 070-4786-0007</p> | |
| 3152 | + <p>Copyright 2020 ⓒ MUNJAON co. Ltd, All rights reserved.</p> | |
| 3153 | + </div> | |
| 3154 | + <div class="footer_service_center"> | |
| 3155 | + <i></i> | |
| 3156 | + <div> | |
| 3157 | + <p>고객센터</p> | |
| 3158 | + <span class="footer_service_num">070-4786-0008</span> | |
| 3159 | + <span>E-mail : help@iten.co.kr</span> | |
| 3160 | + </div> | |
| 3161 | + </div> | |
| 3162 | + </div> | |
| 3163 | + </div> | |
| 3164 | + </div> | |
| 3165 | + </footer> | |
| 3166 | + <!--// footer 영역 --> | |
| 3167 | + <div class='long-click'>0.3s Long-Click</div> | |
| 3168 | + <p>버튼을 꾹~ 눌러보세요!</p> | |
| 3169 | +</body> | |
| 3170 | + | |
| 3171 | +</html>(No newline at end of file) |
--- src/main/webapp/publish/textingmsg_2022.html
+++ src/main/webapp/publish/textingmsg_2022.html
... | ... | @@ -709,7 +709,9 @@ |
| 709 | 709 |
<td rowspan="2"> |
| 710 | 710 |
<p>WEB</p> |
| 711 | 711 |
</td> |
| 712 |
- <td rowspan="2"><button class="btnType btnType20" data-tooltip="rev_popup03">상세보기</button></td> |
|
| 712 |
+ <td rowspan="2"><button class="btnType btnType20" data-tooltip="rev_popup03">상세보기</button> |
|
| 713 |
+ <button class="btnType btnType24">재전송</button> |
|
| 714 |
+ </td> |
|
| 713 | 715 |
<td rowspan="2"> |
| 714 | 716 |
<p>테스트등록</p> |
| 715 | 717 |
</td> |
--- src/main/webapp/robots.txt
+++ src/main/webapp/robots.txt
... | ... | @@ -1,12 +1,2 @@ |
| 1 | 1 |
User-agent: * |
| 2 |
-Disallow:/uat |
|
| 3 |
-Disallow:/MapUrl.do |
|
| 4 |
-Disallow:/web/pop/testSendPop.do |
|
| 5 |
-Disallow:/web/addr/getAddrGroupDuplCheckAjax.do |
|
| 6 |
-Disallow:/web/mjon/msgdata/sendMsgDataAjax.do |
|
| 7 |
-Disallow:/web/com/userSessionExpendAjax.do |
|
| 8 |
-Disallow:/web/mjon/msgdata/selectMsgGroupNotExistInfoAjax.do |
|
| 9 |
-Disallow:/web/addr/getAddrGroupDuplCheckAjax.do |
|
| 10 |
-Disallow:/web/mjon/msgdata/selectMsgAddrListAjax.do |
|
| 11 |
-Disallow:/web/mjon/conf/selectMjonMsgUseConfAjax.do |
|
| 12 |
-Sitemap: https://www.munjaon.co.kr/sitemap.xml(No newline at end of file) |
|
| 2 |
+Disallow:/uat(No newline at end of file) |
--- src/main/webapp/sitemap.xml
+++ src/main/webapp/sitemap.xml
... | ... | @@ -9,2777 +9,2992 @@ |
| 9 | 9 |
|
| 10 | 10 |
<url> |
| 11 | 11 |
<loc>https://www.munjaon.co.kr/</loc> |
| 12 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 12 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 13 | 13 |
<priority>1.00</priority> |
| 14 | 14 |
</url> |
| 15 | 15 |
<url> |
| 16 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/excel/selectMsgExcelDataView.do</loc> |
|
| 17 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 16 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do</loc> |
|
| 17 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 18 | 18 |
<priority>0.80</priority> |
| 19 | 19 |
</url> |
| 20 | 20 |
<url> |
| 21 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do</loc> |
|
| 22 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 21 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/excel/selectMsgExcelDataView.do</loc> |
|
| 22 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 23 |
+ <priority>0.80</priority> |
|
| 24 |
+</url> |
|
| 25 |
+<url> |
|
| 26 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgcampain/selectMsgDataView.do</loc> |
|
| 27 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 28 |
+ <priority>0.80</priority> |
|
| 29 |
+</url> |
|
| 30 |
+<url> |
|
| 31 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgcampain/excel/selectMsgExcelDataView.do</loc> |
|
| 32 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 23 | 33 |
<priority>0.80</priority> |
| 24 | 34 |
</url> |
| 25 | 35 |
<url> |
| 26 | 36 |
<loc>https://www.munjaon.co.kr/web/mjon/custom/selectMsgCustomView.do</loc> |
| 27 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 28 |
- <priority>0.64</priority> |
|
| 29 |
-</url> |
|
| 30 |
-<url> |
|
| 31 |
- <loc>https://www.munjaon.co.kr/web/user/login/login.do</loc> |
|
| 32 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 33 |
- <priority>0.64</priority> |
|
| 34 |
-</url> |
|
| 35 |
-<url> |
|
| 36 |
- <loc>https://www.munjaon.co.kr/web/cop/bbs/NoticeList.do</loc> |
|
| 37 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 38 |
- <priority>0.64</priority> |
|
| 39 |
-</url> |
|
| 40 |
-<url> |
|
| 41 |
- <loc>https://www.munjaon.co.kr/web/cop/bbs/FaqList.do</loc> |
|
| 42 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 43 |
- <priority>0.64</priority> |
|
| 44 |
-</url> |
|
| 45 |
-<url> |
|
| 46 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgcampain/selectMsgDataView.do</loc> |
|
| 47 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 48 |
- <priority>0.64</priority> |
|
| 49 |
-</url> |
|
| 50 |
-<url> |
|
| 51 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgcampain/excel/selectMsgExcelDataView.do</loc> |
|
| 52 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 53 |
- <priority>0.64</priority> |
|
| 37 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 38 |
+ <priority>0.80</priority> |
|
| 54 | 39 |
</url> |
| 55 | 40 |
<url> |
| 56 | 41 |
<loc>https://www.munjaon.co.kr/web/mjon/custom/selectMsgCustomView.do?tap=2</loc> |
| 57 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 58 |
- <priority>0.64</priority> |
|
| 59 |
-</url> |
|
| 60 |
-<url> |
|
| 61 |
- <loc>https://www.munjaon.co.kr/web/mjon/custom/selectMsgCustomView.do?tap=3</loc> |
|
| 62 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 63 |
- <priority>0.64</priority> |
|
| 42 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 43 |
+ <priority>0.80</priority> |
|
| 64 | 44 |
</url> |
| 65 | 45 |
<url> |
| 66 | 46 |
<loc>https://www.munjaon.co.kr/web/info/mjonInfo.do</loc> |
| 67 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 68 |
- <priority>0.64</priority> |
|
| 47 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 48 |
+ <priority>0.80</priority> |
|
| 69 | 49 |
</url> |
| 70 | 50 |
<url> |
| 71 | 51 |
<loc>https://www.munjaon.co.kr/web/info/mjonFunc.do</loc> |
| 72 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 73 |
- <priority>0.64</priority> |
|
| 52 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 53 |
+ <priority>0.80</priority> |
|
| 74 | 54 |
</url> |
| 75 | 55 |
<url> |
| 76 | 56 |
<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do</loc> |
| 77 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 78 |
- <priority>0.64</priority> |
|
| 57 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 58 |
+ <priority>0.80</priority> |
|
| 79 | 59 |
</url> |
| 80 | 60 |
<url> |
| 81 | 61 |
<loc>https://www.munjaon.co.kr/web/mjon/addr/addrMobGuide.do</loc> |
| 82 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 83 |
- <priority>0.64</priority> |
|
| 62 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 63 |
+ <priority>0.80</priority> |
|
| 64 |
+</url> |
|
| 65 |
+<url> |
|
| 66 |
+ <loc>https://www.munjaon.co.kr/web/cop/bbs/NoticeList.do</loc> |
|
| 67 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 68 |
+ <priority>0.80</priority> |
|
| 84 | 69 |
</url> |
| 85 | 70 |
<url> |
| 86 | 71 |
<loc>https://www.munjaon.co.kr/web/cop/bbs/TermsList.do</loc> |
| 87 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 88 |
- <priority>0.64</priority> |
|
| 72 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 73 |
+ <priority>0.80</priority> |
|
| 74 |
+</url> |
|
| 75 |
+<url> |
|
| 76 |
+ <loc>https://www.munjaon.co.kr/web/cop/bbs/FaqList.do</loc> |
|
| 77 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 78 |
+ <priority>0.80</priority> |
|
| 89 | 79 |
</url> |
| 90 | 80 |
<url> |
| 91 | 81 |
<loc>https://www.munjaon.co.kr/web/cop/bbs/EventList.do</loc> |
| 92 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 82 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 83 |
+ <priority>0.80</priority> |
|
| 84 |
+</url> |
|
| 85 |
+<url> |
|
| 86 |
+ <loc>https://www.munjaon.co.kr/web/main/mainPage.do</loc> |
|
| 87 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 88 |
+ <priority>0.80</priority> |
|
| 89 |
+</url> |
|
| 90 |
+<url> |
|
| 91 |
+ <loc>https://www.munjaon.co.kr/web/mjon/alimtalk/kakaoAlimtalkMsgDataView.do</loc> |
|
| 92 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 93 |
+ <priority>0.64</priority> |
|
| 94 |
+</url> |
|
| 95 |
+<url> |
|
| 96 |
+ <loc>https://www.munjaon.co.kr/web/mjon/fax/faxDataView.do</loc> |
|
| 97 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 98 |
+ <priority>0.64</priority> |
|
| 99 |
+</url> |
|
| 100 |
+<url> |
|
| 101 |
+ <loc>https://www.munjaon.co.kr/web/mjon/kakao/alimtalk/kakaoAlimtalkIntrdView.do</loc> |
|
| 102 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 93 | 103 |
<priority>0.64</priority> |
| 94 | 104 |
</url> |
| 95 | 105 |
<url> |
| 96 | 106 |
<loc>https://www.munjaon.co.kr/web/user/findUserId.do</loc> |
| 97 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 107 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 98 | 108 |
<priority>0.64</priority> |
| 99 | 109 |
</url> |
| 100 | 110 |
<url> |
| 101 | 111 |
<loc>https://www.munjaon.co.kr/web/user/rePassword.do</loc> |
| 102 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 112 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 103 | 113 |
<priority>0.64</priority> |
| 104 | 114 |
</url> |
| 105 | 115 |
<url> |
| 106 | 116 |
<loc>https://www.munjaon.co.kr/web/cop/bbs/TermsList.do?menuNm=02</loc> |
| 107 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 117 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 108 | 118 |
<priority>0.64</priority> |
| 109 | 119 |
</url> |
| 110 | 120 |
<url> |
| 111 | 121 |
<loc>https://www.munjaon.co.kr/web/cop/bbs/TermsList.do?menuNm=03</loc> |
| 112 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 122 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 113 | 123 |
<priority>0.64</priority> |
| 114 | 124 |
</url> |
| 115 | 125 |
<url> |
| 116 | 126 |
<loc>https://www.munjaon.co.kr/web/cop/bbs/TermsList.do?menuNm=04</loc> |
| 117 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 127 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 118 | 128 |
<priority>0.64</priority> |
| 119 | 129 |
</url> |
| 120 | 130 |
<url> |
| 121 |
- <loc>https://www.munjaon.co.kr/web/user/login/selectUserDept.do</loc> |
|
| 122 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 123 |
- <priority>0.51</priority> |
|
| 131 |
+ <loc>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</loc> |
|
| 132 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 133 |
+ <priority>0.64</priority> |
|
| 124 | 134 |
</url> |
| 125 | 135 |
<url> |
| 126 |
- <loc>https://www.munjaon.co.kr/web/cop/bbs/NoticeDetail.do?bbsId=BBSMSTR_000000000762&nttId=210</loc> |
|
| 127 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 128 |
- <priority>0.51</priority> |
|
| 136 |
+ <loc>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</loc> |
|
| 137 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 138 |
+ <priority>0.64</priority> |
|
| 139 |
+</url> |
|
| 140 |
+<url> |
|
| 141 |
+ <loc>https://www.munjaon.co.kr/publish/publish_adv/send_group_text.html</loc> |
|
| 142 |
+ <lastmod>2023-10-23T06:11:19+00:00</lastmod> |
|
| 143 |
+ <priority>0.64</priority> |
|
| 144 |
+</url> |
|
| 145 |
+<url> |
|
| 146 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P</loc> |
|
| 147 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 148 |
+ <priority>0.64</priority> |
|
| 149 |
+</url> |
|
| 150 |
+<url> |
|
| 151 |
+ <loc>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</loc> |
|
| 152 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 153 |
+ <priority>0.64</priority> |
|
| 129 | 154 |
</url> |
| 130 | 155 |
<url> |
| 131 | 156 |
<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%95%88%EB%B6%80</loc> |
| 132 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 133 |
- <priority>0.51</priority> |
|
| 157 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 158 |
+ <priority>0.64</priority> |
|
| 134 | 159 |
</url> |
| 135 | 160 |
<url> |
| 136 | 161 |
<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%95%88%EB%B6%80</loc> |
| 137 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 138 |
- <priority>0.51</priority> |
|
| 162 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 163 |
+ <priority>0.64</priority> |
|
| 139 | 164 |
</url> |
| 140 | 165 |
<url> |
| 141 | 166 |
<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%95%88%EB%B6%80</loc> |
| 142 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 143 |
- <priority>0.51</priority> |
|
| 144 |
-</url> |
|
| 145 |
-<url> |
|
| 146 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%82%B0%EC%95%85%ED%9A%8C</loc> |
|
| 147 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 148 |
- <priority>0.51</priority> |
|
| 149 |
-</url> |
|
| 150 |
-<url> |
|
| 151 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%A1%B0%EB%AC%B8</loc> |
|
| 152 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 153 |
- <priority>0.51</priority> |
|
| 154 |
-</url> |
|
| 155 |
-<url> |
|
| 156 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EB%AA%A9%EC%9A%94%EC%9D%BC</loc> |
|
| 157 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 158 |
- <priority>0.51</priority> |
|
| 159 |
-</url> |
|
| 160 |
-<url> |
|
| 161 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EB%82%A0%EC%94%A8</loc> |
|
| 162 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 163 |
- <priority>0.51</priority> |
|
| 164 |
-</url> |
|
| 165 |
-<url> |
|
| 166 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=4%EC%9B%94</loc> |
|
| 167 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 168 |
- <priority>0.51</priority> |
|
| 169 |
-</url> |
|
| 170 |
-<url> |
|
| 171 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EB%8B%B5%EB%A1%80</loc> |
|
| 172 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 173 |
- <priority>0.51</priority> |
|
| 174 |
-</url> |
|
| 175 |
-<url> |
|
| 176 |
- <loc>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</loc> |
|
| 177 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 178 |
- <priority>0.51</priority> |
|
| 179 |
-</url> |
|
| 180 |
-<url> |
|
| 181 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%A2%8B%EC%9D%80%EA%B8%80</loc> |
|
| 182 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 183 |
- <priority>0.51</priority> |
|
| 184 |
-</url> |
|
| 185 |
-<url> |
|
| 186 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EA%B0%90%EC%82%AC</loc> |
|
| 187 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 188 |
- <priority>0.51</priority> |
|
| 189 |
-</url> |
|
| 190 |
-<url> |
|
| 191 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%ED%86%A0%EC%9A%94%EC%9D%BC</loc> |
|
| 192 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 193 |
- <priority>0.51</priority> |
|
| 194 |
-</url> |
|
| 195 |
-<url> |
|
| 196 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%ED%9C%B4%EC%9D%BC</loc> |
|
| 197 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 198 |
- <priority>0.51</priority> |
|
| 199 |
-</url> |
|
| 200 |
-<url> |
|
| 201 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=6%EC%9B%94</loc> |
|
| 202 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 203 |
- <priority>0.51</priority> |
|
| 204 |
-</url> |
|
| 205 |
-<url> |
|
| 206 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%B9%A0%EC%88%9C</loc> |
|
| 207 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 208 |
- <priority>0.51</priority> |
|
| 209 |
-</url> |
|
| 210 |
-<url> |
|
| 211 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EB%8F%8C%EC%9E%94%EC%B9%98</loc> |
|
| 212 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 213 |
- <priority>0.51</priority> |
|
| 214 |
-</url> |
|
| 215 |
-<url> |
|
| 216 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%A2%85%EA%B5%90</loc> |
|
| 217 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 218 |
- <priority>0.51</priority> |
|
| 219 |
-</url> |
|
| 220 |
-<url> |
|
| 221 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%9D%91%EC%9B%90</loc> |
|
| 222 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 223 |
- <priority>0.51</priority> |
|
| 224 |
-</url> |
|
| 225 |
-<url> |
|
| 226 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=1%EC%9B%94</loc> |
|
| 227 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 228 |
- <priority>0.51</priority> |
|
| 229 |
-</url> |
|
| 230 |
-<url> |
|
| 231 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%9E%85%EB%8F%99</loc> |
|
| 232 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 233 |
- <priority>0.51</priority> |
|
| 234 |
-</url> |
|
| 235 |
-<url> |
|
| 236 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=8%EC%9B%94</loc> |
|
| 237 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 238 |
- <priority>0.51</priority> |
|
| 167 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 168 |
+ <priority>0.64</priority> |
|
| 239 | 169 |
</url> |
| 240 | 170 |
<url> |
| 241 | 171 |
<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%8A%B9%EC%A7%84</loc> |
| 242 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 243 |
- <priority>0.51</priority> |
|
| 172 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 173 |
+ <priority>0.64</priority> |
|
| 244 | 174 |
</url> |
| 245 | 175 |
<url> |
| 246 | 176 |
<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%9B%94%EC%9A%94%EC%9D%BC</loc> |
| 247 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 248 |
- <priority>0.51</priority> |
|
| 177 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 178 |
+ <priority>0.64</priority> |
|
| 249 | 179 |
</url> |
| 250 | 180 |
<url> |
| 251 | 181 |
<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%ED%99%98%EA%B0%91</loc> |
| 252 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 253 |
- <priority>0.51</priority> |
|
| 254 |
-</url> |
|
| 255 |
-<url> |
|
| 256 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=10%EC%9B%94</loc> |
|
| 257 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 258 |
- <priority>0.51</priority> |
|
| 259 |
-</url> |
|
| 260 |
-<url> |
|
| 261 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EB%B3%84%EC%9E%90%EB%A6%AC</loc> |
|
| 262 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 263 |
- <priority>0.51</priority> |
|
| 264 |
-</url> |
|
| 265 |
-<url> |
|
| 266 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%9D%B8%EC%82%AC</loc> |
|
| 267 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 268 |
- <priority>0.51</priority> |
|
| 182 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 183 |
+ <priority>0.64</priority> |
|
| 269 | 184 |
</url> |
| 270 | 185 |
<url> |
| 271 | 186 |
<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EA%B3%A0%EB%B0%B1</loc> |
| 272 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 273 |
- <priority>0.51</priority> |
|
| 187 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 188 |
+ <priority>0.64</priority> |
|
| 189 |
+</url> |
|
| 190 |
+<url> |
|
| 191 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=10%EC%9B%94</loc> |
|
| 192 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 193 |
+ <priority>0.64</priority> |
|
| 194 |
+</url> |
|
| 195 |
+<url> |
|
| 196 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EB%B3%84%EC%9E%90%EB%A6%AC</loc> |
|
| 197 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 198 |
+ <priority>0.64</priority> |
|
| 199 |
+</url> |
|
| 200 |
+<url> |
|
| 201 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%9D%B8%EC%82%AC</loc> |
|
| 202 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 203 |
+ <priority>0.64</priority> |
|
| 274 | 204 |
</url> |
| 275 | 205 |
<url> |
| 276 | 206 |
<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%ED%96%89%EC%82%AC</loc> |
| 277 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 278 |
- <priority>0.51</priority> |
|
| 207 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 208 |
+ <priority>0.64</priority> |
|
| 279 | 209 |
</url> |
| 280 | 210 |
<url> |
| 281 | 211 |
<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%88%98%EC%9A%94%EC%9D%BC</loc> |
| 282 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 283 |
- <priority>0.51</priority> |
|
| 212 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 213 |
+ <priority>0.64</priority> |
|
| 284 | 214 |
</url> |
| 285 | 215 |
<url> |
| 286 | 216 |
<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EA%B3%A0%ED%9D%AC</loc> |
| 287 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 288 |
- <priority>0.51</priority> |
|
| 217 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 218 |
+ <priority>0.64</priority> |
|
| 289 | 219 |
</url> |
| 290 | 220 |
<url> |
| 291 | 221 |
<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=3%EC%9B%94</loc> |
| 292 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 293 |
- <priority>0.51</priority> |
|
| 294 |
-</url> |
|
| 295 |
-<url> |
|
| 296 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%84%A0%EA%B1%B0</loc> |
|
| 297 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 298 |
- <priority>0.51</priority> |
|
| 299 |
-</url> |
|
| 300 |
-<url> |
|
| 301 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%B6%95%ED%95%98</loc> |
|
| 302 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 303 |
- <priority>0.51</priority> |
|
| 222 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 223 |
+ <priority>0.64</priority> |
|
| 304 | 224 |
</url> |
| 305 | 225 |
<url> |
| 306 | 226 |
<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EB%AA%85%EC%A0%88</loc> |
| 307 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 308 |
- <priority>0.51</priority> |
|
| 227 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 228 |
+ <priority>0.64</priority> |
|
| 309 | 229 |
</url> |
| 310 | 230 |
<url> |
| 311 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%BD%94%EB%AF%B9</loc> |
|
| 312 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 313 |
- <priority>0.51</priority> |
|
| 231 |
+ <loc>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</loc> |
|
| 232 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 233 |
+ <priority>0.64</priority> |
|
| 314 | 234 |
</url> |
| 315 | 235 |
<url> |
| 316 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%9C%84%EB%A1%9C</loc> |
|
| 317 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 318 |
- <priority>0.51</priority> |
|
| 236 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%84%A0%EA%B1%B0</loc> |
|
| 237 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 238 |
+ <priority>0.64</priority> |
|
| 319 | 239 |
</url> |
| 320 | 240 |
<url> |
| 321 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EA%B8%88%EC%9A%94%EC%9D%BC</loc> |
|
| 322 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 323 |
- <priority>0.51</priority> |
|
| 324 |
-</url> |
|
| 325 |
-<url> |
|
| 326 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EA%B3%84%EC%A0%88</loc> |
|
| 327 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 328 |
- <priority>0.51</priority> |
|
| 241 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%B6%95%ED%95%98</loc> |
|
| 242 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 243 |
+ <priority>0.64</priority> |
|
| 329 | 244 |
</url> |
| 330 | 245 |
<url> |
| 331 | 246 |
<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=5%EC%9B%94</loc> |
| 332 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 333 |
- <priority>0.51</priority> |
|
| 247 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 248 |
+ <priority>0.64</priority> |
|
| 334 | 249 |
</url> |
| 335 | 250 |
<url> |
| 336 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EA%B2%BD%EC%A1%B0%EC%82%AC</loc> |
|
| 337 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 338 |
- <priority>0.51</priority> |
|
| 251 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%BD%94%EB%AF%B9</loc> |
|
| 252 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 253 |
+ <priority>0.64</priority> |
|
| 254 |
+</url> |
|
| 255 |
+<url> |
|
| 256 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%9C%84%EB%A1%9C</loc> |
|
| 257 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 258 |
+ <priority>0.64</priority> |
|
| 259 |
+</url> |
|
| 260 |
+<url> |
|
| 261 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EA%B8%88%EC%9A%94%EC%9D%BC</loc> |
|
| 262 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 263 |
+ <priority>0.64</priority> |
|
| 264 |
+</url> |
|
| 265 |
+<url> |
|
| 266 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EA%B3%84%EC%A0%88</loc> |
|
| 267 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 268 |
+ <priority>0.64</priority> |
|
| 339 | 269 |
</url> |
| 340 | 270 |
<url> |
| 341 | 271 |
<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%B4%88%EB%8C%80</loc> |
| 342 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 343 |
- <priority>0.51</priority> |
|
| 272 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 273 |
+ <priority>0.64</priority> |
|
| 344 | 274 |
</url> |
| 345 | 275 |
<url> |
| 346 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EB%AA%85%EC%96%B8</loc> |
|
| 347 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 348 |
- <priority>0.51</priority> |
|
| 276 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EB%AC%B4%EB%8D%94%EC%9C%84</loc> |
|
| 277 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 278 |
+ <priority>0.64</priority> |
|
| 349 | 279 |
</url> |
| 350 | 280 |
<url> |
| 351 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%88%98%EB%8A%A5</loc> |
|
| 352 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 353 |
- <priority>0.51</priority> |
|
| 354 |
-</url> |
|
| 355 |
-<url> |
|
| 356 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%9D%BC%EC%9A%94%EC%9D%BC</loc> |
|
| 357 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 358 |
- <priority>0.51</priority> |
|
| 359 |
-</url> |
|
| 360 |
-<url> |
|
| 361 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%ED%99%98%EC%A0%88%EA%B8%B0</loc> |
|
| 362 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 363 |
- <priority>0.51</priority> |
|
| 281 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EA%B2%BD%EC%A1%B0%EC%82%AC</loc> |
|
| 282 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 283 |
+ <priority>0.64</priority> |
|
| 364 | 284 |
</url> |
| 365 | 285 |
<url> |
| 366 | 286 |
<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=7%EC%9B%94</loc> |
| 367 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 368 |
- <priority>0.51</priority> |
|
| 287 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 288 |
+ <priority>0.64</priority> |
|
| 289 |
+</url> |
|
| 290 |
+<url> |
|
| 291 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EB%AA%85%EC%96%B8</loc> |
|
| 292 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 293 |
+ <priority>0.64</priority> |
|
| 294 |
+</url> |
|
| 295 |
+<url> |
|
| 296 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%88%98%EB%8A%A5</loc> |
|
| 297 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 298 |
+ <priority>0.64</priority> |
|
| 299 |
+</url> |
|
| 300 |
+<url> |
|
| 301 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%9D%BC%EC%9A%94%EC%9D%BC</loc> |
|
| 302 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 303 |
+ <priority>0.64</priority> |
|
| 304 |
+</url> |
|
| 305 |
+<url> |
|
| 306 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%ED%99%98%EC%A0%88%EA%B8%B0</loc> |
|
| 307 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 308 |
+ <priority>0.64</priority> |
|
| 369 | 309 |
</url> |
| 370 | 310 |
<url> |
| 371 | 311 |
<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%ED%95%A9%EA%B2%A9</loc> |
| 372 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 373 |
- <priority>0.51</priority> |
|
| 312 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 313 |
+ <priority>0.64</priority> |
|
| 314 |
+</url> |
|
| 315 |
+<url> |
|
| 316 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EA%B2%A9%EB%A0%A4</loc> |
|
| 317 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 318 |
+ <priority>0.64</priority> |
|
| 374 | 319 |
</url> |
| 375 | 320 |
<url> |
| 376 | 321 |
<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EA%B2%A8%EC%9A%B8</loc> |
| 377 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 378 |
- <priority>0.51</priority> |
|
| 322 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 323 |
+ <priority>0.64</priority> |
|
| 379 | 324 |
</url> |
| 380 | 325 |
<url> |
| 381 | 326 |
<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%B6%9C%EC%82%B0</loc> |
| 382 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 383 |
- <priority>0.51</priority> |
|
| 384 |
-</url> |
|
| 385 |
-<url> |
|
| 386 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%9A%B4%EC%84%B8</loc> |
|
| 387 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 388 |
- <priority>0.51</priority> |
|
| 389 |
-</url> |
|
| 390 |
-<url> |
|
| 391 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%A3%BC%EB%A7%90</loc> |
|
| 392 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 393 |
- <priority>0.51</priority> |
|
| 394 |
-</url> |
|
| 395 |
-<url> |
|
| 396 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=2%EC%9B%94</loc> |
|
| 397 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 398 |
- <priority>0.51</priority> |
|
| 399 |
-</url> |
|
| 400 |
-<url> |
|
| 401 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%9C%A0%EB%A8%B8</loc> |
|
| 402 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 403 |
- <priority>0.51</priority> |
|
| 327 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 328 |
+ <priority>0.64</priority> |
|
| 404 | 329 |
</url> |
| 405 | 330 |
<url> |
| 406 | 331 |
<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=9%EC%9B%94</loc> |
| 407 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 408 |
- <priority>0.51</priority> |
|
| 332 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 333 |
+ <priority>0.64</priority> |
|
| 334 |
+</url> |
|
| 335 |
+<url> |
|
| 336 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%9A%B4%EC%84%B8</loc> |
|
| 337 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 338 |
+ <priority>0.64</priority> |
|
| 339 |
+</url> |
|
| 340 |
+<url> |
|
| 341 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%A3%BC%EB%A7%90</loc> |
|
| 342 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 343 |
+ <priority>0.64</priority> |
|
| 344 |
+</url> |
|
| 345 |
+<url> |
|
| 346 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=2%EC%9B%94</loc> |
|
| 347 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 348 |
+ <priority>0.64</priority> |
|
| 349 |
+</url> |
|
| 350 |
+<url> |
|
| 351 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%9C%A0%EB%A8%B8</loc> |
|
| 352 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 353 |
+ <priority>0.64</priority> |
|
| 409 | 354 |
</url> |
| 410 | 355 |
<url> |
| 411 | 356 |
<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EB%AA%A8%EC%9E%84</loc> |
| 412 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 413 |
- <priority>0.51</priority> |
|
| 357 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 358 |
+ <priority>0.64</priority> |
|
| 414 | 359 |
</url> |
| 415 | 360 |
<url> |
| 416 | 361 |
<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%ED%99%94%EC%9A%94%EC%9D%BC</loc> |
| 417 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 418 |
- <priority>0.51</priority> |
|
| 362 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 363 |
+ <priority>0.64</priority> |
|
| 419 | 364 |
</url> |
| 420 | 365 |
<url> |
| 421 | 366 |
<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%ED%9A%8C%EA%B0%91</loc> |
| 422 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 423 |
- <priority>0.51</priority> |
|
| 424 |
-</url> |
|
| 425 |
-<url> |
|
| 426 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%ED%88%AC%ED%91%9C</loc> |
|
| 427 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 428 |
- <priority>0.51</priority> |
|
| 429 |
-</url> |
|
| 430 |
-<url> |
|
| 431 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EA%B1%B4%EA%B0%95</loc> |
|
| 432 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 433 |
- <priority>0.51</priority> |
|
| 367 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 368 |
+ <priority>0.64</priority> |
|
| 434 | 369 |
</url> |
| 435 | 370 |
<url> |
| 436 | 371 |
<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EA%B8%B0%EB%85%90%EC%9D%BC</loc> |
| 437 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 438 |
- <priority>0.51</priority> |
|
| 372 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 373 |
+ <priority>0.64</priority> |
|
| 374 |
+</url> |
|
| 375 |
+<url> |
|
| 376 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EB%B4%84</loc> |
|
| 377 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 378 |
+ <priority>0.64</priority> |
|
| 379 |
+</url> |
|
| 380 |
+<url> |
|
| 381 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%ED%88%AC%ED%91%9C</loc> |
|
| 382 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 383 |
+ <priority>0.64</priority> |
|
| 384 |
+</url> |
|
| 385 |
+<url> |
|
| 386 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EA%B1%B4%EA%B0%95</loc> |
|
| 387 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 388 |
+ <priority>0.64</priority> |
|
| 389 |
+</url> |
|
| 390 |
+<url> |
|
| 391 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%82%B0%EC%95%85%ED%9A%8C</loc> |
|
| 392 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 393 |
+ <priority>0.64</priority> |
|
| 394 |
+</url> |
|
| 395 |
+<url> |
|
| 396 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%A1%B0%EB%AC%B8</loc> |
|
| 397 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 398 |
+ <priority>0.64</priority> |
|
| 399 |
+</url> |
|
| 400 |
+<url> |
|
| 401 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EB%AA%A9%EC%9A%94%EC%9D%BC</loc> |
|
| 402 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 403 |
+ <priority>0.64</priority> |
|
| 404 |
+</url> |
|
| 405 |
+<url> |
|
| 406 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EB%82%A0%EC%94%A8</loc> |
|
| 407 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 408 |
+ <priority>0.64</priority> |
|
| 409 |
+</url> |
|
| 410 |
+<url> |
|
| 411 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=4%EC%9B%94</loc> |
|
| 412 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 413 |
+ <priority>0.64</priority> |
|
| 414 |
+</url> |
|
| 415 |
+<url> |
|
| 416 |
+ <loc>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</loc> |
|
| 417 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 418 |
+ <priority>0.64</priority> |
|
| 419 |
+</url> |
|
| 420 |
+<url> |
|
| 421 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%97%AC%EB%A6%84</loc> |
|
| 422 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 423 |
+ <priority>0.64</priority> |
|
| 424 |
+</url> |
|
| 425 |
+<url> |
|
| 426 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EB%8B%B5%EB%A1%80</loc> |
|
| 427 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 428 |
+ <priority>0.64</priority> |
|
| 429 |
+</url> |
|
| 430 |
+<url> |
|
| 431 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=6%EC%9B%94</loc> |
|
| 432 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 433 |
+ <priority>0.64</priority> |
|
| 434 |
+</url> |
|
| 435 |
+<url> |
|
| 436 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%A2%8B%EC%9D%80%EA%B8%80</loc> |
|
| 437 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 438 |
+ <priority>0.64</priority> |
|
| 439 |
+</url> |
|
| 440 |
+<url> |
|
| 441 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EA%B0%90%EC%82%AC</loc> |
|
| 442 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 443 |
+ <priority>0.64</priority> |
|
| 444 |
+</url> |
|
| 445 |
+<url> |
|
| 446 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%ED%86%A0%EC%9A%94%EC%9D%BC</loc> |
|
| 447 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 448 |
+ <priority>0.64</priority> |
|
| 449 |
+</url> |
|
| 450 |
+<url> |
|
| 451 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%ED%9C%B4%EC%9D%BC</loc> |
|
| 452 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 453 |
+ <priority>0.64</priority> |
|
| 454 |
+</url> |
|
| 455 |
+<url> |
|
| 456 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EB%8F%8C%EC%9E%94%EC%B9%98</loc> |
|
| 457 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 458 |
+ <priority>0.64</priority> |
|
| 459 |
+</url> |
|
| 460 |
+<url> |
|
| 461 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%B6%94%EC%84%9D</loc> |
|
| 462 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 463 |
+ <priority>0.64</priority> |
|
| 464 |
+</url> |
|
| 465 |
+<url> |
|
| 466 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%B9%A0%EC%88%9C</loc> |
|
| 467 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 468 |
+ <priority>0.64</priority> |
|
| 469 |
+</url> |
|
| 470 |
+<url> |
|
| 471 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=8%EC%9B%94</loc> |
|
| 472 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 473 |
+ <priority>0.64</priority> |
|
| 474 |
+</url> |
|
| 475 |
+<url> |
|
| 476 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%A2%85%EA%B5%90</loc> |
|
| 477 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 478 |
+ <priority>0.64</priority> |
|
| 479 |
+</url> |
|
| 480 |
+<url> |
|
| 481 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%9D%91%EC%9B%90</loc> |
|
| 482 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 483 |
+ <priority>0.64</priority> |
|
| 484 |
+</url> |
|
| 485 |
+<url> |
|
| 486 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=1%EC%9B%94</loc> |
|
| 487 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 488 |
+ <priority>0.64</priority> |
|
| 489 |
+</url> |
|
| 490 |
+<url> |
|
| 491 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%9E%85%EB%8F%99</loc> |
|
| 492 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 493 |
+ <priority>0.64</priority> |
|
| 439 | 494 |
</url> |
| 440 | 495 |
<url> |
| 441 | 496 |
<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=12%EC%9B%94</loc> |
| 442 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 443 |
- <priority>0.51</priority> |
|
| 444 |
-</url> |
|
| 445 |
-<url> |
|
| 446 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%8B%A0%EB%85%84</loc> |
|
| 447 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 448 |
- <priority>0.51</priority> |
|
| 497 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 498 |
+ <priority>0.64</priority> |
|
| 449 | 499 |
</url> |
| 450 | 500 |
<url> |
| 451 | 501 |
<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%84%A4%EB%82%A0</loc> |
| 452 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 453 |
- <priority>0.51</priority> |
|
| 502 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 503 |
+ <priority>0.64</priority> |
|
| 454 | 504 |
</url> |
| 455 | 505 |
<url> |
| 456 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EA%B2%BD%EC%A1%B0</loc> |
|
| 457 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 458 |
- <priority>0.51</priority> |
|
| 506 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%8B%A0%EB%85%84</loc> |
|
| 507 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 508 |
+ <priority>0.64</priority> |
|
| 459 | 509 |
</url> |
| 460 | 510 |
<url> |
| 461 | 511 |
<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=11%EC%9B%94</loc> |
| 462 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 463 |
- <priority>0.51</priority> |
|
| 512 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 513 |
+ <priority>0.64</priority> |
|
| 464 | 514 |
</url> |
| 465 | 515 |
<url> |
| 466 | 516 |
<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%83%9D%EC%9D%BC</loc> |
| 467 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 468 |
- <priority>0.51</priority> |
|
| 517 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 518 |
+ <priority>0.64</priority> |
|
| 519 |
+</url> |
|
| 520 |
+<url> |
|
| 521 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EA%B2%BD%EC%A1%B0</loc> |
|
| 522 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 523 |
+ <priority>0.64</priority> |
|
| 469 | 524 |
</url> |
| 470 | 525 |
<url> |
| 471 | 526 |
<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EA%B2%B0%ED%98%BC</loc> |
| 472 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 473 |
- <priority>0.51</priority> |
|
| 527 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 528 |
+ <priority>0.64</priority> |
|
| 474 | 529 |
</url> |
| 475 | 530 |
<url> |
| 476 | 531 |
<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EB%B6%80%EA%B3%A0</loc> |
| 477 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 478 |
- <priority>0.51</priority> |
|
| 532 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 533 |
+ <priority>0.64</priority> |
|
| 479 | 534 |
</url> |
| 480 | 535 |
<url> |
| 481 | 536 |
<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%9E%A5%EB%A1%80</loc> |
| 482 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 483 |
- <priority>0.51</priority> |
|
| 537 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 538 |
+ <priority>0.64</priority> |
|
| 484 | 539 |
</url> |
| 485 | 540 |
<url> |
| 486 | 541 |
<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%A1%B0%EC%9D%98</loc> |
| 487 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 488 |
- <priority>0.51</priority> |
|
| 542 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 543 |
+ <priority>0.64</priority> |
|
| 489 | 544 |
</url> |
| 490 | 545 |
<url> |
| 491 | 546 |
<loc>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</loc> |
| 492 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 493 |
- <priority>0.51</priority> |
|
| 547 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 548 |
+ <priority>0.64</priority> |
|
| 494 | 549 |
</url> |
| 495 | 550 |
<url> |
| 496 | 551 |
<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EA%B0%80%EC%9D%84</loc> |
| 497 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 498 |
- <priority>0.51</priority> |
|
| 552 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 553 |
+ <priority>0.64</priority> |
|
| 499 | 554 |
</url> |
| 500 | 555 |
<url> |
| 501 | 556 |
<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%83%88%ED%95%B4</loc> |
| 502 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 503 |
- <priority>0.51</priority> |
|
| 557 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 558 |
+ <priority>0.64</priority> |
|
| 504 | 559 |
</url> |
| 505 | 560 |
<url> |
| 506 | 561 |
<loc>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</loc> |
| 507 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 508 |
- <priority>0.51</priority> |
|
| 562 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 563 |
+ <priority>0.64</priority> |
|
| 509 | 564 |
</url> |
| 510 | 565 |
<url> |
| 511 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%ED%96%89%EC%82%AC</loc> |
|
| 512 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 513 |
- <priority>0.41</priority> |
|
| 514 |
-</url> |
|
| 515 |
-<url> |
|
| 516 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%A1%B0%EB%AC%B8</loc> |
|
| 517 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 518 |
- <priority>0.41</priority> |
|
| 519 |
-</url> |
|
| 520 |
-<url> |
|
| 521 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%9B%94%EC%9A%94%EC%9D%BC</loc> |
|
| 522 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 523 |
- <priority>0.41</priority> |
|
| 524 |
-</url> |
|
| 525 |
-<url> |
|
| 526 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EA%B3%A0%ED%9D%AC</loc> |
|
| 527 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 528 |
- <priority>0.41</priority> |
|
| 529 |
-</url> |
|
| 530 |
-<url> |
|
| 531 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=1%EC%9B%94</loc> |
|
| 532 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 533 |
- <priority>0.41</priority> |
|
| 534 |
-</url> |
|
| 535 |
-<url> |
|
| 536 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=10%EC%9B%94</loc> |
|
| 537 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 538 |
- <priority>0.41</priority> |
|
| 539 |
-</url> |
|
| 540 |
-<url> |
|
| 541 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EB%B3%84%EC%9E%90%EB%A6%AC</loc> |
|
| 542 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 543 |
- <priority>0.41</priority> |
|
| 544 |
-</url> |
|
| 545 |
-<url> |
|
| 546 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EB%8B%B5%EB%A1%80</loc> |
|
| 547 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 548 |
- <priority>0.41</priority> |
|
| 549 |
-</url> |
|
| 550 |
-<url> |
|
| 551 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EB%AA%85%EC%A0%88</loc> |
|
| 552 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 553 |
- <priority>0.41</priority> |
|
| 554 |
-</url> |
|
| 555 |
-<url> |
|
| 556 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%86%A1%EB%85%84%ED%9A%8C</loc> |
|
| 557 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 558 |
- <priority>0.41</priority> |
|
| 559 |
-</url> |
|
| 560 |
-<url> |
|
| 561 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EA%B0%90%EC%82%AC</loc> |
|
| 562 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 563 |
- <priority>0.41</priority> |
|
| 564 |
-</url> |
|
| 565 |
-<url> |
|
| 566 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%88%98%EC%9A%94%EC%9D%BC</loc> |
|
| 567 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 568 |
- <priority>0.41</priority> |
|
| 569 |
-</url> |
|
| 570 |
-<url> |
|
| 571 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EA%B3%84%EC%A0%88</loc> |
|
| 572 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 573 |
- <priority>0.41</priority> |
|
| 574 |
-</url> |
|
| 575 |
-<url> |
|
| 576 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=3%EC%9B%94</loc> |
|
| 577 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 578 |
- <priority>0.41</priority> |
|
| 579 |
-</url> |
|
| 580 |
-<url> |
|
| 581 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EA%B0%9C%EC%97%85</loc> |
|
| 582 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 583 |
- <priority>0.41</priority> |
|
| 584 |
-</url> |
|
| 585 |
-<url> |
|
| 586 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%B4%88%EB%8C%80</loc> |
|
| 587 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 588 |
- <priority>0.41</priority> |
|
| 589 |
-</url> |
|
| 590 |
-<url> |
|
| 591 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%BD%94%EB%AF%B9</loc> |
|
| 592 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 593 |
- <priority>0.41</priority> |
|
| 594 |
-</url> |
|
| 595 |
-<url> |
|
| 596 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%9D%91%EC%9B%90</loc> |
|
| 597 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 598 |
- <priority>0.41</priority> |
|
| 599 |
-</url> |
|
| 600 |
-<url> |
|
| 601 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EA%B8%88%EC%9A%94%EC%9D%BC</loc> |
|
| 602 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 603 |
- <priority>0.41</priority> |
|
| 604 |
-</url> |
|
| 605 |
-<url> |
|
| 606 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%ED%99%98%EC%A0%88%EA%B8%B0</loc> |
|
| 607 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 608 |
- <priority>0.41</priority> |
|
| 609 |
-</url> |
|
| 610 |
-<url> |
|
| 611 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=5%EC%9B%94</loc> |
|
| 612 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 613 |
- <priority>0.41</priority> |
|
| 614 |
-</url> |
|
| 615 |
-<url> |
|
| 616 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%ED%95%A9%EA%B2%A9</loc> |
|
| 617 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 618 |
- <priority>0.41</priority> |
|
| 619 |
-</url> |
|
| 620 |
-<url> |
|
| 621 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%B6%9C%EC%82%B0</loc> |
|
| 622 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 623 |
- <priority>0.41</priority> |
|
| 624 |
-</url> |
|
| 625 |
-<url> |
|
| 626 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=7%EC%9B%94</loc> |
|
| 627 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 628 |
- <priority>0.41</priority> |
|
| 629 |
-</url> |
|
| 630 |
-<url> |
|
| 631 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EB%AA%85%EC%96%B8</loc> |
|
| 632 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 633 |
- <priority>0.41</priority> |
|
| 634 |
-</url> |
|
| 635 |
-<url> |
|
| 636 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%9D%B8%EC%82%AC</loc> |
|
| 637 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 638 |
- <priority>0.41</priority> |
|
| 639 |
-</url> |
|
| 640 |
-<url> |
|
| 641 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%9C%A0%EB%A8%B8</loc> |
|
| 642 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 643 |
- <priority>0.41</priority> |
|
| 644 |
-</url> |
|
| 645 |
-<url> |
|
| 646 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EB%AA%A8%EC%9E%84</loc> |
|
| 647 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 648 |
- <priority>0.41</priority> |
|
| 649 |
-</url> |
|
| 650 |
-<url> |
|
| 651 |
- <loc>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</loc> |
|
| 652 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 653 |
- <priority>0.41</priority> |
|
| 654 |
-</url> |
|
| 655 |
-<url> |
|
| 656 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%ED%9A%8C%EA%B0%91</loc> |
|
| 657 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 658 |
- <priority>0.41</priority> |
|
| 659 |
-</url> |
|
| 660 |
-<url> |
|
| 661 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%9D%BC%EC%9A%94%EC%9D%BC</loc> |
|
| 662 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 663 |
- <priority>0.41</priority> |
|
| 664 |
-</url> |
|
| 665 |
-<url> |
|
| 666 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=9%EC%9B%94</loc> |
|
| 667 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 668 |
- <priority>0.41</priority> |
|
| 669 |
-</url> |
|
| 670 |
-<url> |
|
| 671 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%9A%B4%EC%84%B8</loc> |
|
| 672 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 673 |
- <priority>0.41</priority> |
|
| 674 |
-</url> |
|
| 675 |
-<url> |
|
| 676 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%B6%95%ED%95%98</loc> |
|
| 677 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 678 |
- <priority>0.41</priority> |
|
| 679 |
-</url> |
|
| 680 |
-<url> |
|
| 681 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EA%B8%B0%EB%85%90%EC%9D%BC</loc> |
|
| 682 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 683 |
- <priority>0.41</priority> |
|
| 684 |
-</url> |
|
| 685 |
-<url> |
|
| 686 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%86%A1%EB%85%84</loc> |
|
| 687 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 688 |
- <priority>0.41</priority> |
|
| 689 |
-</url> |
|
| 690 |
-<url> |
|
| 691 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%9C%84%EB%A1%9C</loc> |
|
| 692 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 693 |
- <priority>0.41</priority> |
|
| 694 |
-</url> |
|
| 695 |
-<url> |
|
| 696 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%ED%99%94%EC%9A%94%EC%9D%BC</loc> |
|
| 697 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 698 |
- <priority>0.41</priority> |
|
| 699 |
-</url> |
|
| 700 |
-<url> |
|
| 701 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EB%82%A0%EC%94%A8</loc> |
|
| 702 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 703 |
- <priority>0.41</priority> |
|
| 704 |
-</url> |
|
| 705 |
-<url> |
|
| 706 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=2%EC%9B%94</loc> |
|
| 707 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 708 |
- <priority>0.41</priority> |
|
| 709 |
-</url> |
|
| 710 |
-<url> |
|
| 711 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%84%A0%EA%B1%B0</loc> |
|
| 712 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 713 |
- <priority>0.41</priority> |
|
| 714 |
-</url> |
|
| 715 |
-<url> |
|
| 716 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EA%B2%BD%EC%A1%B0%EC%82%AC</loc> |
|
| 717 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 718 |
- <priority>0.41</priority> |
|
| 719 |
-</url> |
|
| 720 |
-<url> |
|
| 721 |
- <loc>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</loc> |
|
| 722 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 723 |
- <priority>0.41</priority> |
|
| 724 |
-</url> |
|
| 725 |
-<url> |
|
| 726 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EB%8F%99%EC%B0%BD%ED%9A%8C</loc> |
|
| 727 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 728 |
- <priority>0.41</priority> |
|
| 729 |
-</url> |
|
| 730 |
-<url> |
|
| 731 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%88%98%EB%8A%A5</loc> |
|
| 732 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 733 |
- <priority>0.41</priority> |
|
| 734 |
-</url> |
|
| 735 |
-<url> |
|
| 736 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EB%AA%A9%EC%9A%94%EC%9D%BC</loc> |
|
| 737 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 738 |
- <priority>0.41</priority> |
|
| 739 |
-</url> |
|
| 740 |
-<url> |
|
| 741 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%ED%9C%B4%EC%9D%BC</loc> |
|
| 742 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 743 |
- <priority>0.41</priority> |
|
| 744 |
-</url> |
|
| 745 |
-<url> |
|
| 746 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=4%EC%9B%94</loc> |
|
| 747 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 748 |
- <priority>0.41</priority> |
|
| 749 |
-</url> |
|
| 750 |
-<url> |
|
| 751 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EB%8F%8C%EC%9E%94%EC%B9%98</loc> |
|
| 752 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 753 |
- <priority>0.41</priority> |
|
| 754 |
-</url> |
|
| 755 |
-<url> |
|
| 756 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%B9%A0%EC%88%9C</loc> |
|
| 757 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 758 |
- <priority>0.41</priority> |
|
| 759 |
-</url> |
|
| 760 |
-<url> |
|
| 761 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%A2%8B%EC%9D%80%EA%B8%80</loc> |
|
| 762 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 763 |
- <priority>0.41</priority> |
|
| 764 |
-</url> |
|
| 765 |
-<url> |
|
| 766 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%A3%BC%EB%A7%90</loc> |
|
| 767 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 768 |
- <priority>0.41</priority> |
|
| 769 |
-</url> |
|
| 770 |
-<url> |
|
| 771 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%ED%86%A0%EC%9A%94%EC%9D%BC</loc> |
|
| 772 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 773 |
- <priority>0.41</priority> |
|
| 774 |
-</url> |
|
| 775 |
-<url> |
|
| 776 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%9E%85%EB%8F%99</loc> |
|
| 777 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 778 |
- <priority>0.41</priority> |
|
| 779 |
-</url> |
|
| 780 |
-<url> |
|
| 781 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=6%EC%9B%94</loc> |
|
| 782 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 783 |
- <priority>0.41</priority> |
|
| 784 |
-</url> |
|
| 785 |
-<url> |
|
| 786 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%8A%B9%EC%A7%84</loc> |
|
| 787 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 788 |
- <priority>0.41</priority> |
|
| 789 |
-</url> |
|
| 790 |
-<url> |
|
| 791 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EA%B2%A8%EC%9A%B8</loc> |
|
| 792 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 793 |
- <priority>0.41</priority> |
|
| 794 |
-</url> |
|
| 795 |
-<url> |
|
| 796 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%ED%99%98%EA%B0%91</loc> |
|
| 797 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 798 |
- <priority>0.41</priority> |
|
| 799 |
-</url> |
|
| 800 |
-<url> |
|
| 801 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=8%EC%9B%94</loc> |
|
| 802 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 803 |
- <priority>0.41</priority> |
|
| 804 |
-</url> |
|
| 805 |
-<url> |
|
| 806 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%A2%85%EA%B5%90</loc> |
|
| 807 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 808 |
- <priority>0.41</priority> |
|
| 809 |
-</url> |
|
| 810 |
-<url> |
|
| 811 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EA%B1%B4%EA%B0%95</loc> |
|
| 812 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 813 |
- <priority>0.41</priority> |
|
| 814 |
-</url> |
|
| 815 |
-<url> |
|
| 816 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EA%B3%A0%EB%B0%B1</loc> |
|
| 817 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 818 |
- <priority>0.41</priority> |
|
| 819 |
-</url> |
|
| 820 |
-<url> |
|
| 821 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=12%EC%9B%94</loc> |
|
| 822 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 823 |
- <priority>0.41</priority> |
|
| 824 |
-</url> |
|
| 825 |
-<url> |
|
| 826 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%8B%A0%EB%85%84</loc> |
|
| 827 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 828 |
- <priority>0.41</priority> |
|
| 829 |
-</url> |
|
| 830 |
-<url> |
|
| 831 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%84%A4%EB%82%A0</loc> |
|
| 832 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 833 |
- <priority>0.41</priority> |
|
| 834 |
-</url> |
|
| 835 |
-<url> |
|
| 836 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EA%B2%BD%EC%A1%B0</loc> |
|
| 837 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 838 |
- <priority>0.41</priority> |
|
| 839 |
-</url> |
|
| 840 |
-<url> |
|
| 841 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=11%EC%9B%94</loc> |
|
| 842 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 843 |
- <priority>0.41</priority> |
|
| 844 |
-</url> |
|
| 845 |
-<url> |
|
| 846 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%83%9D%EC%9D%BC</loc> |
|
| 847 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 848 |
- <priority>0.41</priority> |
|
| 849 |
-</url> |
|
| 850 |
-<url> |
|
| 851 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EA%B2%B0%ED%98%BC</loc> |
|
| 852 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 853 |
- <priority>0.41</priority> |
|
| 854 |
-</url> |
|
| 855 |
-<url> |
|
| 856 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EB%B6%80%EA%B3%A0</loc> |
|
| 857 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 858 |
- <priority>0.41</priority> |
|
| 859 |
-</url> |
|
| 860 |
-<url> |
|
| 861 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%9E%A5%EB%A1%80</loc> |
|
| 862 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 863 |
- <priority>0.41</priority> |
|
| 864 |
-</url> |
|
| 865 |
-<url> |
|
| 866 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%A1%B0%EC%9D%98</loc> |
|
| 867 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 868 |
- <priority>0.41</priority> |
|
| 869 |
-</url> |
|
| 870 |
-<url> |
|
| 871 |
- <loc>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</loc> |
|
| 872 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 873 |
- <priority>0.41</priority> |
|
| 874 |
-</url> |
|
| 875 |
-<url> |
|
| 876 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EA%B0%80%EC%9D%84</loc> |
|
| 877 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 878 |
- <priority>0.41</priority> |
|
| 879 |
-</url> |
|
| 880 |
-<url> |
|
| 881 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%83%88%ED%95%B4</loc> |
|
| 882 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 883 |
- <priority>0.41</priority> |
|
| 884 |
-</url> |
|
| 885 |
-<url> |
|
| 886 |
- <loc>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</loc> |
|
| 887 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 888 |
- <priority>0.41</priority> |
|
| 889 |
-</url> |
|
| 890 |
-<url> |
|
| 891 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%86%A1%EB%85%84%ED%9A%8C</loc> |
|
| 892 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 893 |
- <priority>0.41</priority> |
|
| 894 |
-</url> |
|
| 895 |
-<url> |
|
| 896 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EA%B0%90%EC%82%AC</loc> |
|
| 897 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 898 |
- <priority>0.41</priority> |
|
| 899 |
-</url> |
|
| 900 |
-<url> |
|
| 901 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%9B%94%EC%9A%94%EC%9D%BC</loc> |
|
| 902 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 903 |
- <priority>0.41</priority> |
|
| 904 |
-</url> |
|
| 905 |
-<url> |
|
| 906 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%ED%99%98%EC%A0%88%EA%B8%B0</loc> |
|
| 907 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 908 |
- <priority>0.41</priority> |
|
| 909 |
-</url> |
|
| 910 |
-<url> |
|
| 911 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=1%EC%9B%94</loc> |
|
| 912 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 913 |
- <priority>0.41</priority> |
|
| 914 |
-</url> |
|
| 915 |
-<url> |
|
| 916 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=10%EC%9B%94</loc> |
|
| 917 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 918 |
- <priority>0.41</priority> |
|
| 919 |
-</url> |
|
| 920 |
-<url> |
|
| 921 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%ED%88%AC%ED%91%9C</loc> |
|
| 922 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 923 |
- <priority>0.41</priority> |
|
| 924 |
-</url> |
|
| 925 |
-<url> |
|
| 926 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%ED%99%98%EA%B0%91</loc> |
|
| 927 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 928 |
- <priority>0.41</priority> |
|
| 929 |
-</url> |
|
| 930 |
-<url> |
|
| 931 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EB%8F%8C%EC%9E%94%EC%B9%98</loc> |
|
| 932 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 933 |
- <priority>0.41</priority> |
|
| 934 |
-</url> |
|
| 935 |
-<url> |
|
| 936 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%BD%94%EB%AF%B9</loc> |
|
| 937 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 938 |
- <priority>0.41</priority> |
|
| 939 |
-</url> |
|
| 940 |
-<url> |
|
| 941 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%9D%91%EC%9B%90</loc> |
|
| 942 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 943 |
- <priority>0.41</priority> |
|
| 944 |
-</url> |
|
| 945 |
-<url> |
|
| 946 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%88%98%EC%9A%94%EC%9D%BC</loc> |
|
| 947 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 948 |
- <priority>0.41</priority> |
|
| 949 |
-</url> |
|
| 950 |
-<url> |
|
| 951 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%9E%85%EB%8F%99</loc> |
|
| 952 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 953 |
- <priority>0.41</priority> |
|
| 954 |
-</url> |
|
| 955 |
-<url> |
|
| 956 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=3%EC%9B%94</loc> |
|
| 957 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 958 |
- <priority>0.41</priority> |
|
| 959 |
-</url> |
|
| 960 |
-<url> |
|
| 961 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EA%B3%A0%ED%9D%AC</loc> |
|
| 962 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 963 |
- <priority>0.41</priority> |
|
| 964 |
-</url> |
|
| 965 |
-<url> |
|
| 966 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%8A%B9%EC%A7%84</loc> |
|
| 967 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 968 |
- <priority>0.41</priority> |
|
| 969 |
-</url> |
|
| 970 |
-<url> |
|
| 971 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EB%AA%85%EC%96%B8</loc> |
|
| 972 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 973 |
- <priority>0.41</priority> |
|
| 974 |
-</url> |
|
| 975 |
-<url> |
|
| 976 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%9D%B8%EC%82%AC</loc> |
|
| 977 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 978 |
- <priority>0.41</priority> |
|
| 979 |
-</url> |
|
| 980 |
-<url> |
|
| 981 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EA%B8%88%EC%9A%94%EC%9D%BC</loc> |
|
| 982 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 983 |
- <priority>0.41</priority> |
|
| 984 |
-</url> |
|
| 985 |
-<url> |
|
| 986 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EA%B3%A0%EB%B0%B1</loc> |
|
| 987 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 988 |
- <priority>0.41</priority> |
|
| 989 |
-</url> |
|
| 990 |
-<url> |
|
| 991 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=5%EC%9B%94</loc> |
|
| 992 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 993 |
- <priority>0.41</priority> |
|
| 994 |
-</url> |
|
| 995 |
-<url> |
|
| 996 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%ED%96%89%EC%82%AC</loc> |
|
| 997 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 998 |
- <priority>0.41</priority> |
|
| 999 |
-</url> |
|
| 1000 |
-<url> |
|
| 1001 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EB%82%A0%EC%94%A8</loc> |
|
| 1002 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1003 |
- <priority>0.41</priority> |
|
| 1004 |
-</url> |
|
| 1005 |
-<url> |
|
| 1006 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=7%EC%9B%94</loc> |
|
| 1007 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1008 |
- <priority>0.41</priority> |
|
| 1009 |
-</url> |
|
| 1010 |
-<url> |
|
| 1011 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%98%88%EB%B0%B0</loc> |
|
| 1012 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1013 |
- <priority>0.41</priority> |
|
| 1014 |
-</url> |
|
| 1015 |
-<url> |
|
| 1016 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%B6%95%ED%95%98</loc> |
|
| 1017 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1018 |
- <priority>0.41</priority> |
|
| 1019 |
-</url> |
|
| 1020 |
-<url> |
|
| 1021 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EB%AA%85%EC%A0%88</loc> |
|
| 1022 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1023 |
- <priority>0.41</priority> |
|
| 1024 |
-</url> |
|
| 1025 |
-<url> |
|
| 1026 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%86%A1%EB%85%84</loc> |
|
| 1027 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1028 |
- <priority>0.41</priority> |
|
| 1029 |
-</url> |
|
| 1030 |
-<url> |
|
| 1031 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%9C%84%EB%A1%9C</loc> |
|
| 1032 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1033 |
- <priority>0.41</priority> |
|
| 1034 |
-</url> |
|
| 1035 |
-<url> |
|
| 1036 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%B1%84%EC%9A%A9</loc> |
|
| 1037 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1038 |
- <priority>0.41</priority> |
|
| 1039 |
-</url> |
|
| 1040 |
-<url> |
|
| 1041 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%ED%9C%B4%EC%9D%BC</loc> |
|
| 1042 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1043 |
- <priority>0.41</priority> |
|
| 1044 |
-</url> |
|
| 1045 |
-<url> |
|
| 1046 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%9D%BC%EC%9A%94%EC%9D%BC</loc> |
|
| 1047 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1048 |
- <priority>0.41</priority> |
|
| 1049 |
-</url> |
|
| 1050 |
-<url> |
|
| 1051 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=9%EC%9B%94</loc> |
|
| 1052 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1053 |
- <priority>0.41</priority> |
|
| 1054 |
-</url> |
|
| 1055 |
-<url> |
|
| 1056 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EB%B3%84%EC%9E%90%EB%A6%AC</loc> |
|
| 1057 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1058 |
- <priority>0.41</priority> |
|
| 1059 |
-</url> |
|
| 1060 |
-<url> |
|
| 1061 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EA%B2%BD%EC%A1%B0%EC%82%AC</loc> |
|
| 1062 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1063 |
- <priority>0.41</priority> |
|
| 1064 |
-</url> |
|
| 1065 |
-<url> |
|
| 1066 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%B4%88%EB%8C%80</loc> |
|
| 1067 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1068 |
- <priority>0.41</priority> |
|
| 1069 |
-</url> |
|
| 1070 |
-<url> |
|
| 1071 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%82%B0%EC%95%85%ED%9A%8C</loc> |
|
| 1072 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1073 |
- <priority>0.41</priority> |
|
| 1074 |
-</url> |
|
| 1075 |
-<url> |
|
| 1076 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%88%98%EB%8A%A5</loc> |
|
| 1077 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1078 |
- <priority>0.41</priority> |
|
| 1079 |
-</url> |
|
| 1080 |
-<url> |
|
| 1081 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%ED%99%94%EC%9A%94%EC%9D%BC</loc> |
|
| 1082 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1083 |
- <priority>0.41</priority> |
|
| 1084 |
-</url> |
|
| 1085 |
-<url> |
|
| 1086 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%97%AC%ED%96%89</loc> |
|
| 1087 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1088 |
- <priority>0.41</priority> |
|
| 1089 |
-</url> |
|
| 1090 |
-<url> |
|
| 1091 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=2%EC%9B%94</loc> |
|
| 1092 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1093 |
- <priority>0.41</priority> |
|
| 1094 |
-</url> |
|
| 1095 |
-<url> |
|
| 1096 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%84%A0%EA%B1%B0</loc> |
|
| 1097 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1098 |
- <priority>0.41</priority> |
|
| 1099 |
-</url> |
|
| 1100 |
-<url> |
|
| 1101 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%ED%9A%8C%EA%B0%91</loc> |
|
| 1102 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1103 |
- <priority>0.41</priority> |
|
| 1104 |
-</url> |
|
| 1105 |
-<url> |
|
| 1106 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%ED%95%A9%EA%B2%A9</loc> |
|
| 1107 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1108 |
- <priority>0.41</priority> |
|
| 1109 |
-</url> |
|
| 1110 |
-<url> |
|
| 1111 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%A2%8B%EC%9D%80%EA%B8%80</loc> |
|
| 1112 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1113 |
- <priority>0.41</priority> |
|
| 1114 |
-</url> |
|
| 1115 |
-<url> |
|
| 1116 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%A3%BC%EB%A7%90</loc> |
|
| 1117 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1118 |
- <priority>0.41</priority> |
|
| 1119 |
-</url> |
|
| 1120 |
-<url> |
|
| 1121 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EB%AA%A9%EC%9A%94%EC%9D%BC</loc> |
|
| 1122 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1123 |
- <priority>0.41</priority> |
|
| 1124 |
-</url> |
|
| 1125 |
-<url> |
|
| 1126 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%9C%A0%EB%A8%B8</loc> |
|
| 1127 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1128 |
- <priority>0.41</priority> |
|
| 1129 |
-</url> |
|
| 1130 |
-<url> |
|
| 1131 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=4%EC%9B%94</loc> |
|
| 1132 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1133 |
- <priority>0.41</priority> |
|
| 1134 |
-</url> |
|
| 1135 |
-<url> |
|
| 1136 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EB%AA%A8%EC%9E%84</loc> |
|
| 1137 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1138 |
- <priority>0.41</priority> |
|
| 1139 |
-</url> |
|
| 1140 |
-<url> |
|
| 1141 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%A1%B0%EC%9D%98</loc> |
|
| 1142 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1143 |
- <priority>0.41</priority> |
|
| 1144 |
-</url> |
|
| 1145 |
-<url> |
|
| 1146 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%A2%85%EA%B5%90</loc> |
|
| 1147 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1148 |
- <priority>0.41</priority> |
|
| 1149 |
-</url> |
|
| 1150 |
-<url> |
|
| 1151 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EA%B1%B4%EA%B0%95</loc> |
|
| 1152 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1153 |
- <priority>0.41</priority> |
|
| 1154 |
-</url> |
|
| 1155 |
-<url> |
|
| 1156 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%ED%86%A0%EC%9A%94%EC%9D%BC</loc> |
|
| 1157 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1158 |
- <priority>0.41</priority> |
|
| 1159 |
-</url> |
|
| 1160 |
-<url> |
|
| 1161 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EA%B8%B0%EB%85%90%EC%9D%BC</loc> |
|
| 1162 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1163 |
- <priority>0.41</priority> |
|
| 1164 |
-</url> |
|
| 1165 |
-<url> |
|
| 1166 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=6%EC%9B%94</loc> |
|
| 1167 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1168 |
- <priority>0.41</priority> |
|
| 1169 |
-</url> |
|
| 1170 |
-<url> |
|
| 1171 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%B9%9C%EB%AA%A9</loc> |
|
| 1172 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1173 |
- <priority>0.41</priority> |
|
| 1174 |
-</url> |
|
| 1175 |
-<url> |
|
| 1176 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EA%B2%A8%EC%9A%B8</loc> |
|
| 1177 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1178 |
- <priority>0.41</priority> |
|
| 1179 |
-</url> |
|
| 1180 |
-<url> |
|
| 1181 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EA%B3%84%EC%A0%88</loc> |
|
| 1182 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1183 |
- <priority>0.41</priority> |
|
| 1184 |
-</url> |
|
| 1185 |
-<url> |
|
| 1186 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=8%EC%9B%94</loc> |
|
| 1187 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1188 |
- <priority>0.41</priority> |
|
| 1189 |
-</url> |
|
| 1190 |
-<url> |
|
| 1191 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%9A%B4%EC%84%B8</loc> |
|
| 1192 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1193 |
- <priority>0.41</priority> |
|
| 1194 |
-</url> |
|
| 1195 |
-<url> |
|
| 1196 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EB%8B%B5%EB%A1%80</loc> |
|
| 1197 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1198 |
- <priority>0.41</priority> |
|
| 1199 |
-</url> |
|
| 1200 |
-<url> |
|
| 1201 |
- <loc>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</loc> |
|
| 1202 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1203 |
- <priority>0.41</priority> |
|
| 1204 |
-</url> |
|
| 1205 |
-<url> |
|
| 1206 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=12%EC%9B%94</loc> |
|
| 1207 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1208 |
- <priority>0.41</priority> |
|
| 1209 |
-</url> |
|
| 1210 |
-<url> |
|
| 1211 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%8B%A0%EB%85%84</loc> |
|
| 1212 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1213 |
- <priority>0.41</priority> |
|
| 1214 |
-</url> |
|
| 1215 |
-<url> |
|
| 1216 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%84%A4%EB%82%A0</loc> |
|
| 1217 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1218 |
- <priority>0.41</priority> |
|
| 1219 |
-</url> |
|
| 1220 |
-<url> |
|
| 1221 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=11%EC%9B%94</loc> |
|
| 1222 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1223 |
- <priority>0.41</priority> |
|
| 566 |
+ <loc>https://www.munjaon.co.kr/web/pay/PayGuide.do?tabType=2</loc> |
|
| 567 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 568 |
+ <priority>0.64</priority> |
|
| 1224 | 569 |
</url> |
| 1225 | 570 |
<url> |
| 1226 | 571 |
<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EA%B2%BD%EC%A1%B0</loc> |
| 1227 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1228 |
- <priority>0.41</priority> |
|
| 572 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 573 |
+ <priority>0.64</priority> |
|
| 1229 | 574 |
</url> |
| 1230 | 575 |
<url> |
| 1231 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%83%9D%EC%9D%BC</loc> |
|
| 1232 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1233 |
- <priority>0.41</priority> |
|
| 576 |
+ <loc>https://www.munjaon.co.kr/publish/publish_adv/adv_template_v1_manuscript_6.html</loc> |
|
| 577 |
+ <lastmod>2023-10-20T08:32:30+00:00</lastmod> |
|
| 578 |
+ <priority>0.64</priority> |
|
| 579 |
+</url> |
|
| 580 |
+<url> |
|
| 581 |
+ <loc>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</loc> |
|
| 582 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 583 |
+ <priority>0.64</priority> |
|
| 1234 | 584 |
</url> |
| 1235 | 585 |
<url> |
| 1236 | 586 |
<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EA%B2%B0%ED%98%BC</loc> |
| 1237 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1238 |
- <priority>0.41</priority> |
|
| 1239 |
-</url> |
|
| 1240 |
-<url> |
|
| 1241 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EB%B6%80%EA%B3%A0</loc> |
|
| 1242 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1243 |
- <priority>0.41</priority> |
|
| 587 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 588 |
+ <priority>0.64</priority> |
|
| 1244 | 589 |
</url> |
| 1245 | 590 |
<url> |
| 1246 | 591 |
<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%9E%A5%EB%A1%80</loc> |
| 1247 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1248 |
- <priority>0.41</priority> |
|
| 592 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 593 |
+ <priority>0.64</priority> |
|
| 1249 | 594 |
</url> |
| 1250 | 595 |
<url> |
| 1251 |
- <loc>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</loc> |
|
| 1252 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1253 |
- <priority>0.41</priority> |
|
| 596 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%84%A4%EB%82%A0</loc> |
|
| 597 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 598 |
+ <priority>0.64</priority> |
|
| 1254 | 599 |
</url> |
| 1255 | 600 |
<url> |
| 1256 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EA%B0%80%EC%9D%84</loc> |
|
| 1257 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1258 |
- <priority>0.41</priority> |
|
| 601 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%B6%94%EC%84%9D</loc> |
|
| 602 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 603 |
+ <priority>0.64</priority> |
|
| 1259 | 604 |
</url> |
| 1260 | 605 |
<url> |
| 1261 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%83%88%ED%95%B4</loc> |
|
| 1262 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1263 |
- <priority>0.41</priority> |
|
| 606 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%ED%95%9C%EA%B0%80%EC%9C%84</loc> |
|
| 607 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 608 |
+ <priority>0.64</priority> |
|
| 1264 | 609 |
</url> |
| 1265 | 610 |
<url> |
| 1266 | 611 |
<loc>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</loc> |
| 1267 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1268 |
- <priority>0.41</priority> |
|
| 612 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 613 |
+ <priority>0.64</priority> |
|
| 1269 | 614 |
</url> |
| 1270 | 615 |
<url> |
| 1271 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%82%B0%EC%95%85%ED%9A%8C</loc> |
|
| 1272 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1273 |
- <priority>0.41</priority> |
|
| 616 |
+ <loc>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</loc> |
|
| 617 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 618 |
+ <priority>0.64</priority> |
|
| 1274 | 619 |
</url> |
| 1275 | 620 |
<url> |
| 1276 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%A1%B0%EB%AC%B8</loc> |
|
| 1277 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1278 |
- <priority>0.41</priority> |
|
| 621 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EA%B0%90%EC%82%AC</loc> |
|
| 622 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 623 |
+ <priority>0.64</priority> |
|
| 1279 | 624 |
</url> |
| 1280 | 625 |
<url> |
| 1281 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%B9%A0%EC%88%9C</loc> |
|
| 1282 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1283 |
- <priority>0.41</priority> |
|
| 626 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%ED%96%89%EC%82%AC</loc> |
|
| 627 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 628 |
+ <priority>0.64</priority> |
|
| 629 |
+</url> |
|
| 630 |
+<url> |
|
| 631 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EA%B2%A9%EB%A0%A4</loc> |
|
| 632 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 633 |
+ <priority>0.64</priority> |
|
| 634 |
+</url> |
|
| 635 |
+<url> |
|
| 636 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%83%9D%EC%9D%BC</loc> |
|
| 637 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 638 |
+ <priority>0.64</priority> |
|
| 639 |
+</url> |
|
| 640 |
+<url> |
|
| 641 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%A1%B0%EC%9D%98</loc> |
|
| 642 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 643 |
+ <priority>0.64</priority> |
|
| 644 |
+</url> |
|
| 645 |
+<url> |
|
| 646 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EB%AA%85%EC%A0%88</loc> |
|
| 647 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 648 |
+ <priority>0.64</priority> |
|
| 649 |
+</url> |
|
| 650 |
+<url> |
|
| 651 |
+ <loc>https://www.munjaon.co.kr/publish/publish_text/send_text.html</loc> |
|
| 652 |
+ <lastmod>2023-09-06T08:33:28+00:00</lastmod> |
|
| 653 |
+ <priority>0.64</priority> |
|
| 654 |
+</url> |
|
| 655 |
+<url> |
|
| 656 |
+ <loc>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</loc> |
|
| 657 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 658 |
+ <priority>0.64</priority> |
|
| 659 |
+</url> |
|
| 660 |
+<url> |
|
| 661 |
+ <loc>https://www.munjaon.co.kr/publish/publish_text/text_send.html</loc> |
|
| 662 |
+ <lastmod>2023-09-06T08:33:28+00:00</lastmod> |
|
| 663 |
+ <priority>0.64</priority> |
|
| 664 |
+</url> |
|
| 665 |
+<url> |
|
| 666 |
+ <loc>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</loc> |
|
| 667 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 668 |
+ <priority>0.64</priority> |
|
| 669 |
+</url> |
|
| 670 |
+<url> |
|
| 671 |
+ <loc>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</loc> |
|
| 672 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 673 |
+ <priority>0.64</priority> |
|
| 674 |
+</url> |
|
| 675 |
+<url> |
|
| 676 |
+ <loc>https://www.munjaon.co.kr/publish/publish_adv/adv_template_v1_manuscript_2.html</loc> |
|
| 677 |
+ <lastmod>2023-10-20T08:32:30+00:00</lastmod> |
|
| 678 |
+ <priority>0.64</priority> |
|
| 679 |
+</url> |
|
| 680 |
+<url> |
|
| 681 |
+ <loc>https://www.munjaon.co.kr/publish/publish_text/multi_text.html</loc> |
|
| 682 |
+ <lastmod>2023-09-06T08:33:28+00:00</lastmod> |
|
| 683 |
+ <priority>0.64</priority> |
|
| 684 |
+</url> |
|
| 685 |
+<url> |
|
| 686 |
+ <loc>https://www.munjaon.co.kr/publish/publish_adv/adv_template_v1_manuscript_3.html</loc> |
|
| 687 |
+ <lastmod>2023-10-20T08:32:30+00:00</lastmod> |
|
| 688 |
+ <priority>0.64</priority> |
|
| 689 |
+</url> |
|
| 690 |
+<url> |
|
| 691 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EB%B4%84</loc> |
|
| 692 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 693 |
+ <priority>0.64</priority> |
|
| 694 |
+</url> |
|
| 695 |
+<url> |
|
| 696 |
+ <loc>https://www.munjaon.co.kr/publish/publish_adv/adv_template_v1_manuscript_4.html</loc> |
|
| 697 |
+ <lastmod>2023-10-20T08:32:30+00:00</lastmod> |
|
| 698 |
+ <priority>0.64</priority> |
|
| 699 |
+</url> |
|
| 700 |
+<url> |
|
| 701 |
+ <loc>https://www.munjaon.co.kr/publish/publish_adv/adv_template_v1_manuscript_5.html</loc> |
|
| 702 |
+ <lastmod>2023-10-20T08:32:30+00:00</lastmod> |
|
| 703 |
+ <priority>0.64</priority> |
|
| 704 |
+</url> |
|
| 705 |
+<url> |
|
| 706 |
+ <loc>https://www.munjaon.co.kr/publish/spam_prevention_5.pdf</loc> |
|
| 707 |
+ <lastmod>2023-06-12T08:56:26+00:00</lastmod> |
|
| 708 |
+ <priority>0.51</priority> |
|
| 709 |
+</url> |
|
| 710 |
+<url> |
|
| 711 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%ED%99%94%EC%9A%94%EC%9D%BC</loc> |
|
| 712 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 713 |
+ <priority>0.51</priority> |
|
| 714 |
+</url> |
|
| 715 |
+<url> |
|
| 716 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%97%AC%ED%96%89</loc> |
|
| 717 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 718 |
+ <priority>0.51</priority> |
|
| 719 |
+</url> |
|
| 720 |
+<url> |
|
| 721 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=2%EC%9B%94</loc> |
|
| 722 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 723 |
+ <priority>0.51</priority> |
|
| 724 |
+</url> |
|
| 725 |
+<url> |
|
| 726 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%82%B0%EC%95%85%ED%9A%8C</loc> |
|
| 727 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 728 |
+ <priority>0.51</priority> |
|
| 729 |
+</url> |
|
| 730 |
+<url> |
|
| 731 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%88%98%EB%8A%A5</loc> |
|
| 732 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 733 |
+ <priority>0.51</priority> |
|
| 734 |
+</url> |
|
| 735 |
+<url> |
|
| 736 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%84%A0%EA%B1%B0</loc> |
|
| 737 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 738 |
+ <priority>0.51</priority> |
|
| 739 |
+</url> |
|
| 740 |
+<url> |
|
| 741 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%ED%9A%8C%EA%B0%91</loc> |
|
| 742 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 743 |
+ <priority>0.51</priority> |
|
| 744 |
+</url> |
|
| 745 |
+<url> |
|
| 746 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%ED%95%A9%EA%B2%A9</loc> |
|
| 747 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 748 |
+ <priority>0.51</priority> |
|
| 749 |
+</url> |
|
| 750 |
+<url> |
|
| 751 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EB%AA%A9%EC%9A%94%EC%9D%BC</loc> |
|
| 752 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 753 |
+ <priority>0.51</priority> |
|
| 754 |
+</url> |
|
| 755 |
+<url> |
|
| 756 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%9C%A0%EB%A8%B8</loc> |
|
| 757 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 758 |
+ <priority>0.51</priority> |
|
| 759 |
+</url> |
|
| 760 |
+<url> |
|
| 761 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=4%EC%9B%94</loc> |
|
| 762 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 763 |
+ <priority>0.51</priority> |
|
| 764 |
+</url> |
|
| 765 |
+<url> |
|
| 766 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%A2%8B%EC%9D%80%EA%B8%80</loc> |
|
| 767 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 768 |
+ <priority>0.51</priority> |
|
| 769 |
+</url> |
|
| 770 |
+<url> |
|
| 771 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%A3%BC%EB%A7%90</loc> |
|
| 772 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 773 |
+ <priority>0.51</priority> |
|
| 774 |
+</url> |
|
| 775 |
+<url> |
|
| 776 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EB%AA%A8%EC%9E%84</loc> |
|
| 777 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 778 |
+ <priority>0.51</priority> |
|
| 779 |
+</url> |
|
| 780 |
+<url> |
|
| 781 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%97%AC%EB%A6%84</loc> |
|
| 782 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 783 |
+ <priority>0.51</priority> |
|
| 784 |
+</url> |
|
| 785 |
+<url> |
|
| 786 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EA%B1%B4%EA%B0%95</loc> |
|
| 787 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 788 |
+ <priority>0.51</priority> |
|
| 789 |
+</url> |
|
| 790 |
+<url> |
|
| 791 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%ED%86%A0%EC%9A%94%EC%9D%BC</loc> |
|
| 792 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 793 |
+ <priority>0.51</priority> |
|
| 794 |
+</url> |
|
| 795 |
+<url> |
|
| 796 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EA%B8%B0%EB%85%90%EC%9D%BC</loc> |
|
| 797 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 798 |
+ <priority>0.51</priority> |
|
| 799 |
+</url> |
|
| 800 |
+<url> |
|
| 801 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=6%EC%9B%94</loc> |
|
| 802 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 803 |
+ <priority>0.51</priority> |
|
| 804 |
+</url> |
|
| 805 |
+<url> |
|
| 806 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%A2%85%EA%B5%90</loc> |
|
| 807 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 808 |
+ <priority>0.51</priority> |
|
| 809 |
+</url> |
|
| 810 |
+<url> |
|
| 811 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EA%B2%A8%EC%9A%B8</loc> |
|
| 812 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 813 |
+ <priority>0.51</priority> |
|
| 814 |
+</url> |
|
| 815 |
+<url> |
|
| 816 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EA%B3%84%EC%A0%88</loc> |
|
| 817 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 818 |
+ <priority>0.51</priority> |
|
| 819 |
+</url> |
|
| 820 |
+<url> |
|
| 821 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%B9%9C%EB%AA%A9</loc> |
|
| 822 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 823 |
+ <priority>0.51</priority> |
|
| 824 |
+</url> |
|
| 825 |
+<url> |
|
| 826 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%B6%94%EC%84%9D</loc> |
|
| 827 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 828 |
+ <priority>0.51</priority> |
|
| 829 |
+</url> |
|
| 830 |
+<url> |
|
| 831 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%9A%B4%EC%84%B8</loc> |
|
| 832 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 833 |
+ <priority>0.51</priority> |
|
| 834 |
+</url> |
|
| 835 |
+<url> |
|
| 836 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EB%8B%B5%EB%A1%80</loc> |
|
| 837 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 838 |
+ <priority>0.51</priority> |
|
| 839 |
+</url> |
|
| 840 |
+<url> |
|
| 841 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=8%EC%9B%94</loc> |
|
| 842 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 843 |
+ <priority>0.51</priority> |
|
| 844 |
+</url> |
|
| 845 |
+<url> |
|
| 846 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%9B%94%EC%9A%94%EC%9D%BC</loc> |
|
| 847 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 848 |
+ <priority>0.51</priority> |
|
| 849 |
+</url> |
|
| 850 |
+<url> |
|
| 851 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%ED%99%98%EC%A0%88%EA%B8%B0</loc> |
|
| 852 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 853 |
+ <priority>0.51</priority> |
|
| 854 |
+</url> |
|
| 855 |
+<url> |
|
| 856 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=1%EC%9B%94</loc> |
|
| 857 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 858 |
+ <priority>0.51</priority> |
|
| 859 |
+</url> |
|
| 860 |
+<url> |
|
| 861 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%86%A1%EB%85%84%ED%9A%8C</loc> |
|
| 862 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 863 |
+ <priority>0.51</priority> |
|
| 864 |
+</url> |
|
| 865 |
+<url> |
|
| 866 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%ED%88%AC%ED%91%9C</loc> |
|
| 867 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 868 |
+ <priority>0.51</priority> |
|
| 869 |
+</url> |
|
| 870 |
+<url> |
|
| 871 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%ED%99%98%EA%B0%91</loc> |
|
| 872 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 873 |
+ <priority>0.51</priority> |
|
| 874 |
+</url> |
|
| 875 |
+<url> |
|
| 876 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EB%8F%8C%EC%9E%94%EC%B9%98</loc> |
|
| 877 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 878 |
+ <priority>0.51</priority> |
|
| 879 |
+</url> |
|
| 880 |
+<url> |
|
| 881 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=10%EC%9B%94</loc> |
|
| 882 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 883 |
+ <priority>0.51</priority> |
|
| 884 |
+</url> |
|
| 885 |
+<url> |
|
| 886 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%88%98%EC%9A%94%EC%9D%BC</loc> |
|
| 887 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 888 |
+ <priority>0.51</priority> |
|
| 889 |
+</url> |
|
| 890 |
+<url> |
|
| 891 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%9E%85%EB%8F%99</loc> |
|
| 892 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 893 |
+ <priority>0.51</priority> |
|
| 894 |
+</url> |
|
| 895 |
+<url> |
|
| 896 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=3%EC%9B%94</loc> |
|
| 897 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 898 |
+ <priority>0.51</priority> |
|
| 899 |
+</url> |
|
| 900 |
+<url> |
|
| 901 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%BD%94%EB%AF%B9</loc> |
|
| 902 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 903 |
+ <priority>0.51</priority> |
|
| 904 |
+</url> |
|
| 905 |
+<url> |
|
| 906 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%9D%91%EC%9B%90</loc> |
|
| 907 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 908 |
+ <priority>0.51</priority> |
|
| 909 |
+</url> |
|
| 910 |
+<url> |
|
| 911 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EA%B3%A0%ED%9D%AC</loc> |
|
| 912 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 913 |
+ <priority>0.51</priority> |
|
| 914 |
+</url> |
|
| 915 |
+<url> |
|
| 916 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%8A%B9%EC%A7%84</loc> |
|
| 917 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 918 |
+ <priority>0.51</priority> |
|
| 919 |
+</url> |
|
| 920 |
+<url> |
|
| 921 |
+ <loc>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</loc> |
|
| 922 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 923 |
+ <priority>0.51</priority> |
|
| 924 |
+</url> |
|
| 925 |
+<url> |
|
| 926 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EA%B8%88%EC%9A%94%EC%9D%BC</loc> |
|
| 927 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 928 |
+ <priority>0.51</priority> |
|
| 929 |
+</url> |
|
| 930 |
+<url> |
|
| 931 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EA%B3%A0%EB%B0%B1</loc> |
|
| 932 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 933 |
+ <priority>0.51</priority> |
|
| 934 |
+</url> |
|
| 935 |
+<url> |
|
| 936 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=5%EC%9B%94</loc> |
|
| 937 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 938 |
+ <priority>0.51</priority> |
|
| 939 |
+</url> |
|
| 940 |
+<url> |
|
| 941 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EB%AA%85%EC%96%B8</loc> |
|
| 942 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 943 |
+ <priority>0.51</priority> |
|
| 944 |
+</url> |
|
| 945 |
+<url> |
|
| 946 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%9D%B8%EC%82%AC</loc> |
|
| 947 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 948 |
+ <priority>0.51</priority> |
|
| 949 |
+</url> |
|
| 950 |
+<url> |
|
| 951 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EB%82%A0%EC%94%A8</loc> |
|
| 952 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 953 |
+ <priority>0.51</priority> |
|
| 954 |
+</url> |
|
| 955 |
+<url> |
|
| 956 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%ED%96%89%EC%82%AC</loc> |
|
| 957 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 958 |
+ <priority>0.51</priority> |
|
| 959 |
+</url> |
|
| 960 |
+<url> |
|
| 961 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EB%AC%B4%EB%8D%94%EC%9C%84</loc> |
|
| 962 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 963 |
+ <priority>0.51</priority> |
|
| 964 |
+</url> |
|
| 965 |
+<url> |
|
| 966 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%B6%95%ED%95%98</loc> |
|
| 967 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 968 |
+ <priority>0.51</priority> |
|
| 969 |
+</url> |
|
| 970 |
+<url> |
|
| 971 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EB%AA%85%EC%A0%88</loc> |
|
| 972 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 973 |
+ <priority>0.51</priority> |
|
| 974 |
+</url> |
|
| 975 |
+<url> |
|
| 976 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=7%EC%9B%94</loc> |
|
| 977 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 978 |
+ <priority>0.51</priority> |
|
| 979 |
+</url> |
|
| 980 |
+<url> |
|
| 981 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%98%88%EB%B0%B0</loc> |
|
| 982 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 983 |
+ <priority>0.51</priority> |
|
| 984 |
+</url> |
|
| 985 |
+<url> |
|
| 986 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%B1%84%EC%9A%A9</loc> |
|
| 987 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 988 |
+ <priority>0.51</priority> |
|
| 989 |
+</url> |
|
| 990 |
+<url> |
|
| 991 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%ED%9C%B4%EC%9D%BC</loc> |
|
| 992 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 993 |
+ <priority>0.51</priority> |
|
| 994 |
+</url> |
|
| 995 |
+<url> |
|
| 996 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%9D%BC%EC%9A%94%EC%9D%BC</loc> |
|
| 997 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 998 |
+ <priority>0.51</priority> |
|
| 999 |
+</url> |
|
| 1000 |
+<url> |
|
| 1001 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%86%A1%EB%85%84</loc> |
|
| 1002 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1003 |
+ <priority>0.51</priority> |
|
| 1004 |
+</url> |
|
| 1005 |
+<url> |
|
| 1006 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%9C%84%EB%A1%9C</loc> |
|
| 1007 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1008 |
+ <priority>0.51</priority> |
|
| 1009 |
+</url> |
|
| 1010 |
+<url> |
|
| 1011 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EB%B3%84%EC%9E%90%EB%A6%AC</loc> |
|
| 1012 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1013 |
+ <priority>0.51</priority> |
|
| 1014 |
+</url> |
|
| 1015 |
+<url> |
|
| 1016 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EA%B2%BD%EC%A1%B0%EC%82%AC</loc> |
|
| 1017 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1018 |
+ <priority>0.51</priority> |
|
| 1019 |
+</url> |
|
| 1020 |
+<url> |
|
| 1021 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%B4%88%EB%8C%80</loc> |
|
| 1022 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1023 |
+ <priority>0.51</priority> |
|
| 1024 |
+</url> |
|
| 1025 |
+<url> |
|
| 1026 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=9%EC%9B%94</loc> |
|
| 1027 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1028 |
+ <priority>0.51</priority> |
|
| 1029 |
+</url> |
|
| 1030 |
+<url> |
|
| 1031 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=12%EC%9B%94</loc> |
|
| 1032 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1033 |
+ <priority>0.51</priority> |
|
| 1034 |
+</url> |
|
| 1035 |
+<url> |
|
| 1036 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%8B%A0%EB%85%84</loc> |
|
| 1037 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1038 |
+ <priority>0.51</priority> |
|
| 1039 |
+</url> |
|
| 1040 |
+<url> |
|
| 1041 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=11%EC%9B%94</loc> |
|
| 1042 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1043 |
+ <priority>0.51</priority> |
|
| 1044 |
+</url> |
|
| 1045 |
+<url> |
|
| 1046 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EB%B6%80%EA%B3%A0</loc> |
|
| 1047 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1048 |
+ <priority>0.51</priority> |
|
| 1049 |
+</url> |
|
| 1050 |
+<url> |
|
| 1051 |
+ <loc>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</loc> |
|
| 1052 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1053 |
+ <priority>0.51</priority> |
|
| 1054 |
+</url> |
|
| 1055 |
+<url> |
|
| 1056 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EA%B0%80%EC%9D%84</loc> |
|
| 1057 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1058 |
+ <priority>0.51</priority> |
|
| 1059 |
+</url> |
|
| 1060 |
+<url> |
|
| 1061 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%83%88%ED%95%B4</loc> |
|
| 1062 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1063 |
+ <priority>0.51</priority> |
|
| 1064 |
+</url> |
|
| 1065 |
+<url> |
|
| 1066 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%ED%99%94%EC%9A%94%EC%9D%BC</loc> |
|
| 1067 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1068 |
+ <priority>0.51</priority> |
|
| 1069 |
+</url> |
|
| 1070 |
+<url> |
|
| 1071 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EB%82%A0%EC%94%A8</loc> |
|
| 1072 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1073 |
+ <priority>0.51</priority> |
|
| 1074 |
+</url> |
|
| 1075 |
+<url> |
|
| 1076 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=2%EC%9B%94</loc> |
|
| 1077 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1078 |
+ <priority>0.51</priority> |
|
| 1079 |
+</url> |
|
| 1080 |
+<url> |
|
| 1081 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%86%A1%EB%85%84</loc> |
|
| 1082 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1083 |
+ <priority>0.51</priority> |
|
| 1084 |
+</url> |
|
| 1085 |
+<url> |
|
| 1086 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%9C%84%EB%A1%9C</loc> |
|
| 1087 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1088 |
+ <priority>0.51</priority> |
|
| 1089 |
+</url> |
|
| 1090 |
+<url> |
|
| 1091 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%84%A0%EA%B1%B0</loc> |
|
| 1092 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1093 |
+ <priority>0.51</priority> |
|
| 1094 |
+</url> |
|
| 1095 |
+<url> |
|
| 1096 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EA%B2%BD%EC%A1%B0%EC%82%AC</loc> |
|
| 1097 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1098 |
+ <priority>0.51</priority> |
|
| 1099 |
+</url> |
|
| 1100 |
+<url> |
|
| 1101 |
+ <loc>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</loc> |
|
| 1102 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1103 |
+ <priority>0.51</priority> |
|
| 1104 |
+</url> |
|
| 1105 |
+<url> |
|
| 1106 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EB%B4%84</loc> |
|
| 1107 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1108 |
+ <priority>0.51</priority> |
|
| 1109 |
+</url> |
|
| 1110 |
+<url> |
|
| 1111 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EB%AA%A9%EC%9A%94%EC%9D%BC</loc> |
|
| 1112 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1113 |
+ <priority>0.51</priority> |
|
| 1114 |
+</url> |
|
| 1115 |
+<url> |
|
| 1116 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%ED%9C%B4%EC%9D%BC</loc> |
|
| 1117 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1118 |
+ <priority>0.51</priority> |
|
| 1119 |
+</url> |
|
| 1120 |
+<url> |
|
| 1121 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=4%EC%9B%94</loc> |
|
| 1122 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1123 |
+ <priority>0.51</priority> |
|
| 1124 |
+</url> |
|
| 1125 |
+<url> |
|
| 1126 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EB%8F%99%EC%B0%BD%ED%9A%8C</loc> |
|
| 1127 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1128 |
+ <priority>0.51</priority> |
|
| 1129 |
+</url> |
|
| 1130 |
+<url> |
|
| 1131 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%88%98%EB%8A%A5</loc> |
|
| 1132 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1133 |
+ <priority>0.51</priority> |
|
| 1134 |
+</url> |
|
| 1135 |
+<url> |
|
| 1136 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%B9%A0%EC%88%9C</loc> |
|
| 1137 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1138 |
+ <priority>0.51</priority> |
|
| 1139 |
+</url> |
|
| 1140 |
+<url> |
|
| 1141 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EB%8F%8C%EC%9E%94%EC%B9%98</loc> |
|
| 1142 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1143 |
+ <priority>0.51</priority> |
|
| 1144 |
+</url> |
|
| 1145 |
+<url> |
|
| 1146 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%97%AC%EB%A6%84</loc> |
|
| 1147 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1148 |
+ <priority>0.51</priority> |
|
| 1149 |
+</url> |
|
| 1150 |
+<url> |
|
| 1151 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%A3%BC%EB%A7%90</loc> |
|
| 1152 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1153 |
+ <priority>0.51</priority> |
|
| 1154 |
+</url> |
|
| 1155 |
+<url> |
|
| 1156 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%ED%86%A0%EC%9A%94%EC%9D%BC</loc> |
|
| 1157 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1158 |
+ <priority>0.51</priority> |
|
| 1159 |
+</url> |
|
| 1160 |
+<url> |
|
| 1161 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%9E%85%EB%8F%99</loc> |
|
| 1162 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1163 |
+ <priority>0.51</priority> |
|
| 1164 |
+</url> |
|
| 1165 |
+<url> |
|
| 1166 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=6%EC%9B%94</loc> |
|
| 1167 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1168 |
+ <priority>0.51</priority> |
|
| 1169 |
+</url> |
|
| 1170 |
+<url> |
|
| 1171 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%A2%8B%EC%9D%80%EA%B8%80</loc> |
|
| 1172 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1173 |
+ <priority>0.51</priority> |
|
| 1174 |
+</url> |
|
| 1175 |
+<url> |
|
| 1176 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EA%B2%A8%EC%9A%B8</loc> |
|
| 1177 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1178 |
+ <priority>0.51</priority> |
|
| 1179 |
+</url> |
|
| 1180 |
+<url> |
|
| 1181 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%ED%99%98%EA%B0%91</loc> |
|
| 1182 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1183 |
+ <priority>0.51</priority> |
|
| 1184 |
+</url> |
|
| 1185 |
+<url> |
|
| 1186 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%8A%B9%EC%A7%84</loc> |
|
| 1187 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1188 |
+ <priority>0.51</priority> |
|
| 1189 |
+</url> |
|
| 1190 |
+<url> |
|
| 1191 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%A2%85%EA%B5%90</loc> |
|
| 1192 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1193 |
+ <priority>0.51</priority> |
|
| 1194 |
+</url> |
|
| 1195 |
+<url> |
|
| 1196 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EA%B1%B4%EA%B0%95</loc> |
|
| 1197 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1198 |
+ <priority>0.51</priority> |
|
| 1199 |
+</url> |
|
| 1200 |
+<url> |
|
| 1201 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EA%B3%A0%EB%B0%B1</loc> |
|
| 1202 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1203 |
+ <priority>0.51</priority> |
|
| 1204 |
+</url> |
|
| 1205 |
+<url> |
|
| 1206 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=8%EC%9B%94</loc> |
|
| 1207 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1208 |
+ <priority>0.51</priority> |
|
| 1209 |
+</url> |
|
| 1210 |
+<url> |
|
| 1211 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%9B%94%EC%9A%94%EC%9D%BC</loc> |
|
| 1212 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1213 |
+ <priority>0.51</priority> |
|
| 1214 |
+</url> |
|
| 1215 |
+<url> |
|
| 1216 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EA%B3%A0%ED%9D%AC</loc> |
|
| 1217 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1218 |
+ <priority>0.51</priority> |
|
| 1219 |
+</url> |
|
| 1220 |
+<url> |
|
| 1221 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=1%EC%9B%94</loc> |
|
| 1222 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1223 |
+ <priority>0.51</priority> |
|
| 1224 |
+</url> |
|
| 1225 |
+<url> |
|
| 1226 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%A1%B0%EB%AC%B8</loc> |
|
| 1227 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1228 |
+ <priority>0.51</priority> |
|
| 1229 |
+</url> |
|
| 1230 |
+<url> |
|
| 1231 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%95%88%EB%82%B4</loc> |
|
| 1232 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1233 |
+ <priority>0.51</priority> |
|
| 1234 |
+</url> |
|
| 1235 |
+<url> |
|
| 1236 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EB%B3%84%EC%9E%90%EB%A6%AC</loc> |
|
| 1237 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1238 |
+ <priority>0.51</priority> |
|
| 1239 |
+</url> |
|
| 1240 |
+<url> |
|
| 1241 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EB%8B%B5%EB%A1%80</loc> |
|
| 1242 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1243 |
+ <priority>0.51</priority> |
|
| 1244 |
+</url> |
|
| 1245 |
+<url> |
|
| 1246 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=10%EC%9B%94</loc> |
|
| 1247 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1248 |
+ <priority>0.51</priority> |
|
| 1249 |
+</url> |
|
| 1250 |
+<url> |
|
| 1251 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%88%98%EC%9A%94%EC%9D%BC</loc> |
|
| 1252 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1253 |
+ <priority>0.51</priority> |
|
| 1254 |
+</url> |
|
| 1255 |
+<url> |
|
| 1256 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EA%B3%84%EC%A0%88</loc> |
|
| 1257 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1258 |
+ <priority>0.51</priority> |
|
| 1259 |
+</url> |
|
| 1260 |
+<url> |
|
| 1261 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=3%EC%9B%94</loc> |
|
| 1262 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1263 |
+ <priority>0.51</priority> |
|
| 1264 |
+</url> |
|
| 1265 |
+<url> |
|
| 1266 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%86%A1%EB%85%84%ED%9A%8C</loc> |
|
| 1267 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1268 |
+ <priority>0.51</priority> |
|
| 1269 |
+</url> |
|
| 1270 |
+<url> |
|
| 1271 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EA%B0%90%EC%82%AC</loc> |
|
| 1272 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1273 |
+ <priority>0.51</priority> |
|
| 1274 |
+</url> |
|
| 1275 |
+<url> |
|
| 1276 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EA%B0%9C%EC%97%85</loc> |
|
| 1277 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1278 |
+ <priority>0.51</priority> |
|
| 1279 |
+</url> |
|
| 1280 |
+<url> |
|
| 1281 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%B4%88%EB%8C%80</loc> |
|
| 1282 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1283 |
+ <priority>0.51</priority> |
|
| 1284 |
+</url> |
|
| 1285 |
+<url> |
|
| 1286 |
+ <loc>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</loc> |
|
| 1287 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1288 |
+ <priority>0.51</priority> |
|
| 1289 |
+</url> |
|
| 1290 |
+<url> |
|
| 1291 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EA%B8%88%EC%9A%94%EC%9D%BC</loc> |
|
| 1292 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1293 |
+ <priority>0.51</priority> |
|
| 1294 |
+</url> |
|
| 1295 |
+<url> |
|
| 1296 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%ED%99%98%EC%A0%88%EA%B8%B0</loc> |
|
| 1297 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1298 |
+ <priority>0.51</priority> |
|
| 1299 |
+</url> |
|
| 1300 |
+<url> |
|
| 1301 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=5%EC%9B%94</loc> |
|
| 1302 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1303 |
+ <priority>0.51</priority> |
|
| 1304 |
+</url> |
|
| 1305 |
+<url> |
|
| 1306 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%BD%94%EB%AF%B9</loc> |
|
| 1307 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1308 |
+ <priority>0.51</priority> |
|
| 1309 |
+</url> |
|
| 1310 |
+<url> |
|
| 1311 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%9D%91%EC%9B%90</loc> |
|
| 1312 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1313 |
+ <priority>0.51</priority> |
|
| 1314 |
+</url> |
|
| 1315 |
+<url> |
|
| 1316 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%B6%9C%EC%82%B0</loc> |
|
| 1317 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1318 |
+ <priority>0.51</priority> |
|
| 1319 |
+</url> |
|
| 1320 |
+<url> |
|
| 1321 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%ED%95%A9%EA%B2%A9</loc> |
|
| 1322 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1323 |
+ <priority>0.51</priority> |
|
| 1324 |
+</url> |
|
| 1325 |
+<url> |
|
| 1326 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EB%AC%B4%EB%8D%94%EC%9C%84</loc> |
|
| 1327 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1328 |
+ <priority>0.51</priority> |
|
| 1329 |
+</url> |
|
| 1330 |
+<url> |
|
| 1331 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%9D%B8%EC%82%AC</loc> |
|
| 1332 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1333 |
+ <priority>0.51</priority> |
|
| 1334 |
+</url> |
|
| 1335 |
+<url> |
|
| 1336 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%9C%A0%EB%A8%B8</loc> |
|
| 1337 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1338 |
+ <priority>0.51</priority> |
|
| 1339 |
+</url> |
|
| 1340 |
+<url> |
|
| 1341 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=7%EC%9B%94</loc> |
|
| 1342 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1343 |
+ <priority>0.51</priority> |
|
| 1344 |
+</url> |
|
| 1345 |
+<url> |
|
| 1346 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EB%AA%85%EC%96%B8</loc> |
|
| 1347 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1348 |
+ <priority>0.51</priority> |
|
| 1349 |
+</url> |
|
| 1350 |
+<url> |
|
| 1351 |
+ <loc>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</loc> |
|
| 1352 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1353 |
+ <priority>0.51</priority> |
|
| 1354 |
+</url> |
|
| 1355 |
+<url> |
|
| 1356 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%ED%9A%8C%EA%B0%91</loc> |
|
| 1357 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1358 |
+ <priority>0.51</priority> |
|
| 1359 |
+</url> |
|
| 1360 |
+<url> |
|
| 1361 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%9D%BC%EC%9A%94%EC%9D%BC</loc> |
|
| 1362 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1363 |
+ <priority>0.51</priority> |
|
| 1364 |
+</url> |
|
| 1365 |
+<url> |
|
| 1366 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EB%AA%A8%EC%9E%84</loc> |
|
| 1367 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1368 |
+ <priority>0.51</priority> |
|
| 1369 |
+</url> |
|
| 1370 |
+<url> |
|
| 1371 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EA%B2%A9%EB%A0%A4</loc> |
|
| 1372 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1373 |
+ <priority>0.51</priority> |
|
| 1374 |
+</url> |
|
| 1375 |
+<url> |
|
| 1376 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%9A%B4%EC%84%B8</loc> |
|
| 1377 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1378 |
+ <priority>0.51</priority> |
|
| 1379 |
+</url> |
|
| 1380 |
+<url> |
|
| 1381 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%B6%95%ED%95%98</loc> |
|
| 1382 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1383 |
+ <priority>0.51</priority> |
|
| 1384 |
+</url> |
|
| 1385 |
+<url> |
|
| 1386 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EA%B8%B0%EB%85%90%EC%9D%BC</loc> |
|
| 1387 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1388 |
+ <priority>0.51</priority> |
|
| 1389 |
+</url> |
|
| 1390 |
+<url> |
|
| 1391 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=9%EC%9B%94</loc> |
|
| 1392 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1393 |
+ <priority>0.51</priority> |
|
| 1394 |
+</url> |
|
| 1395 |
+<url> |
|
| 1396 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=12%EC%9B%94</loc> |
|
| 1397 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1398 |
+ <priority>0.51</priority> |
|
| 1399 |
+</url> |
|
| 1400 |
+<url> |
|
| 1401 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%84%A4%EB%82%A0</loc> |
|
| 1402 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1403 |
+ <priority>0.51</priority> |
|
| 1404 |
+</url> |
|
| 1405 |
+<url> |
|
| 1406 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%8B%A0%EB%85%84</loc> |
|
| 1407 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1408 |
+ <priority>0.51</priority> |
|
| 1409 |
+</url> |
|
| 1410 |
+<url> |
|
| 1411 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=11%EC%9B%94</loc> |
|
| 1412 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1413 |
+ <priority>0.51</priority> |
|
| 1414 |
+</url> |
|
| 1415 |
+<url> |
|
| 1416 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%83%9D%EC%9D%BC</loc> |
|
| 1417 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1418 |
+ <priority>0.51</priority> |
|
| 1419 |
+</url> |
|
| 1420 |
+<url> |
|
| 1421 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EA%B2%BD%EC%A1%B0</loc> |
|
| 1422 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1423 |
+ <priority>0.51</priority> |
|
| 1424 |
+</url> |
|
| 1425 |
+<url> |
|
| 1426 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EA%B2%B0%ED%98%BC</loc> |
|
| 1427 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1428 |
+ <priority>0.51</priority> |
|
| 1429 |
+</url> |
|
| 1430 |
+<url> |
|
| 1431 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EB%B6%80%EA%B3%A0</loc> |
|
| 1432 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1433 |
+ <priority>0.51</priority> |
|
| 1434 |
+</url> |
|
| 1435 |
+<url> |
|
| 1436 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%A1%B0%EC%9D%98</loc> |
|
| 1437 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1438 |
+ <priority>0.51</priority> |
|
| 1439 |
+</url> |
|
| 1440 |
+<url> |
|
| 1441 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%9E%A5%EB%A1%80</loc> |
|
| 1442 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1443 |
+ <priority>0.51</priority> |
|
| 1444 |
+</url> |
|
| 1445 |
+<url> |
|
| 1446 |
+ <loc>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</loc> |
|
| 1447 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1448 |
+ <priority>0.51</priority> |
|
| 1449 |
+</url> |
|
| 1450 |
+<url> |
|
| 1451 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EA%B0%80%EC%9D%84</loc> |
|
| 1452 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1453 |
+ <priority>0.51</priority> |
|
| 1454 |
+</url> |
|
| 1455 |
+<url> |
|
| 1456 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%83%88%ED%95%B4</loc> |
|
| 1457 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1458 |
+ <priority>0.51</priority> |
|
| 1459 |
+</url> |
|
| 1460 |
+<url> |
|
| 1461 |
+ <loc>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</loc> |
|
| 1462 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1463 |
+ <priority>0.51</priority> |
|
| 1284 | 1464 |
</url> |
| 1285 | 1465 |
<url> |
| 1286 | 1466 |
<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%B6%9C%EC%82%B0</loc> |
| 1287 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1288 |
- <priority>0.41</priority> |
|
| 1467 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1468 |
+ <priority>0.51</priority> |
|
| 1289 | 1469 |
</url> |
| 1290 | 1470 |
<url> |
| 1291 | 1471 |
<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%ED%88%AC%ED%91%9C</loc> |
| 1292 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1472 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1473 |
+ <priority>0.51</priority> |
|
| 1474 |
+</url> |
|
| 1475 |
+<url> |
|
| 1476 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%82%B0%EC%95%85%ED%9A%8C</loc> |
|
| 1477 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1478 |
+ <priority>0.51</priority> |
|
| 1479 |
+</url> |
|
| 1480 |
+<url> |
|
| 1481 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%A1%B0%EB%AC%B8</loc> |
|
| 1482 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1483 |
+ <priority>0.51</priority> |
|
| 1484 |
+</url> |
|
| 1485 |
+<url> |
|
| 1486 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%B9%A0%EC%88%9C</loc> |
|
| 1487 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1488 |
+ <priority>0.51</priority> |
|
| 1489 |
+</url> |
|
| 1490 |
+<url> |
|
| 1491 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%ED%95%9C%EA%B0%80%EC%9C%84</loc> |
|
| 1492 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1493 |
+ <priority>0.51</priority> |
|
| 1494 |
+</url> |
|
| 1495 |
+<url> |
|
| 1496 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%ED%95%9C%EA%B0%80%EC%9C%84</loc> |
|
| 1497 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1498 |
+ <priority>0.51</priority> |
|
| 1499 |
+</url> |
|
| 1500 |
+<url> |
|
| 1501 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%97%AC%ED%96%89</loc> |
|
| 1502 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1503 |
+ <priority>0.41</priority> |
|
| 1504 |
+</url> |
|
| 1505 |
+<url> |
|
| 1506 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%97%AC%ED%96%89</loc> |
|
| 1507 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1508 |
+ <priority>0.41</priority> |
|
| 1509 |
+</url> |
|
| 1510 |
+<url> |
|
| 1511 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%B9%9C%EB%AA%A9</loc> |
|
| 1512 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1513 |
+ <priority>0.41</priority> |
|
| 1514 |
+</url> |
|
| 1515 |
+<url> |
|
| 1516 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%B9%9C%EB%AA%A9</loc> |
|
| 1517 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1293 | 1518 |
<priority>0.41</priority> |
| 1294 | 1519 |
</url> |
| 1295 | 1520 |
<url> |
| 1296 | 1521 |
<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%86%A1%EB%85%84%ED%9A%8C</loc> |
| 1297 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1298 |
- <priority>0.33</priority> |
|
| 1299 |
-</url> |
|
| 1300 |
-<url> |
|
| 1301 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EA%B0%9C%EC%97%85</loc> |
|
| 1302 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1303 |
- <priority>0.33</priority> |
|
| 1304 |
-</url> |
|
| 1305 |
-<url> |
|
| 1306 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EA%B0%9C%EC%97%85</loc> |
|
| 1307 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1308 |
- <priority>0.33</priority> |
|
| 1309 |
-</url> |
|
| 1310 |
-<url> |
|
| 1311 |
- <loc>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</loc> |
|
| 1312 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1313 |
- <priority>0.33</priority> |
|
| 1314 |
-</url> |
|
| 1315 |
-<url> |
|
| 1316 |
- <loc>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</loc> |
|
| 1317 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1318 |
- <priority>0.33</priority> |
|
| 1319 |
-</url> |
|
| 1320 |
-<url> |
|
| 1321 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%86%A1%EB%85%84</loc> |
|
| 1322 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1323 |
- <priority>0.33</priority> |
|
| 1324 |
-</url> |
|
| 1325 |
-<url> |
|
| 1326 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EB%8F%99%EC%B0%BD%ED%9A%8C</loc> |
|
| 1327 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1328 |
- <priority>0.33</priority> |
|
| 1329 |
-</url> |
|
| 1330 |
-<url> |
|
| 1331 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EB%8F%99%EC%B0%BD%ED%9A%8C</loc> |
|
| 1332 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1333 |
- <priority>0.33</priority> |
|
| 1522 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1523 |
+ <priority>0.41</priority> |
|
| 1334 | 1524 |
</url> |
| 1335 | 1525 |
<url> |
| 1336 | 1526 |
<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%98%88%EB%B0%B0</loc> |
| 1337 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1338 |
- <priority>0.33</priority> |
|
| 1527 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1528 |
+ <priority>0.41</priority> |
|
| 1339 | 1529 |
</url> |
| 1340 | 1530 |
<url> |
| 1341 | 1531 |
<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%98%88%EB%B0%B0</loc> |
| 1342 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1343 |
- <priority>0.33</priority> |
|
| 1532 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1533 |
+ <priority>0.41</priority> |
|
| 1344 | 1534 |
</url> |
| 1345 | 1535 |
<url> |
| 1346 | 1536 |
<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%B1%84%EC%9A%A9</loc> |
| 1347 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1348 |
- <priority>0.33</priority> |
|
| 1537 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1538 |
+ <priority>0.41</priority> |
|
| 1349 | 1539 |
</url> |
| 1350 | 1540 |
<url> |
| 1351 | 1541 |
<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%B1%84%EC%9A%A9</loc> |
| 1352 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1542 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1543 |
+ <priority>0.41</priority> |
|
| 1544 |
+</url> |
|
| 1545 |
+<url> |
|
| 1546 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%86%A1%EB%85%84</loc> |
|
| 1547 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1548 |
+ <priority>0.41</priority> |
|
| 1549 |
+</url> |
|
| 1550 |
+<url> |
|
| 1551 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EB%8F%99%EC%B0%BD%ED%9A%8C</loc> |
|
| 1552 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1553 |
+ <priority>0.41</priority> |
|
| 1554 |
+</url> |
|
| 1555 |
+<url> |
|
| 1556 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EB%8F%99%EC%B0%BD%ED%9A%8C</loc> |
|
| 1557 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1558 |
+ <priority>0.41</priority> |
|
| 1559 |
+</url> |
|
| 1560 |
+<url> |
|
| 1561 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%95%88%EB%82%B4</loc> |
|
| 1562 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1563 |
+ <priority>0.41</priority> |
|
| 1564 |
+</url> |
|
| 1565 |
+<url> |
|
| 1566 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EC%95%88%EB%82%B4</loc> |
|
| 1567 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1568 |
+ <priority>0.41</priority> |
|
| 1569 |
+</url> |
|
| 1570 |
+<url> |
|
| 1571 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EA%B0%9C%EC%97%85</loc> |
|
| 1572 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1573 |
+ <priority>0.41</priority> |
|
| 1574 |
+</url> |
|
| 1575 |
+<url> |
|
| 1576 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&bestSearchKeyword=%EA%B0%9C%EC%97%85</loc> |
|
| 1577 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1578 |
+ <priority>0.41</priority> |
|
| 1579 |
+</url> |
|
| 1580 |
+<url> |
|
| 1581 |
+ <loc>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</loc> |
|
| 1582 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1583 |
+ <priority>0.41</priority> |
|
| 1584 |
+</url> |
|
| 1585 |
+<url> |
|
| 1586 |
+ <loc>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</loc> |
|
| 1587 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1588 |
+ <priority>0.41</priority> |
|
| 1589 |
+</url> |
|
| 1590 |
+<url> |
|
| 1591 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=한글날</loc> |
|
| 1592 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1353 | 1593 |
<priority>0.33</priority> |
| 1354 | 1594 |
</url> |
| 1355 | 1595 |
<url> |
| 1356 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%97%AC%ED%96%89</loc> |
|
| 1357 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1596 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=1월</loc> |
|
| 1597 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1358 | 1598 |
<priority>0.33</priority> |
| 1359 | 1599 |
</url> |
| 1360 | 1600 |
<url> |
| 1361 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%97%AC%ED%96%89</loc> |
|
| 1362 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1601 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=2월</loc> |
|
| 1602 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1363 | 1603 |
<priority>0.33</priority> |
| 1364 | 1604 |
</url> |
| 1365 | 1605 |
<url> |
| 1366 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&bestSearchKeyword=%EC%B9%9C%EB%AA%A9</loc> |
|
| 1367 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1606 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=3월</loc> |
|
| 1607 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1368 | 1608 |
<priority>0.33</priority> |
| 1369 | 1609 |
</url> |
| 1370 | 1610 |
<url> |
| 1371 |
- <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&bestSearchKeyword=%EC%B9%9C%EB%AA%A9</loc> |
|
| 1372 |
- <lastmod>2022-12-07T08:53:44+00:00</lastmod> |
|
| 1611 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=4월</loc> |
|
| 1612 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1373 | 1613 |
<priority>0.33</priority> |
| 1374 | 1614 |
</url> |
| 1375 | 1615 |
<url> |
| 1376 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=한글날</loc> |
|
| 1377 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1378 |
-<priority>0.33</priority> |
|
| 1616 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=5월</loc> |
|
| 1617 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1618 |
+ <priority>0.33</priority> |
|
| 1379 | 1619 |
</url> |
| 1380 | 1620 |
<url> |
| 1381 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=1월</loc> |
|
| 1382 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1383 |
-<priority>0.33</priority> |
|
| 1621 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=6월</loc> |
|
| 1622 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1623 |
+ <priority>0.33</priority> |
|
| 1384 | 1624 |
</url> |
| 1385 | 1625 |
<url> |
| 1386 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=2월</loc> |
|
| 1387 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1388 |
-<priority>0.33</priority> |
|
| 1626 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=7월</loc> |
|
| 1627 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1628 |
+ <priority>0.33</priority> |
|
| 1389 | 1629 |
</url> |
| 1390 | 1630 |
<url> |
| 1391 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=3월</loc> |
|
| 1392 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1393 |
-<priority>0.33</priority> |
|
| 1631 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=8월</loc> |
|
| 1632 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1633 |
+ <priority>0.33</priority> |
|
| 1394 | 1634 |
</url> |
| 1395 | 1635 |
<url> |
| 1396 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=4월</loc> |
|
| 1397 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1398 |
-<priority>0.33</priority> |
|
| 1636 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=9월</loc> |
|
| 1637 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1638 |
+ <priority>0.33</priority> |
|
| 1399 | 1639 |
</url> |
| 1400 | 1640 |
<url> |
| 1401 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=5월</loc> |
|
| 1402 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1403 |
-<priority>0.33</priority> |
|
| 1641 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=10월</loc> |
|
| 1642 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1643 |
+ <priority>0.33</priority> |
|
| 1404 | 1644 |
</url> |
| 1405 | 1645 |
<url> |
| 1406 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=6월</loc> |
|
| 1407 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1408 |
-<priority>0.33</priority> |
|
| 1646 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=11월</loc> |
|
| 1647 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1648 |
+ <priority>0.33</priority> |
|
| 1409 | 1649 |
</url> |
| 1410 | 1650 |
<url> |
| 1411 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=7월</loc> |
|
| 1412 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1413 |
-<priority>0.33</priority> |
|
| 1651 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=12월</loc> |
|
| 1652 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1653 |
+ <priority>0.33</priority> |
|
| 1414 | 1654 |
</url> |
| 1415 | 1655 |
<url> |
| 1416 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=8월</loc> |
|
| 1417 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1418 |
-<priority>0.33</priority> |
|
| 1656 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=날씨</loc> |
|
| 1657 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1658 |
+ <priority>0.33</priority> |
|
| 1419 | 1659 |
</url> |
| 1420 | 1660 |
<url> |
| 1421 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=9월</loc> |
|
| 1422 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1423 |
-<priority>0.33</priority> |
|
| 1661 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=계절</loc> |
|
| 1662 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1663 |
+ <priority>0.33</priority> |
|
| 1424 | 1664 |
</url> |
| 1425 | 1665 |
<url> |
| 1426 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=10월</loc> |
|
| 1427 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1428 |
-<priority>0.33</priority> |
|
| 1666 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=안부</loc> |
|
| 1667 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1668 |
+ <priority>0.33</priority> |
|
| 1429 | 1669 |
</url> |
| 1430 | 1670 |
<url> |
| 1431 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=11월</loc> |
|
| 1432 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1433 |
-<priority>0.33</priority> |
|
| 1671 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=봄</loc> |
|
| 1672 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1673 |
+ <priority>0.33</priority> |
|
| 1434 | 1674 |
</url> |
| 1435 | 1675 |
<url> |
| 1436 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=12월</loc> |
|
| 1437 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1438 |
-<priority>0.33</priority> |
|
| 1676 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=여름</loc> |
|
| 1677 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1678 |
+ <priority>0.33</priority> |
|
| 1439 | 1679 |
</url> |
| 1440 | 1680 |
<url> |
| 1441 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=날씨</loc> |
|
| 1442 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1443 |
-<priority>0.33</priority> |
|
| 1681 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=가을</loc> |
|
| 1682 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1683 |
+ <priority>0.33</priority> |
|
| 1444 | 1684 |
</url> |
| 1445 | 1685 |
<url> |
| 1446 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=계절</loc> |
|
| 1447 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1448 |
-<priority>0.33</priority> |
|
| 1686 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=겨울</loc> |
|
| 1687 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1688 |
+ <priority>0.33</priority> |
|
| 1449 | 1689 |
</url> |
| 1450 | 1690 |
<url> |
| 1451 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=안부</loc> |
|
| 1452 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1453 |
-<priority>0.33</priority> |
|
| 1691 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=개천절</loc> |
|
| 1692 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1693 |
+ <priority>0.33</priority> |
|
| 1454 | 1694 |
</url> |
| 1455 | 1695 |
<url> |
| 1456 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=봄</loc> |
|
| 1457 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1458 |
-<priority>0.33</priority> |
|
| 1696 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=휴일</loc> |
|
| 1697 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1698 |
+ <priority>0.33</priority> |
|
| 1459 | 1699 |
</url> |
| 1460 | 1700 |
<url> |
| 1461 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=여름</loc> |
|
| 1462 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1463 |
-<priority>0.33</priority> |
|
| 1701 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=인사</loc> |
|
| 1702 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1703 |
+ <priority>0.33</priority> |
|
| 1464 | 1704 |
</url> |
| 1465 | 1705 |
<url> |
| 1466 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=가을</loc> |
|
| 1467 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1468 |
-<priority>0.33</priority> |
|
| 1706 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=추분</loc> |
|
| 1707 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1708 |
+ <priority>0.33</priority> |
|
| 1469 | 1709 |
</url> |
| 1470 | 1710 |
<url> |
| 1471 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=겨울</loc> |
|
| 1472 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1473 |
-<priority>0.33</priority> |
|
| 1711 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=여행</loc> |
|
| 1712 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1713 |
+ <priority>0.33</priority> |
|
| 1474 | 1714 |
</url> |
| 1475 | 1715 |
<url> |
| 1476 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=개천절</loc> |
|
| 1477 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1478 |
-<priority>0.33</priority> |
|
| 1716 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=환절기</loc> |
|
| 1717 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1718 |
+ <priority>0.33</priority> |
|
| 1479 | 1719 |
</url> |
| 1480 | 1720 |
<url> |
| 1481 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=휴일</loc> |
|
| 1482 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1483 |
-<priority>0.33</priority> |
|
| 1721 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=연말</loc> |
|
| 1722 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1723 |
+ <priority>0.33</priority> |
|
| 1484 | 1724 |
</url> |
| 1485 | 1725 |
<url> |
| 1486 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=인사</loc> |
|
| 1487 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1488 |
-<priority>0.33</priority> |
|
| 1726 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=입동</loc> |
|
| 1727 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1728 |
+ <priority>0.33</priority> |
|
| 1489 | 1729 |
</url> |
| 1490 | 1730 |
<url> |
| 1491 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=추분</loc> |
|
| 1492 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1493 |
-<priority>0.33</priority> |
|
| 1731 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=소한</loc> |
|
| 1732 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1733 |
+ <priority>0.33</priority> |
|
| 1494 | 1734 |
</url> |
| 1495 | 1735 |
<url> |
| 1496 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=여행</loc> |
|
| 1497 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1498 |
-<priority>0.33</priority> |
|
| 1736 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=대한</loc> |
|
| 1737 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1738 |
+ <priority>0.33</priority> |
|
| 1499 | 1739 |
</url> |
| 1500 | 1740 |
<url> |
| 1501 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=환절기</loc> |
|
| 1502 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1503 |
-<priority>0.33</priority> |
|
| 1741 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=유머</loc> |
|
| 1742 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1743 |
+ <priority>0.33</priority> |
|
| 1504 | 1744 |
</url> |
| 1505 | 1745 |
<url> |
| 1506 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=연말</loc> |
|
| 1507 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1508 |
-<priority>0.33</priority> |
|
| 1746 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=동지</loc> |
|
| 1747 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1748 |
+ <priority>0.33</priority> |
|
| 1509 | 1749 |
</url> |
| 1510 | 1750 |
<url> |
| 1511 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=입동</loc> |
|
| 1512 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1513 |
-<priority>0.33</priority> |
|
| 1751 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=동짓날</loc> |
|
| 1752 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1753 |
+ <priority>0.33</priority> |
|
| 1514 | 1754 |
</url> |
| 1515 | 1755 |
<url> |
| 1516 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=소한</loc> |
|
| 1517 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1518 |
-<priority>0.33</priority> |
|
| 1756 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=축제</loc> |
|
| 1757 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1758 |
+ <priority>0.33</priority> |
|
| 1519 | 1759 |
</url> |
| 1520 | 1760 |
<url> |
| 1521 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=대한</loc> |
|
| 1522 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1523 |
-<priority>0.33</priority> |
|
| 1761 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=고백</loc> |
|
| 1762 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1763 |
+ <priority>0.33</priority> |
|
| 1524 | 1764 |
</url> |
| 1525 | 1765 |
<url> |
| 1526 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=유머</loc> |
|
| 1527 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1528 |
-<priority>0.33</priority> |
|
| 1766 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=벚꽃</loc> |
|
| 1767 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1768 |
+ <priority>0.33</priority> |
|
| 1529 | 1769 |
</url> |
| 1530 | 1770 |
<url> |
| 1531 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=동지</loc> |
|
| 1532 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1533 |
-<priority>0.33</priority> |
|
| 1771 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=기념일</loc> |
|
| 1772 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1773 |
+ <priority>0.33</priority> |
|
| 1534 | 1774 |
</url> |
| 1535 | 1775 |
<url> |
| 1536 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=동짓날</loc> |
|
| 1537 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1538 |
-<priority>0.33</priority> |
|
| 1776 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=할로윈</loc> |
|
| 1777 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1778 |
+ <priority>0.33</priority> |
|
| 1539 | 1779 |
</url> |
| 1540 | 1780 |
<url> |
| 1541 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=축제</loc> |
|
| 1542 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1543 |
-<priority>0.33</priority> |
|
| 1781 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=HALLOWWEEN</loc> |
|
| 1782 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1783 |
+ <priority>0.33</priority> |
|
| 1544 | 1784 |
</url> |
| 1545 | 1785 |
<url> |
| 1546 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=고백</loc> |
|
| 1547 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1548 |
-<priority>0.33</priority> |
|
| 1786 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=빼빼로데이</loc> |
|
| 1787 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1788 |
+ <priority>0.33</priority> |
|
| 1549 | 1789 |
</url> |
| 1550 | 1790 |
<url> |
| 1551 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=벚꽃</loc> |
|
| 1552 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1553 |
-<priority>0.33</priority> |
|
| 1791 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=크리스마스</loc> |
|
| 1792 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1793 |
+ <priority>0.33</priority> |
|
| 1554 | 1794 |
</url> |
| 1555 | 1795 |
<url> |
| 1556 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=기념일</loc> |
|
| 1557 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1558 |
-<priority>0.33</priority> |
|
| 1796 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=성탄절</loc> |
|
| 1797 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1798 |
+ <priority>0.33</priority> |
|
| 1559 | 1799 |
</url> |
| 1560 | 1800 |
<url> |
| 1561 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=할로윈</loc> |
|
| 1562 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1563 |
-<priority>0.33</priority> |
|
| 1801 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=XMAS</loc> |
|
| 1802 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1803 |
+ <priority>0.33</priority> |
|
| 1564 | 1804 |
</url> |
| 1565 | 1805 |
<url> |
| 1566 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=HALLOWWEEN</loc> |
|
| 1567 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1568 |
-<priority>0.33</priority> |
|
| 1806 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=삼일절</loc> |
|
| 1807 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1808 |
+ <priority>0.33</priority> |
|
| 1569 | 1809 |
</url> |
| 1570 | 1810 |
<url> |
| 1571 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=빼빼로데이</loc> |
|
| 1572 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1573 |
-<priority>0.33</priority> |
|
| 1811 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=삼겹살데이</loc> |
|
| 1812 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1813 |
+ <priority>0.33</priority> |
|
| 1574 | 1814 |
</url> |
| 1575 | 1815 |
<url> |
| 1576 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=크리스마스</loc> |
|
| 1577 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1578 |
-<priority>0.33</priority> |
|
| 1816 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=만우절</loc> |
|
| 1817 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1818 |
+ <priority>0.33</priority> |
|
| 1579 | 1819 |
</url> |
| 1580 | 1820 |
<url> |
| 1581 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=성탄절</loc> |
|
| 1582 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1583 |
-<priority>0.33</priority> |
|
| 1821 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=근로자의날</loc> |
|
| 1822 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1823 |
+ <priority>0.33</priority> |
|
| 1584 | 1824 |
</url> |
| 1585 | 1825 |
<url> |
| 1586 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=XMAS</loc> |
|
| 1587 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1588 |
-<priority>0.33</priority> |
|
| 1826 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=어린이날</loc> |
|
| 1827 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1828 |
+ <priority>0.33</priority> |
|
| 1589 | 1829 |
</url> |
| 1590 | 1830 |
<url> |
| 1591 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=삼일절</loc> |
|
| 1592 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1593 |
-<priority>0.33</priority> |
|
| 1831 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=어버이날</loc> |
|
| 1832 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1833 |
+ <priority>0.33</priority> |
|
| 1594 | 1834 |
</url> |
| 1595 | 1835 |
<url> |
| 1596 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=삼겹살데이</loc> |
|
| 1597 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1598 |
-<priority>0.33</priority> |
|
| 1836 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=감사</loc> |
|
| 1837 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1838 |
+ <priority>0.33</priority> |
|
| 1599 | 1839 |
</url> |
| 1600 | 1840 |
<url> |
| 1601 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=만우절</loc> |
|
| 1602 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1603 |
-<priority>0.33</priority> |
|
| 1841 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=로즈데이</loc> |
|
| 1842 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1843 |
+ <priority>0.33</priority> |
|
| 1604 | 1844 |
</url> |
| 1605 | 1845 |
<url> |
| 1606 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=근로자의날</loc> |
|
| 1607 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1608 |
-<priority>0.33</priority> |
|
| 1846 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=스승의날</loc> |
|
| 1847 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1848 |
+ <priority>0.33</priority> |
|
| 1609 | 1849 |
</url> |
| 1610 | 1850 |
<url> |
| 1611 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=어린이날</loc> |
|
| 1612 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1613 |
-<priority>0.33</priority> |
|
| 1851 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=성년의날</loc> |
|
| 1852 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1853 |
+ <priority>0.33</priority> |
|
| 1614 | 1854 |
</url> |
| 1615 | 1855 |
<url> |
| 1616 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=어버이날</loc> |
|
| 1617 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1618 |
-<priority>0.33</priority> |
|
| 1856 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=현충일</loc> |
|
| 1857 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1858 |
+ <priority>0.33</priority> |
|
| 1619 | 1859 |
</url> |
| 1620 | 1860 |
<url> |
| 1621 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=감사</loc> |
|
| 1622 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1623 |
-<priority>0.33</priority> |
|
| 1861 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=호국보훈의달</loc> |
|
| 1862 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1863 |
+ <priority>0.33</priority> |
|
| 1624 | 1864 |
</url> |
| 1625 | 1865 |
<url> |
| 1626 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=로즈데이</loc> |
|
| 1627 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1628 |
-<priority>0.33</priority> |
|
| 1866 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=명절</loc> |
|
| 1867 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1868 |
+ <priority>0.33</priority> |
|
| 1629 | 1869 |
</url> |
| 1630 | 1870 |
<url> |
| 1631 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=스승의날</loc> |
|
| 1632 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1633 |
-<priority>0.33</priority> |
|
| 1871 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=연시</loc> |
|
| 1872 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1873 |
+ <priority>0.33</priority> |
|
| 1634 | 1874 |
</url> |
| 1635 | 1875 |
<url> |
| 1636 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=성년의날</loc> |
|
| 1637 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1638 |
-<priority>0.33</priority> |
|
| 1876 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=연말연시</loc> |
|
| 1877 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1878 |
+ <priority>0.33</priority> |
|
| 1639 | 1879 |
</url> |
| 1640 | 1880 |
<url> |
| 1641 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=현충일</loc> |
|
| 1642 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1643 |
-<priority>0.33</priority> |
|
| 1881 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=설날</loc> |
|
| 1882 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1883 |
+ <priority>0.33</priority> |
|
| 1644 | 1884 |
</url> |
| 1645 | 1885 |
<url> |
| 1646 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=호국보훈의달</loc> |
|
| 1647 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1648 |
-<priority>0.33</priority> |
|
| 1886 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=새해</loc> |
|
| 1887 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1888 |
+ <priority>0.33</priority> |
|
| 1649 | 1889 |
</url> |
| 1650 | 1890 |
<url> |
| 1651 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=명절</loc> |
|
| 1652 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1653 |
-<priority>0.33</priority> |
|
| 1891 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=근하신년</loc> |
|
| 1892 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1893 |
+ <priority>0.33</priority> |
|
| 1654 | 1894 |
</url> |
| 1655 | 1895 |
<url> |
| 1656 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=연시</loc> |
|
| 1657 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1658 |
-<priority>0.33</priority> |
|
| 1896 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=대보름</loc> |
|
| 1897 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1898 |
+ <priority>0.33</priority> |
|
| 1659 | 1899 |
</url> |
| 1660 | 1900 |
<url> |
| 1661 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=연말연시</loc> |
|
| 1662 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1663 |
-<priority>0.33</priority> |
|
| 1901 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=정월대보름</loc> |
|
| 1902 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1903 |
+ <priority>0.33</priority> |
|
| 1664 | 1904 |
</url> |
| 1665 | 1905 |
<url> |
| 1666 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=설날</loc> |
|
| 1667 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1668 |
-<priority>0.33</priority> |
|
| 1906 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=단오</loc> |
|
| 1907 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1908 |
+ <priority>0.33</priority> |
|
| 1669 | 1909 |
</url> |
| 1670 | 1910 |
<url> |
| 1671 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=새해</loc> |
|
| 1672 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1673 |
-<priority>0.33</priority> |
|
| 1911 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=인사말</loc> |
|
| 1912 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1913 |
+ <priority>0.33</priority> |
|
| 1674 | 1914 |
</url> |
| 1675 | 1915 |
<url> |
| 1676 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=근하신년</loc> |
|
| 1677 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1678 |
-<priority>0.33</priority> |
|
| 1916 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=결혼</loc> |
|
| 1917 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1918 |
+ <priority>0.33</priority> |
|
| 1679 | 1919 |
</url> |
| 1680 | 1920 |
<url> |
| 1681 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=대보름</loc> |
|
| 1682 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1683 |
-<priority>0.33</priority> |
|
| 1921 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=초대</loc> |
|
| 1922 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1923 |
+ <priority>0.33</priority> |
|
| 1684 | 1924 |
</url> |
| 1685 | 1925 |
<url> |
| 1686 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=정월대보름</loc> |
|
| 1687 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1688 |
-<priority>0.33</priority> |
|
| 1926 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=결혼초대</loc> |
|
| 1927 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1928 |
+ <priority>0.33</priority> |
|
| 1689 | 1929 |
</url> |
| 1690 | 1930 |
<url> |
| 1691 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=단오</loc> |
|
| 1692 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1693 |
-<priority>0.33</priority> |
|
| 1931 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=축하</loc> |
|
| 1932 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1933 |
+ <priority>0.33</priority> |
|
| 1694 | 1934 |
</url> |
| 1695 | 1935 |
<url> |
| 1696 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=인사말</loc> |
|
| 1697 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1698 |
-<priority>0.33</priority> |
|
| 1936 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=결혼축하</loc> |
|
| 1937 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1938 |
+ <priority>0.33</priority> |
|
| 1699 | 1939 |
</url> |
| 1700 | 1940 |
<url> |
| 1701 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=결혼</loc> |
|
| 1702 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1703 |
-<priority>0.33</priority> |
|
| 1941 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=결혼감사</loc> |
|
| 1942 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1943 |
+ <priority>0.33</priority> |
|
| 1704 | 1944 |
</url> |
| 1705 | 1945 |
<url> |
| 1706 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=초대</loc> |
|
| 1707 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1708 |
-<priority>0.33</priority> |
|
| 1946 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=돌잔치</loc> |
|
| 1947 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1948 |
+ <priority>0.33</priority> |
|
| 1709 | 1949 |
</url> |
| 1710 | 1950 |
<url> |
| 1711 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=결혼초대</loc> |
|
| 1712 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1713 |
-<priority>0.33</priority> |
|
| 1951 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=돌잔치초대</loc> |
|
| 1952 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1953 |
+ <priority>0.33</priority> |
|
| 1714 | 1954 |
</url> |
| 1715 | 1955 |
<url> |
| 1716 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=축하</loc> |
|
| 1717 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1718 |
-<priority>0.33</priority> |
|
| 1956 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=돌잔치축하</loc> |
|
| 1957 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1958 |
+ <priority>0.33</priority> |
|
| 1719 | 1959 |
</url> |
| 1720 | 1960 |
<url> |
| 1721 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=결혼축하</loc> |
|
| 1722 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1723 |
-<priority>0.33</priority> |
|
| 1961 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=돌잔치감사</loc> |
|
| 1962 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1963 |
+ <priority>0.33</priority> |
|
| 1724 | 1964 |
</url> |
| 1725 | 1965 |
<url> |
| 1726 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=결혼감사</loc> |
|
| 1727 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1728 |
-<priority>0.33</priority> |
|
| 1966 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=생일</loc> |
|
| 1967 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1968 |
+ <priority>0.33</priority> |
|
| 1729 | 1969 |
</url> |
| 1730 | 1970 |
<url> |
| 1731 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=돌잔치</loc> |
|
| 1732 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1733 |
-<priority>0.33</priority> |
|
| 1971 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=경조사</loc> |
|
| 1972 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1973 |
+ <priority>0.33</priority> |
|
| 1734 | 1974 |
</url> |
| 1735 | 1975 |
<url> |
| 1736 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=돌잔치초대</loc> |
|
| 1737 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1738 |
-<priority>0.33</priority> |
|
| 1976 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=생신</loc> |
|
| 1977 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1978 |
+ <priority>0.33</priority> |
|
| 1739 | 1979 |
</url> |
| 1740 | 1980 |
<url> |
| 1741 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=돌잔치축하</loc> |
|
| 1742 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1743 |
-<priority>0.33</priority> |
|
| 1981 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=생일축하</loc> |
|
| 1982 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1983 |
+ <priority>0.33</priority> |
|
| 1744 | 1984 |
</url> |
| 1745 | 1985 |
<url> |
| 1746 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=돌잔치감사</loc> |
|
| 1747 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1748 |
-<priority>0.33</priority> |
|
| 1986 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=환갑</loc> |
|
| 1987 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1988 |
+ <priority>0.33</priority> |
|
| 1749 | 1989 |
</url> |
| 1750 | 1990 |
<url> |
| 1751 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=생일</loc> |
|
| 1752 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1753 |
-<priority>0.33</priority> |
|
| 1991 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=환갑초대</loc> |
|
| 1992 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1993 |
+ <priority>0.33</priority> |
|
| 1754 | 1994 |
</url> |
| 1755 | 1995 |
<url> |
| 1756 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=경조사</loc> |
|
| 1757 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1758 |
-<priority>0.33</priority> |
|
| 1996 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=회갑</loc> |
|
| 1997 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 1998 |
+ <priority>0.33</priority> |
|
| 1759 | 1999 |
</url> |
| 1760 | 2000 |
<url> |
| 1761 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=생신</loc> |
|
| 1762 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1763 |
-<priority>0.33</priority> |
|
| 2001 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=회갑초대</loc> |
|
| 2002 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2003 |
+ <priority>0.33</priority> |
|
| 1764 | 2004 |
</url> |
| 1765 | 2005 |
<url> |
| 1766 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=생일축하</loc> |
|
| 1767 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1768 |
-<priority>0.33</priority> |
|
| 2006 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=주갑</loc> |
|
| 2007 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2008 |
+ <priority>0.33</priority> |
|
| 1769 | 2009 |
</url> |
| 1770 | 2010 |
<url> |
| 1771 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=환갑</loc> |
|
| 1772 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1773 |
-<priority>0.33</priority> |
|
| 2011 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=주갑초대</loc> |
|
| 2012 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2013 |
+ <priority>0.33</priority> |
|
| 1774 | 2014 |
</url> |
| 1775 | 2015 |
<url> |
| 1776 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=환갑초대</loc> |
|
| 1777 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1778 |
-<priority>0.33</priority> |
|
| 2016 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=고희</loc> |
|
| 2017 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2018 |
+ <priority>0.33</priority> |
|
| 1779 | 2019 |
</url> |
| 1780 | 2020 |
<url> |
| 1781 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=회갑</loc> |
|
| 1782 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1783 |
-<priority>0.33</priority> |
|
| 2021 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=고희초대</loc> |
|
| 2022 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2023 |
+ <priority>0.33</priority> |
|
| 1784 | 2024 |
</url> |
| 1785 | 2025 |
<url> |
| 1786 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=회갑초대</loc> |
|
| 1787 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1788 |
-<priority>0.33</priority> |
|
| 2026 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=부고</loc> |
|
| 2027 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2028 |
+ <priority>0.33</priority> |
|
| 1789 | 2029 |
</url> |
| 1790 | 2030 |
<url> |
| 1791 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=주갑</loc> |
|
| 1792 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1793 |
-<priority>0.33</priority> |
|
| 2031 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=장례</loc> |
|
| 2032 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2033 |
+ <priority>0.33</priority> |
|
| 1794 | 2034 |
</url> |
| 1795 | 2035 |
<url> |
| 1796 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=주갑초대</loc> |
|
| 1797 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1798 |
-<priority>0.33</priority> |
|
| 2036 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=조의</loc> |
|
| 2037 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2038 |
+ <priority>0.33</priority> |
|
| 1799 | 2039 |
</url> |
| 1800 | 2040 |
<url> |
| 1801 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=고희</loc> |
|
| 1802 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1803 |
-<priority>0.33</priority> |
|
| 2041 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=애도</loc> |
|
| 2042 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2043 |
+ <priority>0.33</priority> |
|
| 1804 | 2044 |
</url> |
| 1805 | 2045 |
<url> |
| 1806 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=고희초대</loc> |
|
| 1807 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1808 |
-<priority>0.33</priority> |
|
| 2046 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=조문</loc> |
|
| 2047 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2048 |
+ <priority>0.33</priority> |
|
| 1809 | 2049 |
</url> |
| 1810 | 2050 |
<url> |
| 1811 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=부고</loc> |
|
| 1812 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1813 |
-<priority>0.33</priority> |
|
| 2051 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=답례</loc> |
|
| 2052 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2053 |
+ <priority>0.33</priority> |
|
| 1814 | 2054 |
</url> |
| 1815 | 2055 |
<url> |
| 1816 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=장례</loc> |
|
| 1817 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1818 |
-<priority>0.33</priority> |
|
| 2056 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=합격</loc> |
|
| 2057 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2058 |
+ <priority>0.33</priority> |
|
| 1819 | 2059 |
</url> |
| 1820 | 2060 |
<url> |
| 1821 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=조의</loc> |
|
| 1822 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1823 |
-<priority>0.33</priority> |
|
| 2061 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=합격축하</loc> |
|
| 2062 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2063 |
+ <priority>0.33</priority> |
|
| 1824 | 2064 |
</url> |
| 1825 | 2065 |
<url> |
| 1826 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=애도</loc> |
|
| 1827 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1828 |
-<priority>0.33</priority> |
|
| 2066 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=승진</loc> |
|
| 2067 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2068 |
+ <priority>0.33</priority> |
|
| 1829 | 2069 |
</url> |
| 1830 | 2070 |
<url> |
| 1831 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=조문</loc> |
|
| 1832 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1833 |
-<priority>0.33</priority> |
|
| 2071 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=승진축하</loc> |
|
| 2072 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2073 |
+ <priority>0.33</priority> |
|
| 1834 | 2074 |
</url> |
| 1835 | 2075 |
<url> |
| 1836 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=답례</loc> |
|
| 1837 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1838 |
-<priority>0.33</priority> |
|
| 2076 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=격려</loc> |
|
| 2077 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2078 |
+ <priority>0.33</priority> |
|
| 1839 | 2079 |
</url> |
| 1840 | 2080 |
<url> |
| 1841 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=합격</loc> |
|
| 1842 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1843 |
-<priority>0.33</priority> |
|
| 2081 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=위로</loc> |
|
| 2082 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2083 |
+ <priority>0.33</priority> |
|
| 1844 | 2084 |
</url> |
| 1845 | 2085 |
<url> |
| 1846 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=합격축하</loc> |
|
| 1847 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1848 |
-<priority>0.33</priority> |
|
| 2086 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=응원</loc> |
|
| 2087 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2088 |
+ <priority>0.33</priority> |
|
| 1849 | 2089 |
</url> |
| 1850 | 2090 |
<url> |
| 1851 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=승진</loc> |
|
| 1852 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1853 |
-<priority>0.33</priority> |
|
| 2091 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=수능</loc> |
|
| 2092 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2093 |
+ <priority>0.33</priority> |
|
| 1854 | 2094 |
</url> |
| 1855 | 2095 |
<url> |
| 1856 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=승진축하</loc> |
|
| 1857 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1858 |
-<priority>0.33</priority> |
|
| 2096 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=모임</loc> |
|
| 2097 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2098 |
+ <priority>0.33</priority> |
|
| 1859 | 2099 |
</url> |
| 1860 | 2100 |
<url> |
| 1861 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=격려</loc> |
|
| 1862 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1863 |
-<priority>0.33</priority> |
|
| 2101 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=행사</loc> |
|
| 2102 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2103 |
+ <priority>0.33</priority> |
|
| 1864 | 2104 |
</url> |
| 1865 | 2105 |
<url> |
| 1866 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=위로</loc> |
|
| 1867 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1868 |
-<priority>0.33</priority> |
|
| 2106 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=친목</loc> |
|
| 2107 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2108 |
+ <priority>0.33</priority> |
|
| 1869 | 2109 |
</url> |
| 1870 | 2110 |
<url> |
| 1871 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=응원</loc> |
|
| 1872 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1873 |
-<priority>0.33</priority> |
|
| 2111 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=송년</loc> |
|
| 2112 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2113 |
+ <priority>0.33</priority> |
|
| 1874 | 2114 |
</url> |
| 1875 | 2115 |
<url> |
| 1876 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=수능</loc> |
|
| 1877 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1878 |
-<priority>0.33</priority> |
|
| 2116 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=송년회</loc> |
|
| 2117 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2118 |
+ <priority>0.33</priority> |
|
| 1879 | 2119 |
</url> |
| 1880 | 2120 |
<url> |
| 1881 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=모임</loc> |
|
| 1882 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1883 |
-<priority>0.33</priority> |
|
| 2121 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=동창모임</loc> |
|
| 2122 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2123 |
+ <priority>0.33</priority> |
|
| 1884 | 2124 |
</url> |
| 1885 | 2125 |
<url> |
| 1886 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=행사</loc> |
|
| 1887 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1888 |
-<priority>0.33</priority> |
|
| 2126 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=산악회</loc> |
|
| 2127 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2128 |
+ <priority>0.33</priority> |
|
| 1889 | 2129 |
</url> |
| 1890 | 2130 |
<url> |
| 1891 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=친목</loc> |
|
| 1892 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1893 |
-<priority>0.33</priority> |
|
| 2131 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=워크숍</loc> |
|
| 2132 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2133 |
+ <priority>0.33</priority> |
|
| 1894 | 2134 |
</url> |
| 1895 | 2135 |
<url> |
| 1896 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=송년</loc> |
|
| 1897 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1898 |
-<priority>0.33</priority> |
|
| 2136 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=야유회</loc> |
|
| 2137 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2138 |
+ <priority>0.33</priority> |
|
| 1899 | 2139 |
</url> |
| 1900 | 2140 |
<url> |
| 1901 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=송년회</loc> |
|
| 1902 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1903 |
-<priority>0.33</priority> |
|
| 2141 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=라운딩</loc> |
|
| 2142 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2143 |
+ <priority>0.33</priority> |
|
| 1904 | 2144 |
</url> |
| 1905 | 2145 |
<url> |
| 1906 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=동창모임</loc> |
|
| 1907 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1908 |
-<priority>0.33</priority> |
|
| 2146 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=동호회</loc> |
|
| 2147 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2148 |
+ <priority>0.33</priority> |
|
| 1909 | 2149 |
</url> |
| 1910 | 2150 |
<url> |
| 1911 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=산악회</loc> |
|
| 1912 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1913 |
-<priority>0.33</priority> |
|
| 2151 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=감성</loc> |
|
| 2152 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2153 |
+ <priority>0.33</priority> |
|
| 1914 | 2154 |
</url> |
| 1915 | 2155 |
<url> |
| 1916 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=워크숍</loc> |
|
| 1917 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1918 |
-<priority>0.33</priority> |
|
| 2156 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=코믹</loc> |
|
| 2157 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2158 |
+ <priority>0.33</priority> |
|
| 1919 | 2159 |
</url> |
| 1920 | 2160 |
<url> |
| 1921 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=야유회</loc> |
|
| 1922 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1923 |
-<priority>0.33</priority> |
|
| 2161 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=연락</loc> |
|
| 2162 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2163 |
+ <priority>0.33</priority> |
|
| 1924 | 2164 |
</url> |
| 1925 | 2165 |
<url> |
| 1926 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=라운딩</loc> |
|
| 1927 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1928 |
-<priority>0.33</priority> |
|
| 2166 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=영화</loc> |
|
| 2167 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2168 |
+ <priority>0.33</priority> |
|
| 1929 | 2169 |
</url> |
| 1930 | 2170 |
<url> |
| 1931 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=동호회</loc> |
|
| 1932 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1933 |
-<priority>0.33</priority> |
|
| 2171 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=경사</loc> |
|
| 2172 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2173 |
+ <priority>0.33</priority> |
|
| 1934 | 2174 |
</url> |
| 1935 | 2175 |
<url> |
| 1936 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=감성</loc> |
|
| 1937 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1938 |
-<priority>0.33</priority> |
|
| 2176 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=좋은글</loc> |
|
| 2177 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2178 |
+ <priority>0.33</priority> |
|
| 1939 | 2179 |
</url> |
| 1940 | 2180 |
<url> |
| 1941 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=코믹</loc> |
|
| 1942 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1943 |
-<priority>0.33</priority> |
|
| 2181 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=명언</loc> |
|
| 2182 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2183 |
+ <priority>0.33</priority> |
|
| 1944 | 2184 |
</url> |
| 1945 | 2185 |
<url> |
| 1946 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=연락</loc> |
|
| 1947 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1948 |
-<priority>0.33</priority> |
|
| 2186 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=속담</loc> |
|
| 2187 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2188 |
+ <priority>0.33</priority> |
|
| 1949 | 2189 |
</url> |
| 1950 | 2190 |
<url> |
| 1951 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=영화</loc> |
|
| 1952 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1953 |
-<priority>0.33</priority> |
|
| 2191 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=종교</loc> |
|
| 2192 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2193 |
+ <priority>0.33</priority> |
|
| 1954 | 2194 |
</url> |
| 1955 | 2195 |
<url> |
| 1956 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=경사</loc> |
|
| 1957 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1958 |
-<priority>0.33</priority> |
|
| 2196 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=석가탄신일</loc> |
|
| 2197 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2198 |
+ <priority>0.33</priority> |
|
| 1959 | 2199 |
</url> |
| 1960 | 2200 |
<url> |
| 1961 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=좋은글</loc> |
|
| 1962 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1963 |
-<priority>0.33</priority> |
|
| 2201 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=부활절</loc> |
|
| 2202 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2203 |
+ <priority>0.33</priority> |
|
| 1964 | 2204 |
</url> |
| 1965 | 2205 |
<url> |
| 1966 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=명언</loc> |
|
| 1967 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1968 |
-<priority>0.33</priority> |
|
| 2206 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=예배</loc> |
|
| 2207 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2208 |
+ <priority>0.33</priority> |
|
| 1969 | 2209 |
</url> |
| 1970 | 2210 |
<url> |
| 1971 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=속담</loc> |
|
| 1972 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1973 |
-<priority>0.33</priority> |
|
| 2211 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=운세</loc> |
|
| 2212 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2213 |
+ <priority>0.33</priority> |
|
| 1974 | 2214 |
</url> |
| 1975 | 2215 |
<url> |
| 1976 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=종교</loc> |
|
| 1977 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1978 |
-<priority>0.33</priority> |
|
| 2216 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=별자리</loc> |
|
| 2217 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2218 |
+ <priority>0.33</priority> |
|
| 1979 | 2219 |
</url> |
| 1980 | 2220 |
<url> |
| 1981 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=석가탄신일</loc> |
|
| 1982 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1983 |
-<priority>0.33</priority> |
|
| 2221 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=선거</loc> |
|
| 2222 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2223 |
+ <priority>0.33</priority> |
|
| 1984 | 2224 |
</url> |
| 1985 | 2225 |
<url> |
| 1986 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=부활절</loc> |
|
| 1987 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1988 |
-<priority>0.33</priority> |
|
| 2226 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=투표</loc> |
|
| 2227 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2228 |
+ <priority>0.33</priority> |
|
| 1989 | 2229 |
</url> |
| 1990 | 2230 |
<url> |
| 1991 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=예배</loc> |
|
| 1992 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1993 |
-<priority>0.33</priority> |
|
| 2231 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=사전투표</loc> |
|
| 2232 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2233 |
+ <priority>0.33</priority> |
|
| 1994 | 2234 |
</url> |
| 1995 | 2235 |
<url> |
| 1996 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=운세</loc> |
|
| 1997 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 1998 |
-<priority>0.33</priority> |
|
| 2236 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=복날</loc> |
|
| 2237 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2238 |
+ <priority>0.33</priority> |
|
| 1999 | 2239 |
</url> |
| 2000 | 2240 |
<url> |
| 2001 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=별자리</loc> |
|
| 2002 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2003 |
-<priority>0.33</priority> |
|
| 2241 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=광복절</loc> |
|
| 2242 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2243 |
+ <priority>0.33</priority> |
|
| 2004 | 2244 |
</url> |
| 2005 | 2245 |
<url> |
| 2006 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=선거</loc> |
|
| 2007 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2008 |
-<priority>0.33</priority> |
|
| 2246 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=추석</loc> |
|
| 2247 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2248 |
+ <priority>0.33</priority> |
|
| 2009 | 2249 |
</url> |
| 2010 | 2250 |
<url> |
| 2011 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=투표</loc> |
|
| 2012 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2013 |
-<priority>0.33</priority> |
|
| 2251 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=한가위</loc> |
|
| 2252 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2253 |
+ <priority>0.33</priority> |
|
| 2014 | 2254 |
</url> |
| 2015 | 2255 |
<url> |
| 2016 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=사전투표</loc> |
|
| 2017 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2018 |
-<priority>0.33</priority> |
|
| 2256 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=중추절</loc> |
|
| 2257 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2258 |
+ <priority>0.33</priority> |
|
| 2019 | 2259 |
</url> |
| 2020 | 2260 |
<url> |
| 2021 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=복날</loc> |
|
| 2022 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2023 |
-<priority>0.33</priority> |
|
| 2261 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=한글날</loc> |
|
| 2262 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2263 |
+ <priority>0.33</priority> |
|
| 2024 | 2264 |
</url> |
| 2025 | 2265 |
<url> |
| 2026 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=광복절</loc> |
|
| 2027 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2028 |
-<priority>0.33</priority> |
|
| 2266 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=1월</loc> |
|
| 2267 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2268 |
+ <priority>0.33</priority> |
|
| 2029 | 2269 |
</url> |
| 2030 | 2270 |
<url> |
| 2031 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=추석</loc> |
|
| 2032 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2033 |
-<priority>0.33</priority> |
|
| 2271 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=2월</loc> |
|
| 2272 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2273 |
+ <priority>0.33</priority> |
|
| 2034 | 2274 |
</url> |
| 2035 | 2275 |
<url> |
| 2036 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=한가위</loc> |
|
| 2037 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2038 |
-<priority>0.33</priority> |
|
| 2276 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=3월</loc> |
|
| 2277 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2278 |
+ <priority>0.33</priority> |
|
| 2039 | 2279 |
</url> |
| 2040 | 2280 |
<url> |
| 2041 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=중추절</loc> |
|
| 2042 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2043 |
-<priority>0.33</priority> |
|
| 2281 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=4월</loc> |
|
| 2282 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2283 |
+ <priority>0.33</priority> |
|
| 2044 | 2284 |
</url> |
| 2045 | 2285 |
<url> |
| 2046 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=한글날</loc> |
|
| 2047 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2048 |
-<priority>0.33</priority> |
|
| 2286 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=5월</loc> |
|
| 2287 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2288 |
+ <priority>0.33</priority> |
|
| 2049 | 2289 |
</url> |
| 2050 | 2290 |
<url> |
| 2051 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=1월</loc> |
|
| 2052 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2053 |
-<priority>0.33</priority> |
|
| 2291 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=6월</loc> |
|
| 2292 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2293 |
+ <priority>0.33</priority> |
|
| 2054 | 2294 |
</url> |
| 2055 | 2295 |
<url> |
| 2056 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=2월</loc> |
|
| 2057 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2058 |
-<priority>0.33</priority> |
|
| 2296 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=7월</loc> |
|
| 2297 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2298 |
+ <priority>0.33</priority> |
|
| 2059 | 2299 |
</url> |
| 2060 | 2300 |
<url> |
| 2061 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=3월</loc> |
|
| 2062 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2063 |
-<priority>0.33</priority> |
|
| 2301 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=8월</loc> |
|
| 2302 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2303 |
+ <priority>0.33</priority> |
|
| 2064 | 2304 |
</url> |
| 2065 | 2305 |
<url> |
| 2066 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=4월</loc> |
|
| 2067 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2068 |
-<priority>0.33</priority> |
|
| 2306 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=9월</loc> |
|
| 2307 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2308 |
+ <priority>0.33</priority> |
|
| 2069 | 2309 |
</url> |
| 2070 | 2310 |
<url> |
| 2071 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=5월</loc> |
|
| 2072 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2073 |
-<priority>0.33</priority> |
|
| 2311 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=10월</loc> |
|
| 2312 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2313 |
+ <priority>0.33</priority> |
|
| 2074 | 2314 |
</url> |
| 2075 | 2315 |
<url> |
| 2076 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=6월</loc> |
|
| 2077 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2078 |
-<priority>0.33</priority> |
|
| 2079 |
-</url> |
|
| 2080 |
-<url> |
|
| 2081 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=7월</loc> |
|
| 2082 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2083 |
-<priority>0.33</priority> |
|
| 2084 |
-</url> |
|
| 2085 |
-<url> |
|
| 2086 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=8월</loc> |
|
| 2087 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2088 |
-<priority>0.33</priority> |
|
| 2089 |
-</url> |
|
| 2090 |
-<url> |
|
| 2091 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=9월</loc> |
|
| 2092 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2093 |
-<priority>0.33</priority> |
|
| 2094 |
-</url> |
|
| 2095 |
-<url> |
|
| 2096 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=10월</loc> |
|
| 2097 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2098 |
-<priority>0.33</priority> |
|
| 2099 |
-</url> |
|
| 2100 |
-<url> |
|
| 2101 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=11월</loc> |
|
| 2102 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2103 |
-<priority>0.33</priority> |
|
| 2316 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=11월</loc> |
|
| 2317 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2318 |
+ <priority>0.33</priority> |
|
| 2104 | 2319 |
</url> |
| 2105 | 2320 |
<url> |
| 2106 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=12월</loc> |
|
| 2107 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2108 |
-<priority>0.33</priority> |
|
| 2321 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=12월</loc> |
|
| 2322 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2323 |
+ <priority>0.33</priority> |
|
| 2109 | 2324 |
</url> |
| 2110 | 2325 |
<url> |
| 2111 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=날씨</loc> |
|
| 2112 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2113 |
-<priority>0.33</priority> |
|
| 2326 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=날씨</loc> |
|
| 2327 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2328 |
+ <priority>0.33</priority> |
|
| 2114 | 2329 |
</url> |
| 2115 | 2330 |
<url> |
| 2116 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=계절</loc> |
|
| 2117 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2118 |
-<priority>0.33</priority> |
|
| 2331 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=계절</loc> |
|
| 2332 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2333 |
+ <priority>0.33</priority> |
|
| 2119 | 2334 |
</url> |
| 2120 | 2335 |
<url> |
| 2121 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=안부</loc> |
|
| 2122 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2123 |
-<priority>0.33</priority> |
|
| 2336 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=안부</loc> |
|
| 2337 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2338 |
+ <priority>0.33</priority> |
|
| 2124 | 2339 |
</url> |
| 2125 | 2340 |
<url> |
| 2126 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=봄</loc> |
|
| 2127 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2128 |
-<priority>0.33</priority> |
|
| 2341 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=봄</loc> |
|
| 2342 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2343 |
+ <priority>0.33</priority> |
|
| 2129 | 2344 |
</url> |
| 2130 | 2345 |
<url> |
| 2131 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=여름</loc> |
|
| 2132 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2133 |
-<priority>0.33</priority> |
|
| 2346 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=여름</loc> |
|
| 2347 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2348 |
+ <priority>0.33</priority> |
|
| 2134 | 2349 |
</url> |
| 2135 | 2350 |
<url> |
| 2136 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=가을</loc> |
|
| 2137 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2138 |
-<priority>0.33</priority> |
|
| 2351 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=가을</loc> |
|
| 2352 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2353 |
+ <priority>0.33</priority> |
|
| 2139 | 2354 |
</url> |
| 2140 | 2355 |
<url> |
| 2141 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=겨울</loc> |
|
| 2142 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2143 |
-<priority>0.33</priority> |
|
| 2356 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=겨울</loc> |
|
| 2357 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2358 |
+ <priority>0.33</priority> |
|
| 2144 | 2359 |
</url> |
| 2145 | 2360 |
<url> |
| 2146 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=개천절</loc> |
|
| 2147 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2148 |
-<priority>0.33</priority> |
|
| 2361 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=개천절</loc> |
|
| 2362 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2363 |
+ <priority>0.33</priority> |
|
| 2149 | 2364 |
</url> |
| 2150 | 2365 |
<url> |
| 2151 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=휴일</loc> |
|
| 2152 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2153 |
-<priority>0.33</priority> |
|
| 2366 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=휴일</loc> |
|
| 2367 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2368 |
+ <priority>0.33</priority> |
|
| 2154 | 2369 |
</url> |
| 2155 | 2370 |
<url> |
| 2156 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=인사</loc> |
|
| 2157 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2158 |
-<priority>0.33</priority> |
|
| 2371 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=인사</loc> |
|
| 2372 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2373 |
+ <priority>0.33</priority> |
|
| 2159 | 2374 |
</url> |
| 2160 | 2375 |
<url> |
| 2161 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=추분</loc> |
|
| 2162 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2163 |
-<priority>0.33</priority> |
|
| 2376 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=추분</loc> |
|
| 2377 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2378 |
+ <priority>0.33</priority> |
|
| 2164 | 2379 |
</url> |
| 2165 | 2380 |
<url> |
| 2166 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=여행</loc> |
|
| 2167 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2168 |
-<priority>0.33</priority> |
|
| 2381 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=여행</loc> |
|
| 2382 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2383 |
+ <priority>0.33</priority> |
|
| 2169 | 2384 |
</url> |
| 2170 | 2385 |
<url> |
| 2171 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=환절기</loc> |
|
| 2172 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2173 |
-<priority>0.33</priority> |
|
| 2386 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=환절기</loc> |
|
| 2387 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2388 |
+ <priority>0.33</priority> |
|
| 2174 | 2389 |
</url> |
| 2175 | 2390 |
<url> |
| 2176 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=연말</loc> |
|
| 2177 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2178 |
-<priority>0.33</priority> |
|
| 2391 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=연말</loc> |
|
| 2392 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2393 |
+ <priority>0.33</priority> |
|
| 2179 | 2394 |
</url> |
| 2180 | 2395 |
<url> |
| 2181 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=입동</loc> |
|
| 2182 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2183 |
-<priority>0.33</priority> |
|
| 2396 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=입동</loc> |
|
| 2397 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2398 |
+ <priority>0.33</priority> |
|
| 2184 | 2399 |
</url> |
| 2185 | 2400 |
<url> |
| 2186 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=소한</loc> |
|
| 2187 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2188 |
-<priority>0.33</priority> |
|
| 2401 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=소한</loc> |
|
| 2402 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2403 |
+ <priority>0.33</priority> |
|
| 2189 | 2404 |
</url> |
| 2190 | 2405 |
<url> |
| 2191 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=대한</loc> |
|
| 2192 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2193 |
-<priority>0.33</priority> |
|
| 2406 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=대한</loc> |
|
| 2407 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2408 |
+ <priority>0.33</priority> |
|
| 2194 | 2409 |
</url> |
| 2195 | 2410 |
<url> |
| 2196 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=유머</loc> |
|
| 2197 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2198 |
-<priority>0.33</priority> |
|
| 2411 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=유머</loc> |
|
| 2412 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2413 |
+ <priority>0.33</priority> |
|
| 2199 | 2414 |
</url> |
| 2200 | 2415 |
<url> |
| 2201 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=동지</loc> |
|
| 2202 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2203 |
-<priority>0.33</priority> |
|
| 2416 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=동지</loc> |
|
| 2417 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2418 |
+ <priority>0.33</priority> |
|
| 2204 | 2419 |
</url> |
| 2205 | 2420 |
<url> |
| 2206 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=동짓날</loc> |
|
| 2207 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2208 |
-<priority>0.33</priority> |
|
| 2421 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=동짓날</loc> |
|
| 2422 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2423 |
+ <priority>0.33</priority> |
|
| 2209 | 2424 |
</url> |
| 2210 | 2425 |
<url> |
| 2211 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=축제</loc> |
|
| 2212 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2213 |
-<priority>0.33</priority> |
|
| 2426 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=축제</loc> |
|
| 2427 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2428 |
+ <priority>0.33</priority> |
|
| 2214 | 2429 |
</url> |
| 2215 | 2430 |
<url> |
| 2216 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=고백</loc> |
|
| 2217 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2218 |
-<priority>0.33</priority> |
|
| 2431 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=고백</loc> |
|
| 2432 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2433 |
+ <priority>0.33</priority> |
|
| 2219 | 2434 |
</url> |
| 2220 | 2435 |
<url> |
| 2221 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=벚꽃</loc> |
|
| 2222 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2223 |
-<priority>0.33</priority> |
|
| 2436 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=벚꽃</loc> |
|
| 2437 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2438 |
+ <priority>0.33</priority> |
|
| 2224 | 2439 |
</url> |
| 2225 | 2440 |
<url> |
| 2226 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=기념일</loc> |
|
| 2227 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2228 |
-<priority>0.33</priority> |
|
| 2441 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=기념일</loc> |
|
| 2442 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2443 |
+ <priority>0.33</priority> |
|
| 2229 | 2444 |
</url> |
| 2230 | 2445 |
<url> |
| 2231 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=할로윈</loc> |
|
| 2232 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2233 |
-<priority>0.33</priority> |
|
| 2446 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=할로윈</loc> |
|
| 2447 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2448 |
+ <priority>0.33</priority> |
|
| 2234 | 2449 |
</url> |
| 2235 | 2450 |
<url> |
| 2236 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=HALLOWWEEN</loc> |
|
| 2237 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2238 |
-<priority>0.33</priority> |
|
| 2451 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=HALLOWWEEN</loc> |
|
| 2452 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2453 |
+ <priority>0.33</priority> |
|
| 2239 | 2454 |
</url> |
| 2240 | 2455 |
<url> |
| 2241 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=빼빼로데이</loc> |
|
| 2242 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2243 |
-<priority>0.33</priority> |
|
| 2456 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=빼빼로데이</loc> |
|
| 2457 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2458 |
+ <priority>0.33</priority> |
|
| 2244 | 2459 |
</url> |
| 2245 | 2460 |
<url> |
| 2246 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=크리스마스</loc> |
|
| 2247 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2248 |
-<priority>0.33</priority> |
|
| 2461 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=크리스마스</loc> |
|
| 2462 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2463 |
+ <priority>0.33</priority> |
|
| 2249 | 2464 |
</url> |
| 2250 | 2465 |
<url> |
| 2251 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=성탄절</loc> |
|
| 2252 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2253 |
-<priority>0.33</priority> |
|
| 2466 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=성탄절</loc> |
|
| 2467 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2468 |
+ <priority>0.33</priority> |
|
| 2254 | 2469 |
</url> |
| 2255 | 2470 |
<url> |
| 2256 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=XMAS</loc> |
|
| 2257 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2258 |
-<priority>0.33</priority> |
|
| 2471 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=XMAS</loc> |
|
| 2472 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2473 |
+ <priority>0.33</priority> |
|
| 2259 | 2474 |
</url> |
| 2260 | 2475 |
<url> |
| 2261 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=삼일절</loc> |
|
| 2262 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2263 |
-<priority>0.33</priority> |
|
| 2476 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=삼일절</loc> |
|
| 2477 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2478 |
+ <priority>0.33</priority> |
|
| 2264 | 2479 |
</url> |
| 2265 | 2480 |
<url> |
| 2266 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=삼겹살데이</loc> |
|
| 2267 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2268 |
-<priority>0.33</priority> |
|
| 2481 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=삼겹살데이</loc> |
|
| 2482 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2483 |
+ <priority>0.33</priority> |
|
| 2269 | 2484 |
</url> |
| 2270 | 2485 |
<url> |
| 2271 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=만우절</loc> |
|
| 2272 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2273 |
-<priority>0.33</priority> |
|
| 2486 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=만우절</loc> |
|
| 2487 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2488 |
+ <priority>0.33</priority> |
|
| 2274 | 2489 |
</url> |
| 2275 | 2490 |
<url> |
| 2276 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=근로자의날</loc> |
|
| 2277 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2278 |
-<priority>0.33</priority> |
|
| 2491 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=근로자의날</loc> |
|
| 2492 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2493 |
+ <priority>0.33</priority> |
|
| 2279 | 2494 |
</url> |
| 2280 | 2495 |
<url> |
| 2281 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=어린이날</loc> |
|
| 2282 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2283 |
-<priority>0.33</priority> |
|
| 2496 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=어린이날</loc> |
|
| 2497 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2498 |
+ <priority>0.33</priority> |
|
| 2284 | 2499 |
</url> |
| 2285 | 2500 |
<url> |
| 2286 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=어버이날</loc> |
|
| 2287 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2288 |
-<priority>0.33</priority> |
|
| 2501 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=어버이날</loc> |
|
| 2502 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2503 |
+ <priority>0.33</priority> |
|
| 2289 | 2504 |
</url> |
| 2290 | 2505 |
<url> |
| 2291 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=감사</loc> |
|
| 2292 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2293 |
-<priority>0.33</priority> |
|
| 2506 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=감사</loc> |
|
| 2507 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2508 |
+ <priority>0.33</priority> |
|
| 2294 | 2509 |
</url> |
| 2295 | 2510 |
<url> |
| 2296 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=로즈데이</loc> |
|
| 2297 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2298 |
-<priority>0.33</priority> |
|
| 2511 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=로즈데이</loc> |
|
| 2512 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2513 |
+ <priority>0.33</priority> |
|
| 2299 | 2514 |
</url> |
| 2300 | 2515 |
<url> |
| 2301 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=스승의날</loc> |
|
| 2302 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2303 |
-<priority>0.33</priority> |
|
| 2516 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=스승의날</loc> |
|
| 2517 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2518 |
+ <priority>0.33</priority> |
|
| 2304 | 2519 |
</url> |
| 2305 | 2520 |
<url> |
| 2306 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=성년의날</loc> |
|
| 2307 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2308 |
-<priority>0.33</priority> |
|
| 2521 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=성년의날</loc> |
|
| 2522 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2523 |
+ <priority>0.33</priority> |
|
| 2309 | 2524 |
</url> |
| 2310 | 2525 |
<url> |
| 2311 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=현충일</loc> |
|
| 2312 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2313 |
-<priority>0.33</priority> |
|
| 2526 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=현충일</loc> |
|
| 2527 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2528 |
+ <priority>0.33</priority> |
|
| 2314 | 2529 |
</url> |
| 2315 | 2530 |
<url> |
| 2316 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=호국보훈의달</loc> |
|
| 2317 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2318 |
-<priority>0.33</priority> |
|
| 2531 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=호국보훈의달</loc> |
|
| 2532 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2533 |
+ <priority>0.33</priority> |
|
| 2319 | 2534 |
</url> |
| 2320 | 2535 |
<url> |
| 2321 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=명절</loc> |
|
| 2322 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2323 |
-<priority>0.33</priority> |
|
| 2536 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=명절</loc> |
|
| 2537 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2538 |
+ <priority>0.33</priority> |
|
| 2324 | 2539 |
</url> |
| 2325 | 2540 |
<url> |
| 2326 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=연시</loc> |
|
| 2327 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2328 |
-<priority>0.33</priority> |
|
| 2541 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=연시</loc> |
|
| 2542 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2543 |
+ <priority>0.33</priority> |
|
| 2329 | 2544 |
</url> |
| 2330 | 2545 |
<url> |
| 2331 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=연말연시</loc> |
|
| 2332 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2333 |
-<priority>0.33</priority> |
|
| 2546 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=연말연시</loc> |
|
| 2547 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2548 |
+ <priority>0.33</priority> |
|
| 2334 | 2549 |
</url> |
| 2335 | 2550 |
<url> |
| 2336 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=설날</loc> |
|
| 2337 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2338 |
-<priority>0.33</priority> |
|
| 2551 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=설날</loc> |
|
| 2552 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2553 |
+ <priority>0.33</priority> |
|
| 2339 | 2554 |
</url> |
| 2340 | 2555 |
<url> |
| 2341 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=새해</loc> |
|
| 2342 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2343 |
-<priority>0.33</priority> |
|
| 2556 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=새해</loc> |
|
| 2557 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2558 |
+ <priority>0.33</priority> |
|
| 2344 | 2559 |
</url> |
| 2345 | 2560 |
<url> |
| 2346 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=근하신년</loc> |
|
| 2347 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2348 |
-<priority>0.33</priority> |
|
| 2561 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=근하신년</loc> |
|
| 2562 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2563 |
+ <priority>0.33</priority> |
|
| 2349 | 2564 |
</url> |
| 2350 | 2565 |
<url> |
| 2351 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=대보름</loc> |
|
| 2352 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2353 |
-<priority>0.33</priority> |
|
| 2566 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=대보름</loc> |
|
| 2567 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2568 |
+ <priority>0.33</priority> |
|
| 2354 | 2569 |
</url> |
| 2355 | 2570 |
<url> |
| 2356 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=정월대보름</loc> |
|
| 2357 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2358 |
-<priority>0.33</priority> |
|
| 2571 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=정월대보름</loc> |
|
| 2572 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2573 |
+ <priority>0.33</priority> |
|
| 2359 | 2574 |
</url> |
| 2360 | 2575 |
<url> |
| 2361 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=단오</loc> |
|
| 2362 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2363 |
-<priority>0.33</priority> |
|
| 2576 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=단오</loc> |
|
| 2577 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2578 |
+ <priority>0.33</priority> |
|
| 2364 | 2579 |
</url> |
| 2365 | 2580 |
<url> |
| 2366 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=인사말</loc> |
|
| 2367 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2368 |
-<priority>0.33</priority> |
|
| 2581 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=인사말</loc> |
|
| 2582 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2583 |
+ <priority>0.33</priority> |
|
| 2369 | 2584 |
</url> |
| 2370 | 2585 |
<url> |
| 2371 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=결혼</loc> |
|
| 2372 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2373 |
-<priority>0.33</priority> |
|
| 2586 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=결혼</loc> |
|
| 2587 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2588 |
+ <priority>0.33</priority> |
|
| 2374 | 2589 |
</url> |
| 2375 | 2590 |
<url> |
| 2376 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=초대</loc> |
|
| 2377 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2378 |
-<priority>0.33</priority> |
|
| 2591 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=초대</loc> |
|
| 2592 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2593 |
+ <priority>0.33</priority> |
|
| 2379 | 2594 |
</url> |
| 2380 | 2595 |
<url> |
| 2381 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=결혼초대</loc> |
|
| 2382 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2383 |
-<priority>0.33</priority> |
|
| 2596 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=결혼초대</loc> |
|
| 2597 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2598 |
+ <priority>0.33</priority> |
|
| 2384 | 2599 |
</url> |
| 2385 | 2600 |
<url> |
| 2386 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=축하</loc> |
|
| 2387 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2388 |
-<priority>0.33</priority> |
|
| 2601 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=축하</loc> |
|
| 2602 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2603 |
+ <priority>0.33</priority> |
|
| 2389 | 2604 |
</url> |
| 2390 | 2605 |
<url> |
| 2391 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=결혼축하</loc> |
|
| 2392 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2393 |
-<priority>0.33</priority> |
|
| 2606 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=결혼축하</loc> |
|
| 2607 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2608 |
+ <priority>0.33</priority> |
|
| 2394 | 2609 |
</url> |
| 2395 | 2610 |
<url> |
| 2396 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=결혼감사</loc> |
|
| 2397 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2398 |
-<priority>0.33</priority> |
|
| 2611 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=결혼감사</loc> |
|
| 2612 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2613 |
+ <priority>0.33</priority> |
|
| 2399 | 2614 |
</url> |
| 2400 | 2615 |
<url> |
| 2401 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=돌잔치</loc> |
|
| 2402 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2403 |
-<priority>0.33</priority> |
|
| 2616 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=돌잔치</loc> |
|
| 2617 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2618 |
+ <priority>0.33</priority> |
|
| 2404 | 2619 |
</url> |
| 2405 | 2620 |
<url> |
| 2406 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=돌잔치초대</loc> |
|
| 2407 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2408 |
-<priority>0.33</priority> |
|
| 2621 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=돌잔치초대</loc> |
|
| 2622 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2623 |
+ <priority>0.33</priority> |
|
| 2409 | 2624 |
</url> |
| 2410 | 2625 |
<url> |
| 2411 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=돌잔치축하</loc> |
|
| 2412 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2413 |
-<priority>0.33</priority> |
|
| 2626 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=돌잔치축하</loc> |
|
| 2627 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2628 |
+ <priority>0.33</priority> |
|
| 2414 | 2629 |
</url> |
| 2415 | 2630 |
<url> |
| 2416 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=돌잔치감사</loc> |
|
| 2417 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2418 |
-<priority>0.33</priority> |
|
| 2631 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=돌잔치감사</loc> |
|
| 2632 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2633 |
+ <priority>0.33</priority> |
|
| 2419 | 2634 |
</url> |
| 2420 | 2635 |
<url> |
| 2421 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=생일</loc> |
|
| 2422 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2423 |
-<priority>0.33</priority> |
|
| 2636 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=생일</loc> |
|
| 2637 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2638 |
+ <priority>0.33</priority> |
|
| 2424 | 2639 |
</url> |
| 2425 | 2640 |
<url> |
| 2426 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=경조사</loc> |
|
| 2427 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2428 |
-<priority>0.33</priority> |
|
| 2641 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=경조사</loc> |
|
| 2642 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2643 |
+ <priority>0.33</priority> |
|
| 2429 | 2644 |
</url> |
| 2430 | 2645 |
<url> |
| 2431 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=생신</loc> |
|
| 2432 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2433 |
-<priority>0.33</priority> |
|
| 2646 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=생신</loc> |
|
| 2647 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2648 |
+ <priority>0.33</priority> |
|
| 2434 | 2649 |
</url> |
| 2435 | 2650 |
<url> |
| 2436 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=생일축하</loc> |
|
| 2437 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2438 |
-<priority>0.33</priority> |
|
| 2651 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=생일축하</loc> |
|
| 2652 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2653 |
+ <priority>0.33</priority> |
|
| 2439 | 2654 |
</url> |
| 2440 | 2655 |
<url> |
| 2441 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=환갑</loc> |
|
| 2442 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2443 |
-<priority>0.33</priority> |
|
| 2656 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=환갑</loc> |
|
| 2657 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2658 |
+ <priority>0.33</priority> |
|
| 2444 | 2659 |
</url> |
| 2445 | 2660 |
<url> |
| 2446 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=환갑초대</loc> |
|
| 2447 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2448 |
-<priority>0.33</priority> |
|
| 2661 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=환갑초대</loc> |
|
| 2662 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2663 |
+ <priority>0.33</priority> |
|
| 2449 | 2664 |
</url> |
| 2450 | 2665 |
<url> |
| 2451 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=회갑</loc> |
|
| 2452 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2453 |
-<priority>0.33</priority> |
|
| 2666 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=회갑</loc> |
|
| 2667 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2668 |
+ <priority>0.33</priority> |
|
| 2454 | 2669 |
</url> |
| 2455 | 2670 |
<url> |
| 2456 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=회갑초대</loc> |
|
| 2457 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2458 |
-<priority>0.33</priority> |
|
| 2671 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=회갑초대</loc> |
|
| 2672 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2673 |
+ <priority>0.33</priority> |
|
| 2459 | 2674 |
</url> |
| 2460 | 2675 |
<url> |
| 2461 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=주갑</loc> |
|
| 2462 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2463 |
-<priority>0.33</priority> |
|
| 2676 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=주갑</loc> |
|
| 2677 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2678 |
+ <priority>0.33</priority> |
|
| 2464 | 2679 |
</url> |
| 2465 | 2680 |
<url> |
| 2466 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=주갑초대</loc> |
|
| 2467 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2468 |
-<priority>0.33</priority> |
|
| 2681 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=주갑초대</loc> |
|
| 2682 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2683 |
+ <priority>0.33</priority> |
|
| 2469 | 2684 |
</url> |
| 2470 | 2685 |
<url> |
| 2471 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=고희</loc> |
|
| 2472 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2473 |
-<priority>0.33</priority> |
|
| 2686 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=고희</loc> |
|
| 2687 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2688 |
+ <priority>0.33</priority> |
|
| 2474 | 2689 |
</url> |
| 2475 | 2690 |
<url> |
| 2476 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=고희초대</loc> |
|
| 2477 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2478 |
-<priority>0.33</priority> |
|
| 2691 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=고희초대</loc> |
|
| 2692 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2693 |
+ <priority>0.33</priority> |
|
| 2479 | 2694 |
</url> |
| 2480 | 2695 |
<url> |
| 2481 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=부고</loc> |
|
| 2482 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2483 |
-<priority>0.33</priority> |
|
| 2696 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=부고</loc> |
|
| 2697 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2698 |
+ <priority>0.33</priority> |
|
| 2484 | 2699 |
</url> |
| 2485 | 2700 |
<url> |
| 2486 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=장례</loc> |
|
| 2487 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2488 |
-<priority>0.33</priority> |
|
| 2701 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=장례</loc> |
|
| 2702 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2703 |
+ <priority>0.33</priority> |
|
| 2489 | 2704 |
</url> |
| 2490 | 2705 |
<url> |
| 2491 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=조의</loc> |
|
| 2492 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2493 |
-<priority>0.33</priority> |
|
| 2706 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=조의</loc> |
|
| 2707 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2708 |
+ <priority>0.33</priority> |
|
| 2494 | 2709 |
</url> |
| 2495 | 2710 |
<url> |
| 2496 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=애도</loc> |
|
| 2497 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2498 |
-<priority>0.33</priority> |
|
| 2711 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=애도</loc> |
|
| 2712 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2713 |
+ <priority>0.33</priority> |
|
| 2499 | 2714 |
</url> |
| 2500 | 2715 |
<url> |
| 2501 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=조문</loc> |
|
| 2502 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2503 |
-<priority>0.33</priority> |
|
| 2716 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=조문</loc> |
|
| 2717 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2718 |
+ <priority>0.33</priority> |
|
| 2504 | 2719 |
</url> |
| 2505 | 2720 |
<url> |
| 2506 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=답례</loc> |
|
| 2507 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2508 |
-<priority>0.33</priority> |
|
| 2721 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=답례</loc> |
|
| 2722 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2723 |
+ <priority>0.33</priority> |
|
| 2509 | 2724 |
</url> |
| 2510 | 2725 |
<url> |
| 2511 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=합격</loc> |
|
| 2512 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2513 |
-<priority>0.33</priority> |
|
| 2726 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=합격</loc> |
|
| 2727 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2728 |
+ <priority>0.33</priority> |
|
| 2514 | 2729 |
</url> |
| 2515 | 2730 |
<url> |
| 2516 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=합격축하</loc> |
|
| 2517 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2518 |
-<priority>0.33</priority> |
|
| 2731 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=합격축하</loc> |
|
| 2732 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2733 |
+ <priority>0.33</priority> |
|
| 2519 | 2734 |
</url> |
| 2520 | 2735 |
<url> |
| 2521 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=승진</loc> |
|
| 2522 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2523 |
-<priority>0.33</priority> |
|
| 2736 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=승진</loc> |
|
| 2737 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2738 |
+ <priority>0.33</priority> |
|
| 2524 | 2739 |
</url> |
| 2525 | 2740 |
<url> |
| 2526 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=승진축하</loc> |
|
| 2527 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2528 |
-<priority>0.33</priority> |
|
| 2741 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=승진축하</loc> |
|
| 2742 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2743 |
+ <priority>0.33</priority> |
|
| 2529 | 2744 |
</url> |
| 2530 | 2745 |
<url> |
| 2531 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=격려</loc> |
|
| 2532 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2533 |
-<priority>0.33</priority> |
|
| 2746 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=격려</loc> |
|
| 2747 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2748 |
+ <priority>0.33</priority> |
|
| 2534 | 2749 |
</url> |
| 2535 | 2750 |
<url> |
| 2536 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=위로</loc> |
|
| 2537 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2538 |
-<priority>0.33</priority> |
|
| 2751 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=위로</loc> |
|
| 2752 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2753 |
+ <priority>0.33</priority> |
|
| 2539 | 2754 |
</url> |
| 2540 | 2755 |
<url> |
| 2541 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=응원</loc> |
|
| 2542 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2543 |
-<priority>0.33</priority> |
|
| 2756 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=응원</loc> |
|
| 2757 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2758 |
+ <priority>0.33</priority> |
|
| 2544 | 2759 |
</url> |
| 2545 | 2760 |
<url> |
| 2546 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=수능</loc> |
|
| 2547 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2548 |
-<priority>0.33</priority> |
|
| 2761 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=수능</loc> |
|
| 2762 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2763 |
+ <priority>0.33</priority> |
|
| 2549 | 2764 |
</url> |
| 2550 | 2765 |
<url> |
| 2551 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=모임</loc> |
|
| 2552 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2553 |
-<priority>0.33</priority> |
|
| 2766 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=모임</loc> |
|
| 2767 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2768 |
+ <priority>0.33</priority> |
|
| 2554 | 2769 |
</url> |
| 2555 | 2770 |
<url> |
| 2556 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=행사</loc> |
|
| 2557 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2558 |
-<priority>0.33</priority> |
|
| 2771 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=행사</loc> |
|
| 2772 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2773 |
+ <priority>0.33</priority> |
|
| 2559 | 2774 |
</url> |
| 2560 | 2775 |
<url> |
| 2561 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=친목</loc> |
|
| 2562 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2563 |
-<priority>0.33</priority> |
|
| 2776 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=친목</loc> |
|
| 2777 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2778 |
+ <priority>0.33</priority> |
|
| 2564 | 2779 |
</url> |
| 2565 | 2780 |
<url> |
| 2566 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=송년</loc> |
|
| 2567 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2568 |
-<priority>0.33</priority> |
|
| 2781 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=송년</loc> |
|
| 2782 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2783 |
+ <priority>0.33</priority> |
|
| 2569 | 2784 |
</url> |
| 2570 | 2785 |
<url> |
| 2571 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=송년회</loc> |
|
| 2572 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2573 |
-<priority>0.33</priority> |
|
| 2786 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=송년회</loc> |
|
| 2787 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2788 |
+ <priority>0.33</priority> |
|
| 2574 | 2789 |
</url> |
| 2575 | 2790 |
<url> |
| 2576 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=동창모임</loc> |
|
| 2577 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2578 |
-<priority>0.33</priority> |
|
| 2791 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=동창모임</loc> |
|
| 2792 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2793 |
+ <priority>0.33</priority> |
|
| 2579 | 2794 |
</url> |
| 2580 | 2795 |
<url> |
| 2581 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=산악회</loc> |
|
| 2582 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2583 |
-<priority>0.33</priority> |
|
| 2796 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=산악회</loc> |
|
| 2797 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2798 |
+ <priority>0.33</priority> |
|
| 2584 | 2799 |
</url> |
| 2585 | 2800 |
<url> |
| 2586 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=워크숍</loc> |
|
| 2587 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2588 |
-<priority>0.33</priority> |
|
| 2801 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=워크숍</loc> |
|
| 2802 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2803 |
+ <priority>0.33</priority> |
|
| 2589 | 2804 |
</url> |
| 2590 | 2805 |
<url> |
| 2591 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=야유회</loc> |
|
| 2592 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2593 |
-<priority>0.33</priority> |
|
| 2806 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=야유회</loc> |
|
| 2807 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2808 |
+ <priority>0.33</priority> |
|
| 2594 | 2809 |
</url> |
| 2595 | 2810 |
<url> |
| 2596 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=라운딩</loc> |
|
| 2597 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2598 |
-<priority>0.33</priority> |
|
| 2811 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=라운딩</loc> |
|
| 2812 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2813 |
+ <priority>0.33</priority> |
|
| 2599 | 2814 |
</url> |
| 2600 | 2815 |
<url> |
| 2601 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=동호회</loc> |
|
| 2602 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2603 |
-<priority>0.33</priority> |
|
| 2816 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=동호회</loc> |
|
| 2817 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2818 |
+ <priority>0.33</priority> |
|
| 2604 | 2819 |
</url> |
| 2605 | 2820 |
<url> |
| 2606 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=감성</loc> |
|
| 2607 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2608 |
-<priority>0.33</priority> |
|
| 2821 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=감성</loc> |
|
| 2822 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2823 |
+ <priority>0.33</priority> |
|
| 2609 | 2824 |
</url> |
| 2610 | 2825 |
<url> |
| 2611 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=코믹</loc> |
|
| 2612 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2613 |
-<priority>0.33</priority> |
|
| 2826 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=코믹</loc> |
|
| 2827 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2828 |
+ <priority>0.33</priority> |
|
| 2614 | 2829 |
</url> |
| 2615 | 2830 |
<url> |
| 2616 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=연락</loc> |
|
| 2617 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2618 |
-<priority>0.33</priority> |
|
| 2831 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=연락</loc> |
|
| 2832 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2833 |
+ <priority>0.33</priority> |
|
| 2619 | 2834 |
</url> |
| 2620 | 2835 |
<url> |
| 2621 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=영화</loc> |
|
| 2622 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2623 |
-<priority>0.33</priority> |
|
| 2836 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=영화</loc> |
|
| 2837 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2838 |
+ <priority>0.33</priority> |
|
| 2624 | 2839 |
</url> |
| 2625 | 2840 |
<url> |
| 2626 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=경사</loc> |
|
| 2627 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2628 |
-<priority>0.33</priority> |
|
| 2841 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=경사</loc> |
|
| 2842 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2843 |
+ <priority>0.33</priority> |
|
| 2629 | 2844 |
</url> |
| 2630 | 2845 |
<url> |
| 2631 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=좋은글</loc> |
|
| 2632 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2633 |
-<priority>0.33</priority> |
|
| 2846 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=좋은글</loc> |
|
| 2847 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2848 |
+ <priority>0.33</priority> |
|
| 2634 | 2849 |
</url> |
| 2635 | 2850 |
<url> |
| 2636 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=명언</loc> |
|
| 2637 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2638 |
-<priority>0.33</priority> |
|
| 2851 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=명언</loc> |
|
| 2852 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2853 |
+ <priority>0.33</priority> |
|
| 2639 | 2854 |
</url> |
| 2640 | 2855 |
<url> |
| 2641 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=속담</loc> |
|
| 2642 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2643 |
-<priority>0.33</priority> |
|
| 2856 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=속담</loc> |
|
| 2857 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2858 |
+ <priority>0.33</priority> |
|
| 2644 | 2859 |
</url> |
| 2645 | 2860 |
<url> |
| 2646 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=종교</loc> |
|
| 2647 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2648 |
-<priority>0.33</priority> |
|
| 2861 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=종교</loc> |
|
| 2862 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2863 |
+ <priority>0.33</priority> |
|
| 2649 | 2864 |
</url> |
| 2650 | 2865 |
<url> |
| 2651 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=석가탄신일</loc> |
|
| 2652 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2653 |
-<priority>0.33</priority> |
|
| 2866 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=석가탄신일</loc> |
|
| 2867 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2868 |
+ <priority>0.33</priority> |
|
| 2654 | 2869 |
</url> |
| 2655 | 2870 |
<url> |
| 2656 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=부활절</loc> |
|
| 2657 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2658 |
-<priority>0.33</priority> |
|
| 2871 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=부활절</loc> |
|
| 2872 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2873 |
+ <priority>0.33</priority> |
|
| 2659 | 2874 |
</url> |
| 2660 | 2875 |
<url> |
| 2661 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=예배</loc> |
|
| 2662 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2663 |
-<priority>0.33</priority> |
|
| 2876 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=예배</loc> |
|
| 2877 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2878 |
+ <priority>0.33</priority> |
|
| 2664 | 2879 |
</url> |
| 2665 | 2880 |
<url> |
| 2666 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=운세</loc> |
|
| 2667 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2668 |
-<priority>0.33</priority> |
|
| 2881 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=운세</loc> |
|
| 2882 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2883 |
+ <priority>0.33</priority> |
|
| 2669 | 2884 |
</url> |
| 2670 | 2885 |
<url> |
| 2671 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=별자리</loc> |
|
| 2672 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2673 |
-<priority>0.33</priority> |
|
| 2886 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=별자리</loc> |
|
| 2887 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2888 |
+ <priority>0.33</priority> |
|
| 2674 | 2889 |
</url> |
| 2675 | 2890 |
<url> |
| 2676 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=선거</loc> |
|
| 2677 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2678 |
-<priority>0.33</priority> |
|
| 2891 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=선거</loc> |
|
| 2892 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2893 |
+ <priority>0.33</priority> |
|
| 2679 | 2894 |
</url> |
| 2680 | 2895 |
<url> |
| 2681 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=투표</loc> |
|
| 2682 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2683 |
-<priority>0.33</priority> |
|
| 2896 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=투표</loc> |
|
| 2897 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2898 |
+ <priority>0.33</priority> |
|
| 2684 | 2899 |
</url> |
| 2685 | 2900 |
<url> |
| 2686 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=사전투표</loc> |
|
| 2687 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2688 |
-<priority>0.33</priority> |
|
| 2901 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=사전투표</loc> |
|
| 2902 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2903 |
+ <priority>0.33</priority> |
|
| 2689 | 2904 |
</url> |
| 2690 | 2905 |
<url> |
| 2691 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=복날</loc> |
|
| 2692 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2693 |
-<priority>0.33</priority> |
|
| 2906 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=복날</loc> |
|
| 2907 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2908 |
+ <priority>0.33</priority> |
|
| 2694 | 2909 |
</url> |
| 2695 | 2910 |
<url> |
| 2696 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=광복절</loc> |
|
| 2697 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2698 |
-<priority>0.33</priority> |
|
| 2911 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=광복절</loc> |
|
| 2912 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2913 |
+ <priority>0.33</priority> |
|
| 2699 | 2914 |
</url> |
| 2700 | 2915 |
<url> |
| 2701 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=추석</loc> |
|
| 2702 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2703 |
-<priority>0.33</priority> |
|
| 2916 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=추석</loc> |
|
| 2917 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2918 |
+ <priority>0.33</priority> |
|
| 2704 | 2919 |
</url> |
| 2705 | 2920 |
<url> |
| 2706 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=한가위</loc> |
|
| 2707 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2708 |
-<priority>0.33</priority> |
|
| 2921 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=한가위</loc> |
|
| 2922 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2923 |
+ <priority>0.33</priority> |
|
| 2709 | 2924 |
</url> |
| 2710 | 2925 |
<url> |
| 2711 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=중추절</loc> |
|
| 2712 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2713 |
-<priority>0.33</priority> |
|
| 2926 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=중추절</loc> |
|
| 2927 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2928 |
+ <priority>0.33</priority> |
|
| 2714 | 2929 |
</url> |
| 2715 | 2930 |
<url> |
| 2716 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=월요일</loc> |
|
| 2717 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2718 |
-<priority>0.33</priority> |
|
| 2931 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=월요일</loc> |
|
| 2932 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2933 |
+ <priority>0.33</priority> |
|
| 2719 | 2934 |
</url> |
| 2720 | 2935 |
<url> |
| 2721 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=월요일</loc> |
|
| 2722 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2723 |
-<priority>0.33</priority> |
|
| 2936 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=월요일</loc> |
|
| 2937 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2938 |
+ <priority>0.33</priority> |
|
| 2724 | 2939 |
</url> |
| 2725 | 2940 |
<url> |
| 2726 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=화요일</loc> |
|
| 2727 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2728 |
-<priority>0.33</priority> |
|
| 2941 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=화요일</loc> |
|
| 2942 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2943 |
+ <priority>0.33</priority> |
|
| 2729 | 2944 |
</url> |
| 2730 | 2945 |
<url> |
| 2731 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=화요일</loc> |
|
| 2732 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2733 |
-<priority>0.33</priority> |
|
| 2946 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=화요일</loc> |
|
| 2947 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2948 |
+ <priority>0.33</priority> |
|
| 2734 | 2949 |
</url> |
| 2735 | 2950 |
<url> |
| 2736 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=수요일</loc> |
|
| 2737 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2738 |
-<priority>0.33</priority> |
|
| 2951 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=수요일</loc> |
|
| 2952 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2953 |
+ <priority>0.33</priority> |
|
| 2739 | 2954 |
</url> |
| 2740 | 2955 |
<url> |
| 2741 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=수요일</loc> |
|
| 2742 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2743 |
-<priority>0.33</priority> |
|
| 2956 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=수요일</loc> |
|
| 2957 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2958 |
+ <priority>0.33</priority> |
|
| 2744 | 2959 |
</url> |
| 2745 | 2960 |
<url> |
| 2746 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=목요일</loc> |
|
| 2747 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2748 |
-<priority>0.33</priority> |
|
| 2961 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=목요일</loc> |
|
| 2962 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2963 |
+ <priority>0.33</priority> |
|
| 2749 | 2964 |
</url> |
| 2750 | 2965 |
<url> |
| 2751 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=목요일</loc> |
|
| 2752 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2753 |
-<priority>0.33</priority> |
|
| 2966 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=목요일</loc> |
|
| 2967 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2968 |
+ <priority>0.33</priority> |
|
| 2754 | 2969 |
</url> |
| 2755 | 2970 |
<url> |
| 2756 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=금요일</loc> |
|
| 2757 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2758 |
-<priority>0.33</priority> |
|
| 2971 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=금요일</loc> |
|
| 2972 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2973 |
+ <priority>0.33</priority> |
|
| 2759 | 2974 |
</url> |
| 2760 | 2975 |
<url> |
| 2761 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=금요일</loc> |
|
| 2762 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2763 |
-<priority>0.33</priority> |
|
| 2976 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=금요일</loc> |
|
| 2977 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2978 |
+ <priority>0.33</priority> |
|
| 2764 | 2979 |
</url> |
| 2765 | 2980 |
<url> |
| 2766 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=토요일</loc> |
|
| 2767 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2768 |
-<priority>0.33</priority> |
|
| 2981 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=토요일</loc> |
|
| 2982 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2983 |
+ <priority>0.33</priority> |
|
| 2769 | 2984 |
</url> |
| 2770 | 2985 |
<url> |
| 2771 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=토요일</loc> |
|
| 2772 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2773 |
-<priority>0.33</priority> |
|
| 2986 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=토요일</loc> |
|
| 2987 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2988 |
+ <priority>0.33</priority> |
|
| 2774 | 2989 |
</url> |
| 2775 | 2990 |
<url> |
| 2776 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=일요일</loc> |
|
| 2777 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2778 |
-<priority>0.33</priority> |
|
| 2991 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&headerMsgSearchFlag=Y&searchKeyword=일요일</loc> |
|
| 2992 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2993 |
+ <priority>0.33</priority> |
|
| 2779 | 2994 |
</url> |
| 2780 | 2995 |
<url> |
| 2781 |
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=일요일</loc> |
|
| 2782 |
-<lastmod>2022-09-29T06:32:20+00:00</lastmod> |
|
| 2783 |
-<priority>0.33</priority> |
|
| 2996 |
+ <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&headerMsgSearchFlag=Y&searchKeyword=일요일</loc> |
|
| 2997 |
+ <lastmod>2023-10-23T06:28:54+00:00</lastmod> |
|
| 2998 |
+ <priority>0.33</priority> |
|
| 2784 | 2999 |
</url> |
| 2785 | 3000 |
</urlset>(No newline at end of file) |
Add a comment
Delete comment
Once you delete this comment, you won't be able to recover it. Are you sure you want to delete this comment?