This is an automated email from the ASF dual-hosted git repository.

kirs pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git


The following commit(s) were added to refs/heads/dev by this push:
     new 088a5a4  add default constructor (#6780)
088a5a4 is described below

commit 088a5a47063fe09b84023f55884c99dd0ed8d05a
Author: zwZjut <[email protected]>
AuthorDate: Thu Nov 11 12:11:43 2021 +0800

    add default constructor (#6780)
    
    Co-authored-by: honghuo.zw <[email protected]>
---
 .../src/main/java/org/apache/dolphinscheduler/api/utils/PageInfo.java | 4 ++++
 1 file changed, 4 insertions(+)

diff --git 
a/dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/utils/PageInfo.java
 
b/dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/utils/PageInfo.java
index 95405a4..5b443dc 100644
--- 
a/dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/utils/PageInfo.java
+++ 
b/dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/utils/PageInfo.java
@@ -51,6 +51,10 @@ public class PageInfo<T> {
      */
     private Integer pageNo;
 
+    public PageInfo() {
+        
+    }
+
     public PageInfo(Integer currentPage, Integer pageSize) {
         if (currentPage == null) {
             currentPage = 1;

Reply via email to