Criteria.java
페이지 정보
본문
package com.pkt.model;
import lombok.Data;
@Data
public class Criteria {
private int page;
private int perPageNum;
private String searchType; //검색타입
private String keyword; //검색어
public Criteria() {
this.page = 1; //첫 페이지 초기화
this.perPageNum = 10; //한 페이지당 출력 할 게시물 수
}
// limit 시작 값
public int getPageStart() {
return (this.page - 1) * this.perPageNum;
}
}
- 이전글● 검색 처리 1 ( 설명 참고 ) 24.07.30
- 다음글PageMaker.java 24.07.30
댓글목록
등록된 댓글이 없습니다.