7613b5eb59cecdd648820080ba1f48f19044b44e.svn-base 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  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 java.util.ArrayList;
  10. import java.util.List;
  11. import javax.xml.bind.annotation.XmlAccessType;
  12. import javax.xml.bind.annotation.XmlAccessorType;
  13. import javax.xml.bind.annotation.XmlElement;
  14. import javax.xml.bind.annotation.XmlType;
  15. import com.sinosoft.nwyj.integration.cxf.queryEmergencyDevice.EmergencyParameterValDTO;
  16. /**
  17. * <p>Java class for EmergencyDeviceDTO complex type.
  18. *
  19. * <p>The following schema fragment specifies the expected content contained within this class.
  20. *
  21. * <pre>
  22. * &lt;complexType name="EmergencyDeviceDTO">
  23. * &lt;complexContent>
  24. * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
  25. * &lt;sequence>
  26. * &lt;element name="instrumentTypeId" type="{http://www.w3.org/2001/XMLSchema}string"/>
  27. * &lt;element name="deptCode" type="{http://www.w3.org/2001/XMLSchema}string"/>
  28. * &lt;element name="emergencyParameterValDTO" type="{http://sp.soa.csg.cn}EmergencyParameterValDTO" maxOccurs="unbounded"/>
  29. * &lt;/sequence>
  30. * &lt;/restriction>
  31. * &lt;/complexContent>
  32. * &lt;/complexType>
  33. * </pre>
  34. *
  35. *
  36. */
  37. @XmlAccessorType(XmlAccessType.FIELD)
  38. @XmlType(name = "EmergencyDeviceDTO", propOrder = {
  39. "instrumentTypeId",
  40. "deptCode",
  41. "emergencyParameterValDTO"
  42. })
  43. public class EmergencyDeviceDTO implements Serializable{
  44. /**
  45. *
  46. */
  47. private static final long serialVersionUID = -1580884656290012972L;
  48. @XmlElement(required = true)
  49. protected String instrumentTypeId;
  50. @XmlElement(required = true)
  51. protected String deptCode;
  52. @XmlElement(required = true)
  53. protected List<EmergencyParameterValDTO> emergencyParameterValDTO;
  54. /**
  55. * Gets the value of the instrumentTypeId property.
  56. *
  57. * @return
  58. * possible object is
  59. * {@link String }
  60. *
  61. */
  62. /**
  63. * 调用该对象时,EmergencyParameterVal 没有set方法,手动给了个Set方法进行测试。如可以后续也这么做。
  64. * */
  65. public void setEmergencyParameterValDTO(List<EmergencyParameterValDTO> emergencyParameterValDTO) {
  66. this.emergencyParameterValDTO = emergencyParameterValDTO;
  67. }
  68. public String getInstrumentTypeId() {
  69. return instrumentTypeId;
  70. }
  71. /**
  72. * Sets the value of the instrumentTypeId property.
  73. *
  74. * @param value
  75. * allowed object is
  76. * {@link String }
  77. *
  78. */
  79. public void setInstrumentTypeId(String value) {
  80. this.instrumentTypeId = value;
  81. }
  82. /**
  83. * Gets the value of the deptCode property.
  84. *
  85. * @return
  86. * possible object is
  87. * {@link String }
  88. *
  89. */
  90. public String getDeptCode() {
  91. return deptCode;
  92. }
  93. /**
  94. * Sets the value of the deptCode property.
  95. *
  96. * @param value
  97. * allowed object is
  98. * {@link String }
  99. *
  100. */
  101. public void setDeptCode(String value) {
  102. this.deptCode = value;
  103. }
  104. /**
  105. * Gets the value of the emergencyParameterValDTO property.
  106. *
  107. * <p>
  108. * This accessor method returns a reference to the live list,
  109. * not a snapshot. Therefore any modification you make to the
  110. * returned list will be present inside the JAXB object.
  111. * This is why there is not a <CODE>set</CODE> method for the emergencyParameterValDTO property.
  112. *
  113. * <p>
  114. * For example, to add a new item, do as follows:
  115. * <pre>
  116. * getEmergencyParameterValDTO().add(newItem);
  117. * </pre>
  118. *
  119. *
  120. * <p>
  121. * Objects of the following type(s) are allowed in the list
  122. * {@link EmergencyParameterValDTO }
  123. *
  124. *
  125. */
  126. public List<EmergencyParameterValDTO> getEmergencyParameterValDTO() {
  127. if (emergencyParameterValDTO == null) {
  128. emergencyParameterValDTO = new ArrayList<EmergencyParameterValDTO>();
  129. }
  130. return this.emergencyParameterValDTO;
  131. }
  132. }