Merge remote-tracking branch 'origin/feat/dev_251201' into feat/dev_251201

This commit is contained in:
DanielLee
2026-01-05 12:42:19 +09:00

View File

@@ -52,42 +52,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