From 07b80b1eddc3418de629e233547b974a04bb8076 Mon Sep 17 00:00:00 2001 From: "gayoun.park" Date: Mon, 26 Jan 2026 14:13:13 +0900 Subject: [PATCH] =?UTF-8?q?=EB=A1=9C=EA=B7=B8=EA=B4=80=EB=A6=AC=20-=20?= =?UTF-8?q?=EC=83=81=EC=84=B8=20=EC=8B=9C=EA=B0=84=EB=8C=80=20=EC=8B=9C?= =?UTF-8?q?=EB=B6=84=EA=B9=8C=EC=A7=80=20=EB=82=98=EC=98=A4=EA=B2=8C=20?= =?UTF-8?q?=ED=95=98=EA=B8=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../postgres/repository/log/AuditLogRepositoryImpl.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/com/kamco/cd/kamcoback/postgres/repository/log/AuditLogRepositoryImpl.java b/src/main/java/com/kamco/cd/kamcoback/postgres/repository/log/AuditLogRepositoryImpl.java index 3dc3c6bc..03d1050b 100644 --- a/src/main/java/com/kamco/cd/kamcoback/postgres/repository/log/AuditLogRepositoryImpl.java +++ b/src/main/java/com/kamco/cd/kamcoback/postgres/repository/log/AuditLogRepositoryImpl.java @@ -305,8 +305,8 @@ public class AuditLogRepositoryImpl extends QuerydslRepositorySupport AuditLogDto.MenuDetail.class, auditLogEntity.id.as("logId"), Expressions.stringTemplate( - "to_char({0}, 'YYYY-MM-DD')", auditLogEntity.createdDate) - .as("logDateTime"), // ?? + "to_char({0}, 'YYYY-MM-DD HH:mm')", auditLogEntity.createdDate) + .as("logDateTime"), memberEntity.name.as("userName"), memberEntity.employeeNo.as("loginId"), auditLogEntity.eventType.as("eventType"), @@ -372,7 +372,7 @@ public class AuditLogRepositoryImpl extends QuerydslRepositorySupport AuditLogDto.UserDetail.class, auditLogEntity.id.as("logId"), Expressions.stringTemplate( - "to_char({0}, 'YYYY-MM-DD')", auditLogEntity.createdDate) + "to_char({0}, 'YYYY-MM-DD HH:mm')", auditLogEntity.createdDate) .as("logDateTime"), menuEntity.menuNm.as("menuName"), auditLogEntity.eventType.as("eventType"),