123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168 |
- //
- // 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.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;
- /**
- * <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="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>
- * </pre>
- *
- *
- */
- @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;
- }
- }
|