// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 // See http://java.sun.com/xml/jaxb // 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 javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

Java class for EmergencyParameterValDTO complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="EmergencyParameterValDTO">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="columnvalue" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "EmergencyParameterValDTO", propOrder = { "id", "columnvalue" }) public class EmergencyParameterValDTO implements Serializable{ /** * */ private static final long serialVersionUID = -7968178469273758305L; @XmlElement(required = true) protected String id; @XmlElement(required = true) protected String columnvalue; /** * Gets the value of the id property. * * @return * possible object is * {@link String } * */ public String getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link String } * */ public void setId(String value) { this.id = value; } /** * Gets the value of the columnvalue property. * * @return * possible object is * {@link String } * */ public String getColumnvalue() { return columnvalue; } /** * Sets the value of the columnvalue property. * * @param value * allowed object is * {@link String } * */ public void setColumnvalue(String value) { this.columnvalue = value; } @Override public String toString() { return "EmergencyParameterValDTO [id=" + id + ", columnvalue=" + columnvalue + "]"; } }