liusuyi
2026-05-12 9f327c33730ba10cb2d89aff99b727502232e968
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
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<TreeDeptWell> wellList;
 
    int count0;
 
    int count1;
 
    int count2;
 
    public List<TreeDeptWell> getWellList() {
        return wellList;
    }
 
    public void setWellList(List<TreeDeptWell> 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;
    }
}