Commit 7d1edd30 by guojuxing

pageQO调整

parent f29dd22a
package com.gic.finance.qo;
import com.gic.enterprise.qo.PageQO;
/**
* 提现管理分页查询列表参数
......
package com.gic.finance.qo;
import com.gic.enterprise.qo.PageQO;
import java.io.Serializable;
/**
* 发票管理列表查询参数
......@@ -10,7 +8,7 @@ import java.io.Serializable;
* @author guojuxing

* @date 2019/8/15 9:23 AM

*/
public class InvoiceManageListQueryQO extends PageQO implements Serializable{
public class InvoiceManageListQueryQO extends com.gic.finance.qo.PageQO implements Serializable{
private static final long serialVersionUID = 4126844399438333342L;
/**
......
package com.gic.finance.qo;
import java.io.Serializable;
/**
* 分页数据
* @ClassName: PageQO

* @Description: 

* @author guojuxing

* @date 2019/8/13 11:29 AM

*/
public class PageQO implements Serializable {
private static final long serialVersionUID = 1L;
/**
* 页码
*/
private Integer currentPage = 1;
/**
* 分页大小
*/
private Integer pageSize = 20;
public Integer getCurrentPage() {
if (currentPage == null) {
currentPage = 1;
}
return currentPage;
}
public void setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
}
public Integer getPageSize() {
if (pageSize == null) {
pageSize = 20;
}
return pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
}
package com.gic.finance.qo;
import com.gic.enterprise.qo.PageQO;
/**
* 转账审批列表查询条件
* @ClassName: TransferListQueryQO

......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment