969332f091a0aef37d671b9a540c1ba5c4393d5e.svn-base 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  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.16 at 05:15:00 PM CST
  6. //
  7. package com.sinosoft.nwyj.integration.cxf.sendEmergencyAssign;
  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="emergencyParameterId" type="{http://www.w3.org/2001/XMLSchema}string"/>
  24. * &lt;element name="columnName" type="{http://www.w3.org/2001/XMLSchema}string"/>
  25. * &lt;element name="columnCode" type="{http://www.w3.org/2001/XMLSchema}string"/>
  26. * &lt;element name="columnvalue" type="{http://www.w3.org/2001/XMLSchema}string"/>
  27. * &lt;/sequence>
  28. * &lt;/restriction>
  29. * &lt;/complexContent>
  30. * &lt;/complexType>
  31. * </pre>
  32. *
  33. *
  34. */
  35. @XmlAccessorType(XmlAccessType.FIELD)
  36. @XmlType(name = "EmergencyParameterValDTO", propOrder = {
  37. "emergencyParameterId",
  38. "columnName",
  39. "columnCode",
  40. "columnvalue"
  41. })
  42. //应急设备参数
  43. public class EmergencyParameterValDTO implements Serializable{
  44. @Override
  45. public String toString() {
  46. return "EmergencyParameterValDTO [emergencyParameterId="
  47. + emergencyParameterId + ", columnName=" + columnName
  48. + ", columnCode=" + columnCode + ", columnvalue=" + columnvalue
  49. + "]";
  50. }
  51. /**
  52. *
  53. */
  54. private static final long serialVersionUID = 5267486515569858341L;
  55. @XmlElement(required = true)
  56. protected String emergencyParameterId;
  57. @XmlElement(required = true)
  58. protected String columnName;
  59. @XmlElement(required = true)
  60. protected String columnCode;
  61. @XmlElement(required = true)
  62. protected String columnvalue;
  63. /**
  64. * Gets the value of the emergencyParameterId property.
  65. *
  66. * @return
  67. * possible object is
  68. * {@link String }
  69. *
  70. */
  71. public String getEmergencyParameterId() {
  72. return emergencyParameterId;
  73. }
  74. /**
  75. * Sets the value of the emergencyParameterId property.
  76. *
  77. * @param value
  78. * allowed object is
  79. * {@link String }
  80. *
  81. */
  82. public void setEmergencyParameterId(String value) {
  83. this.emergencyParameterId = value;
  84. }
  85. /**
  86. * Gets the value of the columnName property.
  87. *
  88. * @return
  89. * possible object is
  90. * {@link String }
  91. *
  92. */
  93. public String getColumnName() {
  94. return columnName;
  95. }
  96. /**
  97. * Sets the value of the columnName property.
  98. *
  99. * @param value
  100. * allowed object is
  101. * {@link String }
  102. *
  103. */
  104. public void setColumnName(String value) {
  105. this.columnName = value;
  106. }
  107. /**
  108. * Gets the value of the columnCode property.
  109. *
  110. * @return
  111. * possible object is
  112. * {@link String }
  113. *
  114. */
  115. public String getColumnCode() {
  116. return columnCode;
  117. }
  118. /**
  119. * Sets the value of the columnCode property.
  120. *
  121. * @param value
  122. * allowed object is
  123. * {@link String }
  124. *
  125. */
  126. public void setColumnCode(String value) {
  127. this.columnCode = value;
  128. }
  129. /**
  130. * Gets the value of the columnvalue property.
  131. *
  132. * @return
  133. * possible object is
  134. * {@link String }
  135. *
  136. */
  137. public String getColumnvalue() {
  138. return columnvalue;
  139. }
  140. /**
  141. * Sets the value of the columnvalue property.
  142. *
  143. * @param value
  144. * allowed object is
  145. * {@link String }
  146. *
  147. */
  148. public void setColumnvalue(String value) {
  149. this.columnvalue = value;
  150. }
  151. }