com.alon.spring.crud.resource.dto.ListOutput Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-crud-base Show documentation
Show all versions of spring-crud-base Show documentation
Projeto base para criação de serviços e recusos de CRUD com Spring Data JPA.
package com.alon.spring.crud.resource.dto;
import java.util.List;
public abstract class ListOutput {
public ListOutput() {}
public ListOutput(List content, int page, int pageSize, int totalPages, int totalSize) {
this.content = content;
this.page = page;
this.pageSize = pageSize;
this.totalPages = totalPages;
this.totalSize = totalSize;
}
public List content;
public int page;
public int pageSize;
public int totalPages;
public int totalSize;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy