123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- //
- // 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 javax.xml.bind.annotation.XmlAccessType;
- import javax.xml.bind.annotation.XmlAccessorType;
- import javax.xml.bind.annotation.XmlElement;
- import javax.xml.bind.annotation.XmlType;
- /**
- * <p>Java class for EmergencyParameterValDTO complex type.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- *
- * <pre>
- * <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>
- * </pre>
- *
- *
- */
- @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 + "]";
- }
- }
|