123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- 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;
- /**
- * <p>respage complex type的 Java 类
- *
- * <p>以下模式片段指定包含在此类中的预期内容。
- *
- * <pre>
- * <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>
- * </pre>
- *
- *
- */
- @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;
- }
- }
|