From 8ef9e366be48dc5e8e52617ea8ed48b37a0e1f74 Mon Sep 17 00:00:00 2001 From: ludc Date: 星期四, 29 二月 2024 14:33:58 +0800 Subject: [PATCH] 在线部署功能上传,标准申请接口bug修改 --- Source/UBCS/ubcs-service-api/ubcs-code-api/src/main/java/com/vci/ubcs/code/entity/DockingSystemConfig.java | 28 +++++++++++++++++++--------- 1 files changed, 19 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..bade0bf 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 @@ -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; /** * 鐩爣绯荤粺涓婚敭鏄剧ず鏂囨湰 @@ -348,12 +358,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 +378,7 @@ ", pushTypeText='" + pushTypeText + '\'' + ", classifyId='" + classifyId + '\'' + ", classifyName='" + classifyName + '\'' + - ", isGroupCodeFlag=" + isGroupCodeFlag + + ", isGroupCodeFlag='" + isGroupCodeFlag + '\'' + '}'; } } -- Gitblit v1.9.3