|
package com.mes.dasEquipmentConnectionDataService;
|
|
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>receiveDasEquipmentConnection complex typeµÄ Java Àà¡£
|
*
|
* <p>ÒÔÏÂģʽƬ¶ÎÖ¸¶¨°üº¬ÔÚ´ËÀàÖеÄÔ¤ÆÚÄÚÈÝ¡£
|
*
|
* <pre>
|
* <complexType name="receiveDasEquipmentConnection">
|
* <complexContent>
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
* <sequence>
|
* <element name="EquipmentConnection" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* </sequence>
|
* </restriction>
|
* </complexContent>
|
* </complexType>
|
* </pre>
|
*
|
*
|
*/
|
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlType(name = "receiveDasEquipmentConnection", propOrder = {
|
"equipmentConnection"
|
})
|
public class ReceiveDasEquipmentConnection {
|
|
@XmlElement(name = "EquipmentConnection")
|
protected String equipmentConnection;
|
|
/**
|
* »ñÈ¡equipmentConnectionÊôÐÔµÄÖµ¡£
|
*
|
* @return
|
* possible object is
|
* {@link String }
|
*
|
*/
|
public String getEquipmentConnection() {
|
return equipmentConnection;
|
}
|
|
/**
|
* ÉèÖÃequipmentConnectionÊôÐÔµÄÖµ¡£
|
*
|
* @param value
|
* allowed object is
|
* {@link String }
|
*
|
*/
|
public void setEquipmentConnection(String value) {
|
this.equipmentConnection = value;
|
}
|
|
}
|