searchReq 주석포함

This commit is contained in:
Harry M. You
2025-12-03 10:17:54 +09:00
parent f35021b543
commit 13e6107a7e

View File

@@ -20,10 +20,19 @@ public class MapSheetMngDto {
public static class searchReq {
// 페이징 파라미터
@Schema(description = "페이지 번호 (0부터 시작) ", example = "0")
private int page = 0;
@Schema(description = "페이지 크기", example = "20")
private int size = 20;
private String sort;
//@Schema(description = "정렬", example = "20")
//private String sort;
@Schema(description = "검색어", example = "부산3959")
private String searchValue;
@Schema(description = "년도", example = "2025")
private Integer mngYyyy;
public Pageable toPageable() {