5e39f33987c0bb905e84d9de94f3464c67d40b10.svn-base 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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.08.01 at 03:02:19 PM CST
  6. //
  7. package com.sinosoft.nwyj.integration.cxf.queryEmergencyDevice;
  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.XmlElement;
  12. import javax.xml.bind.annotation.XmlType;
  13. /**
  14. * <p>Java class for EmergencyParameterValDTO complex type.
  15. *
  16. * <p>The following schema fragment specifies the expected content contained within this class.
  17. *
  18. * <pre>
  19. * &lt;complexType name="EmergencyParameterValDTO">
  20. * &lt;complexContent>
  21. * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
  22. * &lt;sequence>
  23. * &lt;element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
  24. * &lt;element name="columnvalue" type="{http://www.w3.org/2001/XMLSchema}string"/>
  25. * &lt;/sequence>
  26. * &lt;/restriction>
  27. * &lt;/complexContent>
  28. * &lt;/complexType>
  29. * </pre>
  30. *
  31. *
  32. */
  33. @XmlAccessorType(XmlAccessType.FIELD)
  34. @XmlType(name = "EmergencyParameterValDTO", propOrder = {
  35. "id",
  36. "columnvalue"
  37. })
  38. public class EmergencyParameterValDTO implements Serializable{
  39. /**
  40. *
  41. */
  42. private static final long serialVersionUID = -7968178469273758305L;
  43. @XmlElement(required = true)
  44. protected String id;
  45. @XmlElement(required = true)
  46. protected String columnvalue;
  47. /**
  48. * Gets the value of the id property.
  49. *
  50. * @return
  51. * possible object is
  52. * {@link String }
  53. *
  54. */
  55. public String getId() {
  56. return id;
  57. }
  58. /**
  59. * Sets the value of the id property.
  60. *
  61. * @param value
  62. * allowed object is
  63. * {@link String }
  64. *
  65. */
  66. public void setId(String value) {
  67. this.id = value;
  68. }
  69. /**
  70. * Gets the value of the columnvalue property.
  71. *
  72. * @return
  73. * possible object is
  74. * {@link String }
  75. *
  76. */
  77. public String getColumnvalue() {
  78. return columnvalue;
  79. }
  80. /**
  81. * Sets the value of the columnvalue property.
  82. *
  83. * @param value
  84. * allowed object is
  85. * {@link String }
  86. *
  87. */
  88. public void setColumnvalue(String value) {
  89. this.columnvalue = value;
  90. }
  91. @Override
  92. public String toString() {
  93. return "EmergencyParameterValDTO [id=" + id + ", columnvalue="
  94. + columnvalue + "]";
  95. }
  96. }