From 5ca05f604876cacca45e3bdfa9f54a997653da90 Mon Sep 17 00:00:00 2001
From: ludc
Date: 星期三, 24 一月 2024 16:25:45 +0800
Subject: [PATCH] bug修改:290相似项查询sql拼接报错修改,291码值回收报错下标越界
---
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