From f1337986b28a2a0b26f35eabc4edb0ddd2d551c6 Mon Sep 17 00:00:00 2001 From: 田源 <lastanimals@163.com> Date: 星期二, 07 十一月 2023 17:25:11 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- Source/UBCS/ubcs-service-api/ubcs-code-api/src/main/java/com/vci/ubcs/code/entity/DockingSystemConfig.java | 71 +++++++++++++++++++++++++++++++++-- 1 files changed, 67 insertions(+), 4 deletions(-) diff --git a/Source/UBCS/ubcs-service-api/ubcs-code-api/src/main/java/com/vci/ubcs/code/entity/DockingSystemConfig.java b/Source/UBCS/ubcs-service-api/ubcs-code-api/src/main/java/com/vci/ubcs/code/entity/DockingSystemConfig.java index b775a19..be995f2 100644 --- a/Source/UBCS/ubcs-service-api/ubcs-code-api/src/main/java/com/vci/ubcs/code/entity/DockingSystemConfig.java +++ b/Source/UBCS/ubcs-service-api/ubcs-code-api/src/main/java/com/vci/ubcs/code/entity/DockingSystemConfig.java @@ -192,13 +192,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 +219,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 +316,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 + '\'' + + '}'; + } } -- Gitblit v1.9.3