wang1
2023-07-05 1157e8e97e24ec7938deea2e3345a502644fc256
Source/UBCS/ubcs-service-api/ubcs-code-api/src/main/java/com/vci/ubcs/code/vo/webserviceModel/coderule/CodeSectionVO.java
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,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 + '\'' +
         '}';
   }
}