// // 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.07.16 at 05:15:00 PM CST // package com.sinosoft.nwyj.integration.cxf.sendEmergencyAssign; 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="emergencyParameterId" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="columnName" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="columnCode" 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 = { "emergencyParameterId", "columnName", "columnCode", "columnvalue" }) //应急设备参数 public class EmergencyParameterValDTO implements Serializable{ @Override public String toString() { return "EmergencyParameterValDTO [emergencyParameterId=" + emergencyParameterId + ", columnName=" + columnName + ", columnCode=" + columnCode + ", columnvalue=" + columnvalue + "]"; } /** * */ private static final long serialVersionUID = 5267486515569858341L; @XmlElement(required = true) protected String emergencyParameterId; @XmlElement(required = true) protected String columnName; @XmlElement(required = true) protected String columnCode; @XmlElement(required = true) protected String columnvalue; /** * Gets the value of the emergencyParameterId property. * * @return * possible object is * {@link String } * */ public String getEmergencyParameterId() { return emergencyParameterId; } /** * Sets the value of the emergencyParameterId property. * * @param value * allowed object is * {@link String } * */ public void setEmergencyParameterId(String value) { this.emergencyParameterId = value; } /** * Gets the value of the columnName property. * * @return * possible object is * {@link String } * */ public String getColumnName() { return columnName; } /** * Sets the value of the columnName property. * * @param value * allowed object is * {@link String } * */ public void setColumnName(String value) { this.columnName = value; } /** * Gets the value of the columnCode property. * * @return * possible object is * {@link String } * */ public String getColumnCode() { return columnCode; } /** * Sets the value of the columnCode property. * * @param value * allowed object is * {@link String } * */ public void setColumnCode(String value) { this.columnCode = 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; } }