e204156e3b413358034bcd2e5a18688d016d2ef4.svn-base 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. //
  2. // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2
  3. // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
  4. // Any modifications to this file will be lost upon recompilation of the source schema.
  5. // Generated on: 2016.07.07 at 05:22:20 PM CST
  6. //
  7. package com.sinosoft.nwyj.integration.cxf.dc.queryCustomData;
  8. import java.io.Serializable;
  9. import javax.xml.bind.annotation.XmlAccessType;
  10. import javax.xml.bind.annotation.XmlAccessorType;
  11. import javax.xml.bind.annotation.XmlType;
  12. /**
  13. * 分页信息
  14. *
  15. * <p>Java class for PageInfo complex type.
  16. *
  17. * <p>The following schema fragment specifies the expected content contained within this class.
  18. *
  19. * <pre>
  20. * &lt;complexType name="PageInfo">
  21. * &lt;complexContent>
  22. * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
  23. * &lt;sequence>
  24. * &lt;element name="currentPage" type="{http://www.w3.org/2001/XMLSchema}int"/>
  25. * &lt;element name="totalRows" type="{http://www.w3.org/2001/XMLSchema}int"/>
  26. * &lt;element name="totalPages" type="{http://www.w3.org/2001/XMLSchema}int"/>
  27. * &lt;element name="pageSize" type="{http://www.w3.org/2001/XMLSchema}int"/>
  28. * &lt;element name="startRow" type="{http://www.w3.org/2001/XMLSchema}int"/>
  29. * &lt;/sequence>
  30. * &lt;/restriction>
  31. * &lt;/complexContent>
  32. * &lt;/complexType>
  33. * </pre>
  34. *
  35. *
  36. */
  37. @XmlAccessorType(XmlAccessType.FIELD)
  38. @XmlType(name = "PageInfo", propOrder = {
  39. "currentPage",
  40. "totalRows",
  41. "totalPages",
  42. "pageSize",
  43. "startRow"
  44. })
  45. public class PageInfo implements Serializable{
  46. /**
  47. *
  48. */
  49. private static final long serialVersionUID = 631432367273045515L;
  50. protected int currentPage;
  51. protected int totalRows;
  52. protected int totalPages;
  53. protected int pageSize;
  54. protected int startRow;
  55. /**
  56. * Gets the value of the currentPage property.
  57. *
  58. */
  59. public int getCurrentPage() {
  60. return currentPage;
  61. }
  62. /**
  63. * Sets the value of the currentPage property.
  64. *
  65. */
  66. public void setCurrentPage(int value) {
  67. this.currentPage = value;
  68. }
  69. /**
  70. * Gets the value of the totalRows property.
  71. *
  72. */
  73. public int getTotalRows() {
  74. return totalRows;
  75. }
  76. /**
  77. * Sets the value of the totalRows property.
  78. *
  79. */
  80. public void setTotalRows(int value) {
  81. this.totalRows = value;
  82. }
  83. /**
  84. * Gets the value of the totalPages property.
  85. *
  86. */
  87. public int getTotalPages() {
  88. return totalPages;
  89. }
  90. /**
  91. * Sets the value of the totalPages property.
  92. *
  93. */
  94. public void setTotalPages(int value) {
  95. this.totalPages = value;
  96. }
  97. /**
  98. * Gets the value of the pageSize property.
  99. *
  100. */
  101. public int getPageSize() {
  102. return pageSize;
  103. }
  104. /**
  105. * Sets the value of the pageSize property.
  106. *
  107. */
  108. public void setPageSize(int value) {
  109. this.pageSize = value;
  110. }
  111. /**
  112. * Gets the value of the startRow property.
  113. *
  114. */
  115. public int getStartRow() {
  116. return startRow;
  117. }
  118. /**
  119. * Sets the value of the startRow property.
  120. *
  121. */
  122. public void setStartRow(int value) {
  123. this.startRow = value;
  124. }
  125. }