14 lines
257 B
Java
14 lines
257 B
Java
package net.gepafin.tendermanagement.model.response;
|
|
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
public class PageableResponseBean<T> {
|
|
|
|
private T body;
|
|
private Long totalRecords;
|
|
private int currentPage;
|
|
private int totalPages;
|
|
private int pageSize;
|
|
}
|