휴면회원으로 지정 기준날짜 변경

This commit is contained in:
itn 2023-07-25 13:37:37 +09:00
parent cd81aa9f9d
commit db9bedf390

View File

@ -166,7 +166,7 @@ public class MailTemplateServiceImpl extends EgovAbstractServiceImpl implements
public void setMemberDormantUpdate() throws Exception { public void setMemberDormantUpdate() throws Exception {
// 로그인 안한지 1년되기 한달전 휴면회원 전환 안내메일 대상자 // 로그인 안한지 1년되기 한달전 휴면회원 전환 안내메일 대상자
MberManageVO mberManageVO = new MberManageVO(); MberManageVO mberManageVO = new MberManageVO();
mberManageVO.setDormantDay(200); mberManageVO.setDormantDay(365);
List<MberManageVO> mberDormantList = mberManageDAO.selectMberDormantList(mberManageVO); List<MberManageVO> mberDormantList = mberManageDAO.selectMberDormantList(mberManageVO);
for (MberManageVO item : mberDormantList) { for (MberManageVO item : mberDormantList) {