We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e55eac0 commit c8e0cecCopy full SHA for c8e0cec
1 file changed
common/src/main/java/top/cadecode/uniboot/common/response/PageParams.java
@@ -0,0 +1,21 @@
1
+package top.cadecode.uniboot.common.response;
2
+
3
+import lombok.Data;
4
5
+import javax.validation.constraints.NotNull;
6
7
+/**
8
+ * 分页参数
9
+ *
10
+ * @author Cade Li
11
+ * @date 2023/4/23
12
+ */
13
+@Data
14
+public class PageParams {
15
+ @NotNull
16
+ private Long pageSize;
17
18
+ private Long pageNumber;
19
20
+ private String orderBy;
21
+}
0 commit comments