From db5ed49b5473b63bf08c4e0c7ffa752ed35a3a95 Mon Sep 17 00:00:00 2001 From: xiejun <xj@2023> Date: 星期三, 30 八月 2023 18:46:02 +0800 Subject: [PATCH] 关于接口配置管理模块更改/统一接口涉及集团码申请功能需求bug修复 --- Source/UBCS/ubcs-service-api/ubcs-code-api/src/main/java/com/vci/ubcs/code/entity/DockingSystemConfig.java | 22 +++++++++++++--------- 1 files changed, 13 insertions(+), 9 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 1d2a57c..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; /** * 鐩爣绯荤粺涓婚敭鏄剧ず鏂囨湰 @@ -348,12 +352,12 @@ ", returnType='" + returnType + '\'' + ", returnTypeText='" + returnTypeText + '\'' + ", sourceSystemOid='" + sourceSystemOid + '\'' + - ", sourceSysName='" + sourceSysName + '\'' + - ", sourceSysId='" + sourceSysId + '\'' + + ", sourceSystemName='" + sourceSystemName + '\'' + + ", sourceSystemId='" + sourceSystemId + '\'' + ", sourceSystemOidName='" + sourceSystemOidName + '\'' + ", targetSystemOid='" + targetSystemOid + '\'' + - ", targetSysName='" + targetSysName + '\'' + - ", targetSysId='" + targetSysId + '\'' + + ", targetSystemName='" + targetSystemName + '\'' + + ", targetSystemId='" + targetSystemId + '\'' + ", targetSystemOidName='" + targetSystemOidName + '\'' + ", classPath='" + classPath + '\'' + ", dataFlowType='" + dataFlowType + '\'' + @@ -368,7 +372,7 @@ ", pushTypeText='" + pushTypeText + '\'' + ", classifyId='" + classifyId + '\'' + ", classifyName='" + classifyName + '\'' + - ", isGroupCodeFlag=" + isGroupCodeFlag + + ", isGroupCodeFlag='" + isGroupCodeFlag + '\'' + '}'; } } -- Gitblit v1.9.3