xiejun
2023-07-06 353bc1b8b4650f144a65b9125457253051e68492
Source/UBCS/ubcs-service-api/ubcs-code-api/src/main/java/com/vci/ubcs/code/vo/webserviceModel/coderule/CodeSectionVO.java
@@ -12,9 +12,13 @@
    */
   @XStreamAsAttribute
   private String id;
   /***
    * 主键
    * 规则码段编号
    */
   @XStreamAsAttribute
   private String sectionCode;
   /***
    * 序号
    */
   @XStreamAsAttribute
   private String num;
@@ -35,6 +39,11 @@
    */
   @XStreamAsAttribute
   private String secType;
   /***
    * 码段类型显示值
    */
   @XStreamAsAttribute
   private String secTypeText;
   /**
    * 所属编码规则
@@ -162,17 +171,37 @@
      this.sectionValue = sectionValue;
   }
   public String getSectionCode() {
      return sectionCode;
   }
   public void setSectionCode(String sectionCode) {
      this.sectionCode = sectionCode;
   }
   public String getSecTypeText() {
      return secTypeText;
   }
   public void setSecTypeText(String secTypeText) {
      this.secTypeText = secTypeText;
   }
   @Override
   public String toString() {
      return "CodeSectionVO{" +
         "id='" + id + '\'' +
         ", sectionCode='" + sectionCode + '\'' +
         ", num='" + num + '\'' +
         ", name='" + name + '\'' +
         ", description='" + description + '\'' +
         ", secType='" + secType + '\'' +
         ", secTypeText='" + secTypeText + '\'' +
         ", pkCodeRule='" + pkCodeRule + '\'' +
         ", codeSecLengthType='" + codeSecLengthType + '\'' +
         ", codeSecLength='" + codeSecLength + '\'' +
         ", parentClassifySecOid='" + parentClassifySecOid + '\'' +
         ", sectionValue=" + sectionValue +
         ", codeDateFormatStr='" + codeDateFormatStr + '\'' +
         '}';
   }