xiejun
2023-05-31 544857b91547960c98b1fae20e676b1bb2de1fa7
Source/UBCS/ubcs-service-api/ubcs-webservice-api/src/main/java/com/vci/ubcs/code/webservice/vo/DockingPreApplyFormVO.java
@@ -36,7 +36,10 @@
    * 消息
    */
   private String msg;
   /***
    * 操作类型1:申请 2:更改
    */
   private String operationType;
   public String getCode() {
      return code;
   }
@@ -77,14 +80,32 @@
      this.msg = msg;
   }
   public String getGroupCode() {
      return groupCode;
   }
   public void setGroupCode(String groupCode) {
      this.groupCode = groupCode;
   }
   public String getOperationType() {
      return operationType;
   }
   public void setOperationType(String operationType) {
      this.operationType = operationType;
   }
   @Override
   public String toString() {
      return "DockingPreApplyCodeFormVO{" +
         "code='" + code + '\'' +
      return "DockingPreApplyFormVO{" +
         "groupCode='" + groupCode + '\'' +
         ", code='" + code + '\'' +
         ", content='" + content + '\'' +
         ", dataOid='" + dataOid + '\'' +
         ", dataBtmName='" + dataBtmName + '\'' +
         ", msg='" + msg + '\'' +
         ", operationType='" + operationType + '\'' +
         '}';
   }
}