로그관리 - 일자별 상세에도 시,분까지 표기 추가

This commit is contained in:
2026-01-26 14:31:47 +09:00
parent b55d0602eb
commit 193d38e66d
2 changed files with 7 additions and 1 deletions

View File

@@ -148,6 +148,7 @@ public class AuditLogDto {
private final String userName;
private final String loginId;
private final String menuName;
private final String logDateTime;
public DailyDetail(
Long logId,
@@ -155,11 +156,13 @@ public class AuditLogDto {
String loginId,
String menuName,
EventType eventType,
String logDateTime,
LogDetail detail) {
super(logId, eventType, detail);
this.userName = userName;
this.loginId = loginId;
this.menuName = menuName;
this.logDateTime = logDateTime;
}
}