package com.mes.dasTobaccoCabinetOutputService; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; /** *

ReceiveYSbinOutputResult complex typeµÄ Java Àà¡£ * *

ÒÔÏÂģʽƬ¶ÎÖ¸¶¨°üº¬ÔÚ´ËÀàÖеÄÔ¤ÆÚÄÚÈÝ¡£ * *

 * <complexType name="ReceiveYSbinOutputResult">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="tobaccocabinetoutput" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ReceiveYSbinOutputResult", propOrder = { "tobaccocabinetoutput" }) public class ReceiveYSbinOutputResult { protected String tobaccocabinetoutput; /** * »ñÈ¡tobaccocabinetoutputÊôÐÔµÄÖµ¡£ * * @return * possible object is * {@link String } * */ public String getTobaccocabinetoutput() { return tobaccocabinetoutput; } /** * ÉèÖÃtobaccocabinetoutputÊôÐÔµÄÖµ¡£ * * @param value * allowed object is * {@link String } * */ public void setTobaccocabinetoutput(String value) { this.tobaccocabinetoutput = value; } }