package com.ard.common.core.web.domain; import java.io.Serializable; import java.util.List; /** * Treeselect树结构实体类 * * @author XiaJiJian */ public class TreeSelectWellJson implements Serializable { private static final long serialVersionUID = 1L; List wellList; int count0; int count1; int count2; public List getWellList() { return wellList; } public void setWellList(List wellList) { this.wellList = wellList; } public int getCount0() { return count0; } public void setCount0(int count0) { this.count0 = count0; } public int getCount1() { return count1; } public void setCount1(int count1) { this.count1 = count1; } public int getCount2() { return count2; } public void setCount2(int count2) { this.count2 = count2; } }