eleme.openapi.sdk.api.entity.activity.PageDTO Maven / Gradle / Ivy
package eleme.openapi.sdk.api.entity.activity;
import eleme.openapi.sdk.api.enumeration.activity.*;
import eleme.openapi.sdk.api.entity.activity.*;
import java.util.*;
import java.math.BigDecimal;
import com.fasterxml.jackson.annotation.JsonFormat;
public class PageDTO{
/**
* 页数
*/
private Integer page;
public Integer getPage() {
return page;
}
public void setPage(Integer page) {
this.page = page;
}
/**
* 页大小
*/
private Integer size;
public Integer getSize() {
return size;
}
public void setSize(Integer size) {
this.size = size;
}
/**
* 记录总条数
*/
private Long total;
public Long getTotal() {
return total;
}
public void setTotal(Long total) {
this.total = total;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy