xiejun
2023-07-04 a6fe25ede6f964ede26671298816b7239c80130e
Source/UBCS/ubcs-service-api/ubcs-code-api/src/main/java/com/vci/ubcs/code/vo/webserviceModel/coderule/CodeRuleVO.java
@@ -1,5 +1,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 {
//   private String
   /**
    * 编码规则的编号
    */
   @XStreamAsAttribute
   private String id;
   /**
    * 规则编号
    */
   @XStreamAsAttribute
   private String num;
   /**
    * 编码规则的名称
    */
   @XStreamAsAttribute
   private String name;
   /**
    * 规则的描述
    */
   @XStreamAsAttribute
   private String description;
   /**
    * 编码的码段信息
    */
   @XStreamImplicit
   private List<CodeSectionVO> secVOList;
}