|
|
@@ -21,6 +21,8 @@ public class SPage<T> implements Serializable {
|
|
|
|
|
|
private List<T> content;
|
|
|
|
|
|
+ private String token;
|
|
|
+
|
|
|
public SPage() {
|
|
|
super();
|
|
|
}
|
|
|
@@ -91,10 +93,19 @@ public class SPage<T> implements Serializable {
|
|
|
this.content = content;
|
|
|
}
|
|
|
|
|
|
+ public String getToken() {
|
|
|
+ return token;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setToken(String token) {
|
|
|
+ this.token = token;
|
|
|
+ }
|
|
|
+
|
|
|
@Override
|
|
|
public String toString() {
|
|
|
return "SPage [totalPage=" + totalPage + ", totalElement=" + totalElement + ", page=" + page + ", size=" + size
|
|
|
- + ", first=" + first + ", last=" + last + ", content=" + content + "]";
|
|
|
+ + ", first=" + first + ", last=" + last + ", content=" + content + ", token=" + token + "]";
|
|
|
}
|
|
|
|
|
|
+
|
|
|
}
|