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 | 87 ++++++++++++++++++++++++++++++++++++++++--- 1 files changed, 81 insertions(+), 6 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 c18ddf3..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 @@ -101,6 +101,12 @@ @ApiModelProperty(value = "鎺ュ彛绫诲瀷鏄剧ず鏂囨湰") @TableField(exist = false) private String interfaceTypeText; + + @Override + public String getFirstR() { + return super.getFirstR(); + } + /** * 鍙傛暟绫诲瀷 */ @@ -169,6 +175,12 @@ @ApiModelProperty(value = "杩斿洖鍊肩被鍨�") private String returnType; + /** + * 鍐呭绫诲瀷 + */ + @ApiModelProperty(value = "鍐呭绫诲瀷") + private String contentType; + /** * 杩斿洖鍊肩被鍨嬫樉绀烘枃鏈� @@ -186,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; /** * 鏉ユ簮绯荤粺涓婚敭鏄剧ず鏂囨湰 @@ -211,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; /** * 鐩爣绯荤粺涓婚敭鏄剧ず鏂囨湰 @@ -284,9 +300,9 @@ /*** - * 鎺ㄩ�佺被鍨� 1:鏁版嵁鎺ㄩ��/2鍒嗙被鎺ㄩ�侊紝榛樿鏁版嵁鎺ㄩ�� + * 鎺ㄩ�佺被鍨� 1:鏁版嵁鎺ㄩ��,2鍒嗙被鎺ㄩ�侊紝榛樿鏁版嵁鎺ㄩ��,3:缂栫爜鐢宠,4:缂栫爜鏇存敼锛堟洿鏀广�佺姸鎬侊紝鍥炴敹锛�,5:鍒嗙被鏌ヨ,6:鍚鍒欎俊鎭殑鍒嗙被鏌ヨ,7:鏁版嵁鏌ヨ */ - @ApiModelProperty(value = "鎺ㄩ�佺被鍨� 1:鏁版嵁鎺ㄩ��/2鍒嗙被鎺ㄩ�侊紝榛樿鏁版嵁鎺ㄩ��") + @ApiModelProperty(value = "鎺ㄩ�佺被鍨� 1:鏁版嵁鎺ㄩ��,2鍒嗙被鎺ㄩ��,3:缂栫爜鐢宠,4:缂栫爜鏇存敼(鐘舵�侊紝鍥炴敹),5:鍒嗙被鏌ヨ,6:鍚鍒欎俊鎭殑鍒嗙被鏌ヨ,7:鏁版嵁鏌ヨ") private String pushType; /*** * 鎺ㄩ�佺被鍨嬫樉绀哄�� @@ -306,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 + '\'' + + '}'; + } } -- Gitblit v1.9.3