test를 위해 지연 시간 5분으로 단축 30->5

This commit is contained in:
hehihoho3@gmail.com 2024-12-26 15:25:32 +09:00
parent 3a31b56048
commit 1f42313cd1
2 changed files with 6 additions and 1 deletions

View File

@ -355,7 +355,9 @@ public final class MsgSendUtils {
// 지연 여부 처리
if ("Y".equalsIgnoreCase(mjonMsgVO.getDelayYn())
&& !hasPerformedDelayYn) {
calendar.add(Calendar.MINUTE, 30); // 모든 시간을 30분 뒤로 미룸
// calendar.add(Calendar.MINUTE, 30); // 모든 시간을 30분 뒤로 미룸
// TEST
calendar.add(Calendar.MINUTE, 5); // 모든 시간을 30분 뒤로 미룸
hasPerformedDelayYn = true;
}

View File

@ -1228,6 +1228,9 @@ public class EgovUserManageController {
List<MjonMsgSentVO> mjonMsgSentList = mberManageService.selectMberMsgSentLatestListNew20240320(userId);
model.addAttribute("mjonMsgSentList", mjonMsgSentList);
System.out.println("==========================================================================================");
System.out.println("==========================================================================================");
System.out.println("==========================================================================================");
//최근 발송 문자 내용 불러오기 - 최근 3개 내역만(에약)
List<MjonMsgSentVO> mjonMsgSentList2 = mberManageService.selectMberMsgSentLatestList2(userId);
model.addAttribute("mjonMsgSentList2", mjonMsgSentList2);