ludc
2024-02-29 8ef9e366be48dc5e8e52617ea8ed48b37a0e1f74
Source/UBCS/ubcs-service-api/ubcs-code-api/src/main/java/com/vci/ubcs/code/entity/DockingSystemConfig.java
@@ -175,6 +175,12 @@
   @ApiModelProperty(value = "返回值类型")
   private String returnType;
   /**
    * 内容类型
    */
   @ApiModelProperty(value = "内容类型")
   private String contentType;
   /**
    * 返回值类型显示文本
@@ -192,13 +198,15 @@
    * 来源系统名称
    */
   @ApiModelProperty(value = "来源系统名称")
   private String sourceSysName;
   @TableField(value = "SOURCESYSNAME")
   private String sourceSystemName;
   /**
    * 来源系统标识
    */
   @ApiModelProperty(value = "来源系统标识")
   private String sourceSysId;
   @TableField(value = "SOURCESYSID")
   private String sourceSystemId;
   /**
    * 来源系统主键显示文本
@@ -217,13 +225,15 @@
    * 目标系统名称
    */
   @ApiModelProperty(value = "目标系统名称")
   private String targetSysName;
   @TableField(value = "TARGETSYSNAME")
   private String targetSystemName;
   /**
    * 目标系统标识
    */
   @ApiModelProperty(value = "目标系统标识")
   private String targetSysId;
   @TableField(value = "TARGETSYSID")
   private String targetSystemId;
   /**
    * 目标系统主键显示文本
@@ -312,4 +322,63 @@
    */
   @ApiModelProperty(value = "分类名称")
   private String classifyName;
   /***
    * 集团码是否参与申请/更新/发送
    */
   /**
    * 分类名称
    */
   @ApiModelProperty(value = "集团码是否参与申请/更新/发送")
   private String isGroupCodeFlag;
   @Override
   public String toString() {
      return "DockingSystemConfig{" +
         "authorityOid='" + authorityOid + '\'' +
         ", authorityOidName='" + authorityOidName + '\'' +
         ", authorityType='" + authorityType + '\'' +
         ", authorityTypeText='" + authorityTypeText + '\'' +
         ", userAccount='" + userAccount + '\'' +
         ", userCode='" + userCode + '\'' +
         ", token='" + token + '\'' +
         ", interfaceFunction='" + interfaceFunction + '\'' +
         ", interfaceType='" + interfaceType + '\'' +
         ", interfaceTypeText='" + interfaceTypeText + '\'' +
         ", paramType='" + paramType + '\'' +
         ", paramTypeText='" + paramTypeText + '\'' +
         ", requestMethod='" + requestMethod + '\'' +
         ", requestMethodText='" + requestMethodText + '\'' +
         ", classifyOid='" + classifyOid + '\'' +
         ", usedFlag='" + usedFlag + '\'' +
         ", sysBaseOid='" + sysBaseOid + '\'' +
         ", sysBaseId='" + sysBaseId + '\'' +
         ", sysBaseName='" + sysBaseName + '\'' +
         ", requestUrl='" + requestUrl + '\'' +
         ", returnType='" + returnType + '\'' +
         ", returnTypeText='" + returnTypeText + '\'' +
         ", sourceSystemOid='" + sourceSystemOid + '\'' +
         ", sourceSystemName='" + sourceSystemName + '\'' +
         ", sourceSystemId='" + sourceSystemId + '\'' +
         ", sourceSystemOidName='" + sourceSystemOidName + '\'' +
         ", targetSystemOid='" + targetSystemOid + '\'' +
         ", targetSystemName='" + targetSystemName + '\'' +
         ", targetSystemId='" + targetSystemId + '\'' +
         ", targetSystemOidName='" + targetSystemOidName + '\'' +
         ", classPath='" + classPath + '\'' +
         ", dataFlowType='" + dataFlowType + '\'' +
         ", dataFlowTypeText='" + dataFlowTypeText + '\'' +
         ", btmTypeId='" + btmTypeId + '\'' +
         ", btmTypeName='" + btmTypeName + '\'' +
         ", namespace='" + namespace + '\'' +
         ", soapAction='" + soapAction + '\'' +
         ", cxfAxis='" + cxfAxis + '\'' +
         ", targetName='" + targetName + '\'' +
         ", pushType='" + pushType + '\'' +
         ", pushTypeText='" + pushTypeText + '\'' +
         ", classifyId='" + classifyId + '\'' +
         ", classifyName='" + classifyName + '\'' +
         ", isGroupCodeFlag='" + isGroupCodeFlag + '\'' +
         '}';
   }
}