From af94df67fe0229fc8bde81204da4eb0745f10d38 Mon Sep 17 00:00:00 2001
From: wangting <675591594@qq.com>
Date: 星期一, 25 九月 2023 16:38:50 +0800
Subject: [PATCH] 修改参照联动
---
Source/UBCS/ubcs-service-api/ubcs-code-api/src/main/java/com/vci/ubcs/code/entity/DockingSystemConfig.java | 77 ++++++++++++++++++++++++++++++++++++--
1 files changed, 73 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 55454d4..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
@@ -101,6 +101,12 @@
@ApiModelProperty(value = "鎺ュ彛绫诲瀷鏄剧ず鏂囨湰")
@TableField(exist = false)
private String interfaceTypeText;
+
+ @Override
+ public String getFirstR() {
+ return super.getFirstR();
+ }
+
/**
* 鍙傛暟绫诲瀷
*/
@@ -186,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;
/**
* 鏉ユ簮绯荤粺涓婚敭鏄剧ず鏂囨湰
@@ -211,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;
/**
* 鐩爣绯荤粺涓婚敭鏄剧ず鏂囨湰
@@ -306,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