작업현황관리 수정

This commit is contained in:
DanielLee
2026-01-05 11:41:50 +09:00
parent 88cf9a4487
commit 67eb99e243
6 changed files with 71 additions and 36 deletions

View File

@@ -113,5 +113,17 @@ public class WorkerStatsDto {
@Schema(description = "작업자 목록")
private List<WorkerStatistics> workers;
@Schema(description = "현재 페이지 번호 (0부터 시작)")
private Integer currentPage;
@Schema(description = "페이지 크기")
private Integer pageSize;
@Schema(description = "전체 데이터 수")
private Long totalElements;
@Schema(description = "전체 페이지 수")
private Integer totalPages;
}
}