482f6b03e758e0175d0844a3ae1e4159c71a86ad.svn-base 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. package com.sinosoft.nwyj.integration.cxf.dataService;
  2. import javax.xml.bind.annotation.XmlAccessType;
  3. import javax.xml.bind.annotation.XmlAccessorType;
  4. import javax.xml.bind.annotation.XmlElement;
  5. import javax.xml.bind.annotation.XmlType;
  6. /**
  7. * <p>resp complex type的 Java 类
  8. *
  9. * <p>以下模式片段指定包含在此类中的预期内容。
  10. *
  11. * <pre>
  12. * &lt;complexType name="resp"&gt;
  13. * &lt;complexContent&gt;
  14. * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
  15. * &lt;sequence&gt;
  16. * &lt;element name="pageInfo" type="{http://dc.soa.csg.cn}respage"/&gt;
  17. * &lt;element name="replyCode" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
  18. * &lt;element name="replyDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
  19. * &lt;element name="result" type="{http://dc.soa.csg.cn}result"/&gt;
  20. * &lt;/sequence&gt;
  21. * &lt;/restriction&gt;
  22. * &lt;/complexContent&gt;
  23. * &lt;/complexType&gt;
  24. * </pre>
  25. *
  26. *
  27. */
  28. @XmlAccessorType(XmlAccessType.FIELD)
  29. @XmlType(name = "resp", propOrder = {
  30. "pageInfo",
  31. "replyCode",
  32. "replyDesc",
  33. "result"
  34. })
  35. public class Resp {
  36. @XmlElement(required = true, nillable = true)
  37. protected Respage pageInfo;//返回页信息
  38. @XmlElement(required = true, nillable = true)
  39. protected String replyCode;//返回编码
  40. @XmlElement(required = true, nillable = true)
  41. protected String replyDesc;//返回信息
  42. @XmlElement(required = true, nillable = true)
  43. protected Result result;//查询结果
  44. /**
  45. * 获取pageInfo属性的值。
  46. *
  47. * @return
  48. * possible object is
  49. * {@link Respage }
  50. *
  51. */
  52. public Respage getPageInfo() {
  53. return pageInfo;
  54. }
  55. /**
  56. * 设置pageInfo属性的值。
  57. *
  58. * @param value
  59. * allowed object is
  60. * {@link Respage }
  61. *
  62. */
  63. public void setPageInfo(Respage value) {
  64. this.pageInfo = value;
  65. }
  66. /**
  67. * 获取replyCode属性的值。
  68. *
  69. * @return
  70. * possible object is
  71. * {@link String }
  72. *
  73. */
  74. public String getReplyCode() {
  75. return replyCode;
  76. }
  77. /**
  78. * 设置replyCode属性的值。
  79. *
  80. * @param value
  81. * allowed object is
  82. * {@link String }
  83. *
  84. */
  85. public void setReplyCode(String value) {
  86. this.replyCode = value;
  87. }
  88. /**
  89. * 获取replyDesc属性的值。
  90. *
  91. * @return
  92. * possible object is
  93. * {@link String }
  94. *
  95. */
  96. public String getReplyDesc() {
  97. return replyDesc;
  98. }
  99. /**
  100. * 设置replyDesc属性的值。
  101. *
  102. * @param value
  103. * allowed object is
  104. * {@link String }
  105. *
  106. */
  107. public void setReplyDesc(String value) {
  108. this.replyDesc = value;
  109. }
  110. /**
  111. * 获取result属性的值。
  112. *
  113. * @return
  114. * possible object is
  115. * {@link Result }
  116. *
  117. */
  118. public Result getResult() {
  119. return result;
  120. }
  121. /**
  122. * 设置result属性的值。
  123. *
  124. * @param value
  125. * allowed object is
  126. * {@link Result }
  127. *
  128. */
  129. public void setResult(Result value) {
  130. this.result = value;
  131. }
  132. }