From 040aabe95e252f25d11b693555e4cf1df89f8218 Mon Sep 17 00:00:00 2001 From: Moon Date: Mon, 5 Jan 2026 12:41:07 +0900 Subject: [PATCH] =?UTF-8?q?=EC=9E=91=EC=97=85=ED=98=84=ED=99=A9=20DTO?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../kamcoback/label/dto/WorkerStatsDto.java | 40 ++++++------------- 1 file changed, 13 insertions(+), 27 deletions(-) diff --git a/src/main/java/com/kamco/cd/kamcoback/label/dto/WorkerStatsDto.java b/src/main/java/com/kamco/cd/kamcoback/label/dto/WorkerStatsDto.java index efca81b2..6df63cf0 100644 --- a/src/main/java/com/kamco/cd/kamcoback/label/dto/WorkerStatsDto.java +++ b/src/main/java/com/kamco/cd/kamcoback/label/dto/WorkerStatsDto.java @@ -31,42 +31,28 @@ public class WorkerStatsDto { private Long totalAssigned; @Schema(description = "완료 건수") - private Long completed; + private Long doneCnt; @Schema(description = "스킵 건수") - private Long skipped; + private Long skipCnt; @Schema(description = "남은 작업 건수") - private Long remaining; - - @Schema(description = "최근 3일간 처리 이력") - private DailyHistory history; - - @Schema(description = "작업 정체 여부 (3일간 실적이 저조하면 true)") - private Boolean isStagnated; - } - - @Getter - @Setter - @Builder - @NoArgsConstructor - @AllArgsConstructor - @Schema(description = "최근 3일간 일일 처리 이력") - public static class DailyHistory { - - @Schema(description = "1일 전 (어제) 처리량") - private Long day1Ago; - - @Schema(description = "2일 전 처리량") - private Long day2Ago; + private Long remainingCnt; @Schema(description = "3일 전 처리량") - private Long day3Ago; + private Long day3AgoDoneCnt; - @Schema(description = "3일 평균 처리량") - private Long average; + @Schema(description = "2일 전 처리량") + private Long day2AgoDoneCnt; + + @Schema(description = "1일 전 처리량") + private Long day1AgoDoneCnt; + + //@Schema(description = "작업 정체 여부 (3일간 실적이 저조하면 true)") + //private Boolean isStagnated; } + @Getter @Setter @Builder