xiejun
2023-09-11 fc4d1e17b9ed87e34835316d0e8b89feebe32be6
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
package com.vci.ubcs.code.vo.webserviceModel.coderule;
 
import com.thoughtworks.xstream.annotations.XStreamAlias;
import com.thoughtworks.xstream.annotations.XStreamAsAttribute;
 
@XStreamAlias("sectionValue")
public class CodeSectionValueVO {
    public CodeSectionValueVO() {
    }
 
    public CodeSectionValueVO(String id, String num, String value,String name ,String pid,String description) {
        this.id = id;
        this.num = num;
        this.value = value;
        this.description = description;
        this.name=name;
        this.pid=pid;
    }
 
    /***
     * 码值主键
     */
    @XStreamAsAttribute
    private String id;
    /***
     * 码值序号
     */
    @XStreamAsAttribute
    private String num;
    /***
     * 码值显示值
     */
    @XStreamAsAttribute
    private String name;
 
    /***
     * 码段值
     */
    @XStreamAsAttribute
    private String value;
    /***
     * 父码段oid
     */
    @XStreamAsAttribute
    private String pid;
    /**
     * 描述
     */
    @XStreamAsAttribute
    private String description;
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public String getNum() {
        return num;
    }
 
    public void setNum(String num) {
        this.num = num;
    }
 
    public String getValue() {
        return value;
    }
 
    public void setValue(String value) {
        this.value = value;
    }
 
    public String getDescription() {
        return description;
    }
 
    public void setDescription(String description) {
        this.description = description;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getPid() {
        return pid;
    }
 
    public void setPid(String pid) {
        this.pid = pid;
    }
 
    @Override
    public String toString() {
        return "CodeSectionValueVO{" +
            "id='" + id + '\'' +
            ", num='" + num + '\'' +
            ", name='" + name + '\'' +
            ", value='" + value + '\'' +
            ", pid='" + pid + '\'' +
            ", description='" + description + '\'' +
            '}';
    }
}