- 优化:pageResult 和 mybatis 返回的 total 保持一致(改为long型)

This commit is contained in:
cherishsince 2020-05-14 17:01:43 +08:00
parent 7fcf954649
commit 230ace1959

View File

@ -13,7 +13,7 @@ public final class PageResult<T> implements Serializable {
private List<T> list; private List<T> list;
@ApiModelProperty(value = "总量", required = true) @ApiModelProperty(value = "总量", required = true)
private Integer total; private Long total;
public List<T> getList() { public List<T> getList() {
return list; return list;
@ -24,11 +24,11 @@ public final class PageResult<T> implements Serializable {
return this; return this;
} }
public Integer getTotal() { public Long getTotal() {
return total; return total;
} }
public PageResult<T> setTotal(Integer total) { public PageResult<T> setTotal(Long total) {
this.total = total; this.total = total;
return this; return this;
} }