xiejun
2023-07-05 b04005e136d7de620bb66660cc268f5750ca7b42
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
package com.vci.ubcs.code.vo.webserviceModel.coderule;
 
import com.thoughtworks.xstream.annotations.XStreamAlias;
import com.thoughtworks.xstream.annotations.XStreamAsAttribute;
 
import java.util.List;
 
@XStreamAlias("codeSection")
public class CodeSectionVO {
    /***
     * 主键
     */
    @XStreamAsAttribute
    private String id;
 
    /***
     * 主键
     */
    @XStreamAsAttribute
    private String num;
    /***
     * 码段名称
     */
    @XStreamAsAttribute
    private String name;
    /**
     * 描述
     */
    @XStreamAsAttribute
    private String description;
 
 
    /**
     * 码段类型
     */
    @XStreamAsAttribute
    private String secType;
 
    /**
     * 所属编码规则
     */
    @XStreamAsAttribute
    private String pkCodeRule;
 
 
    /**
     * 码段长度类型
     */
    @XStreamAsAttribute
    private String codeSecLengthType;
 
 
 
    /**
     * 码段长度
     */
    @XStreamAsAttribute
    private String codeSecLength;
 
 
    /**
     * 父分类码段主键
     */
    @XStreamAsAttribute
    private String parentClassifySecOid;
 
    /***
     * 码段码值
     */
    private List<CodeSectionValueVO> sectionValue;
    /**
     * 日期格式
     */
    @XStreamAsAttribute
    private String codeDateFormatStr;
 
    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 getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getDescription() {
        return description;
    }
 
    public void setDescription(String description) {
        this.description = description;
    }
 
    public String getSecType() {
        return secType;
    }
 
    public void setSecType(String secType) {
        this.secType = secType;
    }
 
    public String getPkCodeRule() {
        return pkCodeRule;
    }
 
    public void setPkCodeRule(String pkCodeRule) {
        this.pkCodeRule = pkCodeRule;
    }
 
    public String getCodeSecLengthType() {
        return codeSecLengthType;
    }
 
    public void setCodeSecLengthType(String codeSecLengthType) {
        this.codeSecLengthType = codeSecLengthType;
    }
 
    public String getCodeSecLength() {
        return codeSecLength;
    }
 
    public void setCodeSecLength(String codeSecLength) {
        this.codeSecLength = codeSecLength;
    }
 
    public String getCodeDateFormatStr() {
        return codeDateFormatStr;
    }
 
    public void setCodeDateFormatStr(String codeDateFormatStr) {
        this.codeDateFormatStr = codeDateFormatStr;
    }
 
    public String getParentClassifySecOid() {
        return parentClassifySecOid;
    }
 
    public void setParentClassifySecOid(String parentClassifySecOid) {
        this.parentClassifySecOid = parentClassifySecOid;
    }
 
    public List<CodeSectionValueVO> getSectionValue() {
        return sectionValue;
    }
 
    public void setSectionValue(List<CodeSectionValueVO> sectionValue) {
        this.sectionValue = sectionValue;
    }
 
    @Override
    public String toString() {
        return "CodeSectionVO{" +
            "id='" + id + '\'' +
            ", num='" + num + '\'' +
            ", name='" + name + '\'' +
            ", description='" + description + '\'' +
            ", secType='" + secType + '\'' +
            ", pkCodeRule='" + pkCodeRule + '\'' +
            ", codeSecLengthType='" + codeSecLengthType + '\'' +
            ", codeSecLength='" + codeSecLength + '\'' +
            ", codeDateFormatStr='" + codeDateFormatStr + '\'' +
            '}';
    }
}