123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- //
- // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2
- // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
- // Any modifications to this file will be lost upon recompilation of the source schema.
- // Generated on: 2016.08.01 at 03:02:19 PM CST
- //
- package com.sinosoft.nwyj.integration.cxf.queryEmergencyDevice;
- import java.io.Serializable;
- import java.util.ArrayList;
- import java.util.List;
- import javax.xml.bind.annotation.XmlAccessType;
- import javax.xml.bind.annotation.XmlAccessorType;
- import javax.xml.bind.annotation.XmlElement;
- import javax.xml.bind.annotation.XmlType;
- import com.sinosoft.nwyj.integration.cxf.queryEmergencyDevice.EmergencyParameterValDTO;
- /**
- * <p>Java class for EmergencyDeviceDTO complex type.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- *
- * <pre>
- * <complexType name="EmergencyDeviceDTO">
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element name="instrumentTypeId" type="{http://www.w3.org/2001/XMLSchema}string"/>
- * <element name="deptCode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- * <element name="emergencyParameterValDTO" type="{http://sp.soa.csg.cn}EmergencyParameterValDTO" maxOccurs="unbounded"/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- * </pre>
- *
- *
- */
- @XmlAccessorType(XmlAccessType.FIELD)
- @XmlType(name = "EmergencyDeviceDTO", propOrder = {
- "instrumentTypeId",
- "deptCode",
- "emergencyParameterValDTO"
- })
- public class EmergencyDeviceDTO implements Serializable{
- /**
- *
- */
- private static final long serialVersionUID = -1580884656290012972L;
- @XmlElement(required = true)
- protected String instrumentTypeId;
- @XmlElement(required = true)
- protected String deptCode;
- @XmlElement(required = true)
- protected List<EmergencyParameterValDTO> emergencyParameterValDTO;
- /**
- * Gets the value of the instrumentTypeId property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- /**
- * 调用该对象时,EmergencyParameterVal 没有set方法,手动给了个Set方法进行测试。如可以后续也这么做。
- * */
- public void setEmergencyParameterValDTO(List<EmergencyParameterValDTO> emergencyParameterValDTO) {
- this.emergencyParameterValDTO = emergencyParameterValDTO;
- }
-
- public String getInstrumentTypeId() {
- return instrumentTypeId;
- }
- /**
- * Sets the value of the instrumentTypeId property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setInstrumentTypeId(String value) {
- this.instrumentTypeId = value;
- }
- /**
- * Gets the value of the deptCode property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getDeptCode() {
- return deptCode;
- }
- /**
- * Sets the value of the deptCode property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setDeptCode(String value) {
- this.deptCode = value;
- }
- /**
- * Gets the value of the emergencyParameterValDTO property.
- *
- * <p>
- * This accessor method returns a reference to the live list,
- * not a snapshot. Therefore any modification you make to the
- * returned list will be present inside the JAXB object.
- * This is why there is not a <CODE>set</CODE> method for the emergencyParameterValDTO property.
- *
- * <p>
- * For example, to add a new item, do as follows:
- * <pre>
- * getEmergencyParameterValDTO().add(newItem);
- * </pre>
- *
- *
- * <p>
- * Objects of the following type(s) are allowed in the list
- * {@link EmergencyParameterValDTO }
- *
- *
- */
- public List<EmergencyParameterValDTO> getEmergencyParameterValDTO() {
- if (emergencyParameterValDTO == null) {
- emergencyParameterValDTO = new ArrayList<EmergencyParameterValDTO>();
- }
- return this.emergencyParameterValDTO;
- }
- }
|