Blame view

src/main/java/com/huaheng/pc/tool/gen/domain/CxSelect.java 925 Bytes
mahuandong authored
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
package com.huaheng.pc.tool.gen.domain;

import java.io.Serializable;
import java.util.List;

/**
 * CxSelect树结构实体类
 */
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;
    }
}