[KC-168] 라벨링 툴 > 목록 - 기본 페이징 API

This commit is contained in:
2026-01-13 13:29:37 +09:00
parent 0155950e4f
commit 1547645929
7 changed files with 145 additions and 9 deletions

View File

@@ -382,4 +382,16 @@ public class TrainingDataLabelDto {
@Schema(description = "오늘 완료 건수", example = "0")
private Long todayCnt;
}
@Schema(name = "DefaultPaging", description = "페이징 기본 number, uuid 전달")
@Getter
@Setter
@Builder
@NoArgsConstructor
@AllArgsConstructor
public static class DefaultPaging {
private int page;
private UUID assignmentUid;
}
}