fujunling
2023-07-05 43b449343715b398b9e1222b93d83f50f8e8e19e
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
package com.vci.ubcs.code.vo.webserviceModel.coderule;
 
import com.thoughtworks.xstream.annotations.XStreamAlias;
import com.thoughtworks.xstream.annotations.XStreamAsAttribute;
import com.thoughtworks.xstream.annotations.XStreamImplicit;
 
import java.util.List;
 
@XStreamAlias("codeRule")
public class CodeRuleVO {
 
    /**
     * 编码规则的编号
     */
    @XStreamAsAttribute
    private String id;
 
    /**
     * 规则编号
     */
    @XStreamAsAttribute
    private String num;
    /**
     * 编码规则的名称
     */
    @XStreamAsAttribute
    private String name;
 
    /**
     * 规则的描述
     */
    @XStreamAsAttribute
    private String description;
    /**
     * 编码的码段信息
     */
    @XStreamImplicit
    private List<CodeSectionVO> secVOList;
}