All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.ipokerface.weixin.xml.ListWrapper Maven / Gradle / Ivy

There is a newer version: 1.5.0
Show newest version
package cn.ipokerface.weixin.xml;

import javax.xml.bind.annotation.XmlAnyElement;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;

/**
 * Created by       PokerFace
 * Create Date      2019-12-28.
 * Email:           [email protected]
 * Version          1.0.0
 * 

* Description: */ public class ListWrapper implements Serializable { private static final long serialVersionUID = 7550802632983954221L; private List items; public ListWrapper() { items = new ArrayList(); } @XmlAnyElement(lax = true) public List getItems() { return items; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy