e18bf9db0b09be6460950db8147f3667efd06250.svn-base 3.9 KB

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