feature/net-util
ZhouXY108 2023-04-30 09:58:29 +08:00
parent 4d96cdf8ec
commit 025e8ac4da
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ public class PageDTO<T> {
private final List<T> content;
private PageDTO(List<T> content, long total) {
Assert.isNotEmpty(content, "Content must not be null.");
Assert.notNull(content, "Content must not be null.");
this.content = content;
this.total = total;
}