|
|
@ -18,11 +18,7 @@ public interface Pageable {
|
|
|
|
* @return 요청 페이지 번호
|
|
|
|
* @return 요청 페이지 번호
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
static int getPageNum(Map<String, ?> map) {
|
|
|
|
static int getPageNum(Map<String, ?> map) {
|
|
|
|
try {
|
|
|
|
return Convert.toInt(map != null && map.containsKey("pageNum") ? map.get("pageNum") : null);
|
|
|
|
return Convert.toInt(map.get("pageNum"));
|
|
|
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**조회 요청 정보 객체가 Map일 경우 한 번에 가지고 올 결과값들의 갯수를 반환한다.<br />
|
|
|
|
/**조회 요청 정보 객체가 Map일 경우 한 번에 가지고 올 결과값들의 갯수를 반환한다.<br />
|
|
|
@ -31,11 +27,7 @@ public interface Pageable {
|
|
|
|
* @return 요청 한 번에 가지고 올 결과값들의 갯수
|
|
|
|
* @return 요청 한 번에 가지고 올 결과값들의 갯수
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
static int getFetchSize(Map<String, ?> map) {
|
|
|
|
static int getFetchSize(Map<String, ?> map) {
|
|
|
|
try {
|
|
|
|
return Convert.toInt(map != null && map.containsKey("fetchSize") ? map.get("fetchSize") : null);
|
|
|
|
return Convert.toInt(map.get("fetchSize"));
|
|
|
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**조회 결과 객체가 Map일 경우 조회 결과의 전체 갯수를 반환한다.<br />
|
|
|
|
/**조회 결과 객체가 Map일 경우 조회 결과의 전체 갯수를 반환한다.<br />
|
|
|
|