package mcxtzhang.commonviewgroupadapter.viewgroup.flowswipe; /** * 介绍: * 作者:zhangxutong * 邮箱:mcxtzhang@163.com * 主页:http://blog.csdn.net/zxt0601 * 时间: 16/12/11. */ public class FlowBean { private String tag; public String getTag() { return tag; } public FlowBean setTag(String tag) { this.tag = tag; return this; } public FlowBean(String tag) { this.tag = tag; } }