From a86ee22ddfb5772e3f0e7f65ddda48227bf73016 Mon Sep 17 00:00:00 2001 From: "gayoun.park" Date: Thu, 22 Jan 2026 20:23:05 +0900 Subject: [PATCH] =?UTF-8?q?=EC=97=90=EB=9F=AC=20=EC=9D=B4=EB=B2=A4?= =?UTF-8?q?=ED=8A=B8=20=ED=83=80=EC=9E=85=20=EC=B6=94=EA=B0=80?= 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 ff72fb73..5818fe5a 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 @@ -488,7 +488,7 @@ public class AuditLogRepositoryImpl extends QuerydslRepositorySupport private NumberExpression readCount() { return new CaseBuilder() - .when(auditLogEntity.eventType.eq(EventType.READ)) + .when(auditLogEntity.eventType.in(EventType.LIST, EventType.DETAIL)) .then(1) .otherwise(0) .sum(); @@ -496,7 +496,7 @@ public class AuditLogRepositoryImpl extends QuerydslRepositorySupport private NumberExpression cudCount() { return new CaseBuilder() - .when(auditLogEntity.eventType.in(EventType.CREATE, EventType.UPDATE, EventType.DELETE)) + .when(auditLogEntity.eventType.in(EventType.ADDED, EventType.MODIFIED, EventType.REMOVE)) .then(1) .otherwise(0) .sum(); @@ -504,7 +504,7 @@ public class AuditLogRepositoryImpl extends QuerydslRepositorySupport private NumberExpression printCount() { return new CaseBuilder() - .when(auditLogEntity.eventType.eq(EventType.PRINT)) + .when(auditLogEntity.eventType.eq(EventType.OTHER)) .then(1) .otherwise(0) .sum();