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