package com.sinosoft.nwyj.integration.cxf.dataService; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

respage complex type的 Java 类 * *

以下模式片段指定包含在此类中的预期内容。 * *

 * <complexType name="respage">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="currentPage" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="pageRecords" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="totalPage" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="totalRecords" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "respage", propOrder = { "currentPage", "pageRecords", "totalPage", "totalRecords" }) public class Respage { @XmlElement(required = true, nillable = true) protected String currentPage;//当前页码 @XmlElement(required = true, nillable = true) protected String pageRecords;//页大小 @XmlElement(required = true, nillable = true) protected String totalPage;//页总数 @XmlElement(required = true, nillable = true) protected String totalRecords;//总记录数 /** * 获取currentPage属性的值。 * * @return * possible object is * {@link String } * */ public String getCurrentPage() { return currentPage; } /** * 设置currentPage属性的值。 * * @param value * allowed object is * {@link String } * */ public void setCurrentPage(String value) { this.currentPage = value; } /** * 获取pageRecords属性的值。 * * @return * possible object is * {@link String } * */ public String getPageRecords() { return pageRecords; } /** * 设置pageRecords属性的值。 * * @param value * allowed object is * {@link String } * */ public void setPageRecords(String value) { this.pageRecords = value; } /** * 获取totalPage属性的值。 * * @return * possible object is * {@link String } * */ public String getTotalPage() { return totalPage; } /** * 设置totalPage属性的值。 * * @param value * allowed object is * {@link String } * */ public void setTotalPage(String value) { this.totalPage = value; } /** * 获取totalRecords属性的值。 * * @return * possible object is * {@link String } * */ public String getTotalRecords() { return totalRecords; } /** * 设置totalRecords属性的值。 * * @param value * allowed object is * {@link String } * */ public void setTotalRecords(String value) { this.totalRecords = value; } }