Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
csbr-daop
/
ms-data-circulation-portal-service
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
2b85dbc2
authored
2025-10-14 10:58:00 +0800
by
xu
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
可信空间连接器入住接口
1 parent
63a455fd
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletions
src/main/java/com/csbr/qingcloud/portal/domain/vo/TdsConnectorIdentityRQVO.java
src/main/java/com/csbr/qingcloud/portal/service/impl/TdsConnectorIdentityServiceImpl.java
src/main/java/com/csbr/qingcloud/portal/domain/vo/TdsConnectorIdentityRQVO.java
View file @
2b85dbc
...
...
@@ -103,7 +103,6 @@ public class TdsConnectorIdentityRQVO extends FlowRQBaseVO {
* 原始数据Guid
*/
@Schema
(
description
=
"原始数据Guid"
)
@NotBlank
(
message
=
"原始数据Guid为空。"
)
private
String
sourceBizGuid
;
...
...
src/main/java/com/csbr/qingcloud/portal/service/impl/TdsConnectorIdentityServiceImpl.java
View file @
2b85dbc
...
...
@@ -473,6 +473,9 @@ public class TdsConnectorIdentityServiceImpl extends FlowAbstractImpl implements
if
(
ObjectUtils
.
isEmpty
(
rqVO
)){
throw
new
CsbrSystemException
(
SystemError
.
DATA_INPUT_ERROR
,
String
.
format
(
"%s参数为空。"
,
FUNCTION_NAME
));
}
if
(
StringUtils
.
isBlank
(
rqVO
.
getSourceBizGuid
())){
throw
new
CsbrSystemException
(
SystemError
.
DATA_INPUT_ERROR
,
String
.
format
(
"%s参数为空。"
,
"原始数据Guid"
));
}
MfTdsConnectorIdentity
tdsConnectorIdentity
=
mfTdsConnectorIdentityService
.
getById
(
rqVO
.
getSourceBizGuid
());
if
(
ObjectUtils
.
isEmpty
(
tdsConnectorIdentity
)){
throw
new
CsbrSystemException
(
SystemError
.
DATA_NOT_EXISTS
,
"变更数据不存在。"
);
...
...
Write
Preview
Styling with
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment