Pu Zhibing
2025-02-19 8f45afced0c6a4085560c62dbd58e6ef0f4cecf4
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
package com.ruoyi.common.core.domain;
 
import java.io.Serializable;
import java.util.List;
 
/**
 * CxSelect树结构实体类
 * 
 * @author ruoyi
 */
public class CxSelect implements Serializable
{
    private static final long serialVersionUID = 1L;
 
    /**
     * 数据值字段名称
     */
    private String v;
 
    /**
     * 数据标题字段名称
     */
    private String n;
 
    /**
     * 子集数据字段名称
     */
    private List<CxSelect> s;
 
    public CxSelect()
    {
    }
 
    public CxSelect(String v, String n)
    {
        this.v = v;
        this.n = n;
    }
 
    public List<CxSelect> getS()
    {
        return s;
    }
 
    public void setN(String n)
    {
        this.n = n;
    }
 
    public String getN()
    {
        return n;
    }
 
    public void setS(List<CxSelect> s)
    {
        this.s = s;
    }
 
    public String getV()
    {
        return v;
    }
 
    public void setV(String v)
    {
        this.v = v;
    }
}