修复邮件日志 sendTime 类型不一致(应该为 LocalDateTime)
parent
5d0a1a6fb5
commit
6d13b43593
|
@ -11,6 +11,7 @@ import org.springframework.stereotype.Service;
|
|||
import org.springframework.validation.annotation.Validated;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
import java.time.LocalDateTime;
|
||||
import java.util.Date;
|
||||
import java.util.Map;
|
||||
import java.util.Objects;
|
||||
|
@ -65,12 +66,12 @@ public class MailLogServiceImpl implements MailLogService {
|
|||
public void updateMailSendResult(Long logId, String messageId, Exception exception) {
|
||||
// 1. 成功
|
||||
if (exception == null) {
|
||||
mailLogMapper.updateById(new MailLogDO().setId(logId).setSendTime(new Date())
|
||||
mailLogMapper.updateById(new MailLogDO().setId(logId).setSendTime(LocalDateTime.now())
|
||||
.setSendStatus(MailSendStatusEnum.SUCCESS.getStatus()).setSendMessageId(messageId));
|
||||
return;
|
||||
}
|
||||
// 2. 失败
|
||||
mailLogMapper.updateById(new MailLogDO().setId(logId).setSendTime(new Date())
|
||||
mailLogMapper.updateById(new MailLogDO().setId(logId).setSendTime(LocalDateTime.now())
|
||||
.setSendStatus(MailSendStatusEnum.FAILURE.getStatus()).setSendException(getRootCauseMessage(exception)));
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue