test를 위해 지연 시간 5분으로 단축 30->5
This commit is contained in:
parent
3a31b56048
commit
1f42313cd1
@ -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;
|
||||
}
|
||||
|
||||
|
||||
@ -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);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user