123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- //
- // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2
- // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
- // Any modifications to this file will be lost upon recompilation of the source schema.
- // Generated on: 2016.07.07 at 05:22:20 PM CST
- //
- package com.sinosoft.nwyj.integration.cxf.dc.queryCustomData;
- import java.io.Serializable;
- import javax.xml.bind.annotation.XmlAccessType;
- import javax.xml.bind.annotation.XmlAccessorType;
- import javax.xml.bind.annotation.XmlType;
- /**
- * 分页信息
- *
- * <p>Java class for PageInfo complex type.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- *
- * <pre>
- * <complexType name="PageInfo">
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element name="currentPage" type="{http://www.w3.org/2001/XMLSchema}int"/>
- * <element name="totalRows" type="{http://www.w3.org/2001/XMLSchema}int"/>
- * <element name="totalPages" type="{http://www.w3.org/2001/XMLSchema}int"/>
- * <element name="pageSize" type="{http://www.w3.org/2001/XMLSchema}int"/>
- * <element name="startRow" type="{http://www.w3.org/2001/XMLSchema}int"/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- * </pre>
- *
- *
- */
- @XmlAccessorType(XmlAccessType.FIELD)
- @XmlType(name = "PageInfo", propOrder = {
- "currentPage",
- "totalRows",
- "totalPages",
- "pageSize",
- "startRow"
- })
- public class PageInfo implements Serializable{
- /**
- *
- */
- private static final long serialVersionUID = 631432367273045515L;
- protected int currentPage;
- protected int totalRows;
- protected int totalPages;
- protected int pageSize;
- protected int startRow;
- /**
- * Gets the value of the currentPage property.
- *
- */
- public int getCurrentPage() {
- return currentPage;
- }
- /**
- * Sets the value of the currentPage property.
- *
- */
- public void setCurrentPage(int value) {
- this.currentPage = value;
- }
- /**
- * Gets the value of the totalRows property.
- *
- */
- public int getTotalRows() {
- return totalRows;
- }
- /**
- * Sets the value of the totalRows property.
- *
- */
- public void setTotalRows(int value) {
- this.totalRows = value;
- }
- /**
- * Gets the value of the totalPages property.
- *
- */
- public int getTotalPages() {
- return totalPages;
- }
- /**
- * Sets the value of the totalPages property.
- *
- */
- public void setTotalPages(int value) {
- this.totalPages = value;
- }
- /**
- * Gets the value of the pageSize property.
- *
- */
- public int getPageSize() {
- return pageSize;
- }
- /**
- * Sets the value of the pageSize property.
- *
- */
- public void setPageSize(int value) {
- this.pageSize = value;
- }
- /**
- * Gets the value of the startRow property.
- *
- */
- public int getStartRow() {
- return startRow;
- }
- /**
- * Sets the value of the startRow property.
- *
- */
- public void setStartRow(int value) {
- this.startRow = value;
- }
- }
|