17171d845c1cd420af3b6effea0755a70fd37fa5.svn-base 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  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.21 at 07:28:26 PM CST
  6. //
  7. package com.sinosoft.nwyj.integration.cxf.dc.querySingleTabData;
  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>
  16. * Java class for InParamPack complex type.
  17. *
  18. * <p>
  19. * The following schema fragment specifies the expected content contained within
  20. * this class.
  21. *
  22. * <pre>
  23. * &lt;complexType name="InParamPack">
  24. * &lt;complexContent>
  25. * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
  26. * &lt;sequence>
  27. * &lt;element name="appNum" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
  28. * &lt;element name="pageSize" type="{http://www.w3.org/2001/XMLSchema}int"/>
  29. * &lt;element name="currentPage" type="{http://www.w3.org/2001/XMLSchema}int"/>
  30. * &lt;element name="tableName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
  31. * &lt;element name="tabType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
  32. * &lt;element name="conds" type="{http://dc.soa.csg.cn/}Conds" minOccurs="0"/>
  33. * &lt;/sequence>
  34. * &lt;/restriction>
  35. * &lt;/complexContent>
  36. * &lt;/complexType>
  37. * </pre>
  38. *
  39. *
  40. */
  41. @XmlAccessorType(XmlAccessType.FIELD)
  42. @XmlType(name = "InParamPack", propOrder = { "appNum", "pageSize", "currentPage", "tableName", "tabType", "conds" })
  43. public class InParamPack implements Serializable {
  44. /**
  45. *
  46. */
  47. private static final long serialVersionUID = -867236094892767870L;
  48. protected String appNum;
  49. protected int pageSize;
  50. protected int currentPage;
  51. protected String tableName;
  52. protected String tabType;
  53. protected Conds conds;
  54. /**
  55. * Gets the value of the appNum property.
  56. *
  57. * @return possible object is {@link String }
  58. *
  59. */
  60. public String getAppNum() {
  61. return appNum;
  62. }
  63. /**
  64. * Sets the value of the appNum property.
  65. *
  66. * @param value
  67. * allowed object is {@link String }
  68. *
  69. */
  70. public void setAppNum(String value) {
  71. this.appNum = value;
  72. }
  73. /**
  74. * Gets the value of the pageSize property.
  75. *
  76. */
  77. public int getPageSize() {
  78. return pageSize;
  79. }
  80. /**
  81. * Sets the value of the pageSize property.
  82. *
  83. */
  84. public void setPageSize(int value) {
  85. this.pageSize = value;
  86. }
  87. /**
  88. * Gets the value of the currentPage property.
  89. *
  90. */
  91. public int getCurrentPage() {
  92. return currentPage;
  93. }
  94. /**
  95. * Sets the value of the currentPage property.
  96. *
  97. */
  98. public void setCurrentPage(int value) {
  99. this.currentPage = value;
  100. }
  101. /**
  102. * Gets the value of the tableName property.
  103. *
  104. * @return possible object is {@link String }
  105. *
  106. */
  107. public String getTableName() {
  108. return tableName;
  109. }
  110. /**
  111. * Sets the value of the tableName property.
  112. *
  113. * @param value
  114. * allowed object is {@link String }
  115. *
  116. */
  117. public void setTableName(String value) {
  118. this.tableName = value;
  119. }
  120. /**
  121. * Gets the value of the tabType property.
  122. *
  123. * @return possible object is {@link String }
  124. *
  125. */
  126. public String getTabType() {
  127. return tabType;
  128. }
  129. /**
  130. * Sets the value of the tabType property.
  131. *
  132. * @param value
  133. * allowed object is {@link String }
  134. *
  135. */
  136. public void setTabType(String value) {
  137. this.tabType = value;
  138. }
  139. /**
  140. * Gets the value of the conds property.
  141. *
  142. * @return possible object is {@link Conds }
  143. *
  144. */
  145. public Conds getConds() {
  146. return conds;
  147. }
  148. /**
  149. * Sets the value of the conds property.
  150. *
  151. * @param value
  152. * allowed object is {@link Conds }
  153. *
  154. */
  155. public void setConds(Conds value) {
  156. this.conds = value;
  157. }
  158. }