package com.chinaztt.mes.common.wechat.servicemessagecustom; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; import java.util.ArrayList; import java.util.List; /** *

anyType2anyTypeMap complex type的 Java 类。 * *

以下模式片段指定包含在此类中的预期内容。 * *

 * <complexType name="anyType2anyTypeMap">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="entry" maxOccurs="unbounded" minOccurs="0">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence>
 *                   <element name="key" type="{http://www.w3.org/2001/XMLSchema}anyType" minOccurs="0"/>
 *                   <element name="value" type="{http://www.w3.org/2001/XMLSchema}anyType" minOccurs="0"/>
 *                 </sequence>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "anyType2anyTypeMap", propOrder = { "entry" }) public class AnyType2AnyTypeMap { protected List entry; /** * Gets the value of the entry property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the entry property. * *

* For example, to add a new item, do as follows: *

     *    getEntry().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Entry } * * */ public List getEntry() { if (entry == null) { entry = new ArrayList(); } return this.entry; } /** *

anonymous complex type的 Java 类。 * *

以下模式片段指定包含在此类中的预期内容。 * *

     * <complexType>
     *   <complexContent>
     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *       <sequence>
     *         <element name="key" type="{http://www.w3.org/2001/XMLSchema}anyType" minOccurs="0"/>
     *         <element name="value" type="{http://www.w3.org/2001/XMLSchema}anyType" minOccurs="0"/>
     *       </sequence>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "key", "value" }) public static class Entry { protected Object key; protected Object value; /** * 获取key属性的值。 * * @return * possible object is * {@link Object } * */ public Object getKey() { return key; } /** * 设置key属性的值。 * * @param value * allowed object is * {@link Object } * */ public void setKey(Object value) { this.key = value; } /** * 获取value属性的值。 * * @return * possible object is * {@link Object } * */ public Object getValue() { return value; } /** * 设置value属性的值。 * * @param value * allowed object is * {@link Object } * */ public void setValue(Object value) { this.value = value; } } }