| | |
| | | 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 { |
| | | // private String |
| | | |
| | | /** |
| | | * 编码规则的编号 |
| | | */ |
| | | @XStreamAsAttribute |
| | | private String id; |
| | | |
| | | /** |
| | | * 规则编号 |
| | | */ |
| | | @XStreamAsAttribute |
| | | private String num; |
| | | /** |
| | | * 编码规则的名称 |
| | | */ |
| | | @XStreamAsAttribute |
| | | private String name; |
| | | |
| | | /** |
| | | * 规则的描述 |
| | | */ |
| | | @XStreamAsAttribute |
| | | private String description; |
| | | /** |
| | | * 编码的码段信息 |
| | | */ |
| | | @XStreamImplicit |
| | | private List<CodeSectionVO> secVOList; |
| | | } |