fc11264a2a90e51d939a8dd3245c49cbd8299d47.svn-base 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  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 InParam 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="InParam">
  24. * &lt;complexContent>
  25. * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
  26. * &lt;sequence>
  27. * &lt;element name="paraName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
  28. * &lt;element name="paraValue" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
  29. * &lt;element name="opt" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
  30. * &lt;/sequence>
  31. * &lt;/restriction>
  32. * &lt;/complexContent>
  33. * &lt;/complexType>
  34. * </pre>
  35. *
  36. *
  37. */
  38. @XmlAccessorType(XmlAccessType.FIELD)
  39. @XmlType(name = "InParam", propOrder = { "paraName", "paraValue", "opt" })
  40. public class InParam implements Serializable {
  41. /**
  42. *
  43. */
  44. private static final long serialVersionUID = -8377469798286002163L;
  45. protected String paraName;
  46. protected String paraValue;
  47. protected String opt;
  48. /**
  49. * Gets the value of the paraName property.
  50. *
  51. * @return possible object is {@link String }
  52. *
  53. */
  54. public String getParaName() {
  55. return paraName;
  56. }
  57. /**
  58. * Sets the value of the paraName property.
  59. *
  60. * @param value
  61. * allowed object is {@link String }
  62. *
  63. */
  64. public void setParaName(String value) {
  65. this.paraName = value;
  66. }
  67. /**
  68. * Gets the value of the paraValue property.
  69. *
  70. * @return possible object is {@link String }
  71. *
  72. */
  73. public String getParaValue() {
  74. return paraValue;
  75. }
  76. /**
  77. * Sets the value of the paraValue property.
  78. *
  79. * @param value
  80. * allowed object is {@link String }
  81. *
  82. */
  83. public void setParaValue(String value) {
  84. this.paraValue = value;
  85. }
  86. /**
  87. * Gets the value of the opt property.
  88. *
  89. * @return possible object is {@link String }
  90. *
  91. */
  92. public String getOpt() {
  93. return opt;
  94. }
  95. /**
  96. * Sets the value of the opt property.
  97. *
  98. * @param value
  99. * allowed object is {@link String }
  100. *
  101. */
  102. public void setOpt(String value) {
  103. this.opt = value;
  104. }
  105. }