xiejun
2023-07-06 353bc1b8b4650f144a65b9125457253051e68492
Source/UBCS/ubcs-service-api/ubcs-code-api/src/main/java/com/vci/ubcs/code/vo/webserviceModel/coderule/CodeSectionValueVO.java
@@ -8,11 +8,13 @@
   public CodeSectionValueVO() {
   }
   public CodeSectionValueVO(String id, String num, String value,String name ,String description) {
   public CodeSectionValueVO(String id, String num, String value,String name ,String pid,String description) {
      this.id = id;
      this.num = num;
      this.value = value;
      this.description = description;
      this.name=name;
      this.pid=pid;
   }
   /***
@@ -21,11 +23,13 @@
   @XStreamAsAttribute
   private String id;
   /***
    * 码值编号
    * 码值序号
    */
   @XStreamAsAttribute
   private String num;
   /***
    * 码值显示值
    */
   @XStreamAsAttribute
   private String name;
@@ -34,7 +38,11 @@
    */
   @XStreamAsAttribute
   private String value;
   /***
    * 父码段oid
    */
   @XStreamAsAttribute
   private String pid;
   /**
    * 描述
    */
@@ -81,6 +89,14 @@
      this.name = name;
   }
   public String getPid() {
      return pid;
   }
   public void setPid(String pid) {
      this.pid = pid;
   }
   @Override
   public String toString() {
      return "CodeSectionValueVO{" +
@@ -88,6 +104,7 @@
         ", num='" + num + '\'' +
         ", name='" + name + '\'' +
         ", value='" + value + '\'' +
         ", pid='" + pid + '\'' +
         ", description='" + description + '\'' +
         '}';
   }